:root {
  --ink: #10283a;
  --ink-soft: #4b6170;
  --navy: #0d354d;
  --blue: #165e7d;
  --teal: #16867f;
  --mint: #d8efea;
  --paper: #f7f8f5;
  --white: #ffffff;
  --line: #d9e0df;
  --line-dark: #b9c6c7;
  --warm: #ece9df;
  --shell: min(1180px, calc(100vw - 64px));
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Iowan Old Style, Palatino Linotype, Book Antiqua, Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
html[lang="ko"] body {
  font-family: "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", var(--sans);
  word-break: keep-all;
}
html[lang="ko"] h1,
html[lang="ko"] h2,
html[lang="ko"] h3,
html[lang="ko"] .hero-lead,
html[lang="ko"] .large-copy,
html[lang="ko"] .team-intro {
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: balance;
}
html[lang="ko"] .section-heading h2,
html[lang="ko"] .product-intro h2,
html[lang="ko"] .information-section h2 {
  font-size: clamp(38px, 3.4vw, 48px);
  line-height: 1.24;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  background: rgba(247, 248, 245, .94);
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(16, 40, 58, .05);
  backdrop-filter: blur(14px);
}
.header-inner { height: 82px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-size: 18px; font-weight: 760; letter-spacing: -.02em; }
.brand-mark { position: relative; display: grid; width: 28px; height: 28px; grid-template-columns: repeat(2, 1fr); gap: 3px; transform: rotate(45deg); }
.brand-mark i { display: block; background: var(--blue); border-radius: 1px; }
.brand-mark i:nth-child(1) { grid-row: span 2; background: var(--navy); }
.brand-mark i:nth-child(3) { background: var(--teal); }
.site-navigation { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 650; }
.site-navigation > a { position: relative; }
.site-navigation > a:not(.nav-product)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}
.site-navigation > a:hover::after, .site-navigation > a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-product { padding: 10px 17px; border: 1px solid var(--navy); transition: color .2s ease, background .2s ease; }
.nav-product:hover, .nav-product:focus-visible { color: white; background: var(--navy); }
.language-link { color: var(--blue); font-weight: 740; }
.menu-button { display: none; width: 44px; height: 44px; padding: 0; border: 0; background: transparent; }
.menu-button > span:not(.sr-only) { display: block; width: 22px; height: 1px; margin: 6px auto; background: var(--ink); transition: transform .2s ease; }

.hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  padding: 154px 0 100px;
  background:
    radial-gradient(circle at 84% 18%, rgba(216, 239, 234, .8), transparent 30%),
    linear-gradient(110deg, #fbfbf8 0%, var(--paper) 58%, #eff5f2 100%);
  border-bottom: 1px solid var(--line);
}
.hero::before {
  position: absolute;
  top: 82px;
  bottom: 0;
  left: calc(50% + 20px);
  width: 1px;
  content: "";
  background: linear-gradient(var(--line), transparent 82%);
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(440px, .88fr); gap: 78px; align-items: center; }
.eyebrow, .section-number {
  margin: 0 0 26px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow > span { width: 28px; height: 1px; background: var(--teal); }
.hero h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(54px, 5vw, 76px);
  font-weight: 620;
  letter-spacing: -.055em;
  line-height: 1.02;
}
.hero h1 em { color: var(--blue); font-family: var(--serif); font-weight: 500; }
.hero-lead { max-width: 620px; margin: 32px 0 0; color: var(--ink-soft); font-size: 18px; line-height: 1.72; }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 38px; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 730;
  transition: transform .2s ease, color .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { color: white; background: var(--navy); }
.button-primary:hover, .button-primary:focus-visible { background: var(--blue); }
.button-secondary { border-color: var(--navy); color: var(--navy); background: transparent; }
.button-secondary:hover, .button-secondary:focus-visible { color: white; background: var(--navy); }
.button-disabled { border-color: var(--line-dark); color: #71828b; cursor: not-allowed; }
.button-disabled:hover { color: #71828b; background: transparent; transform: none; }
.text-link { display: inline-flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--line-dark); font-size: 14px; font-weight: 730; }
.text-link:hover, .text-link:focus-visible { border-color: var(--navy); }
.site-roles { display: flex; align-items: center; gap: 22px; margin-top: 58px; }
.site-roles div { display: grid; gap: 2px; }
.site-roles span { color: #748791; font-size: 10px; font-weight: 740; letter-spacing: .12em; text-transform: uppercase; }
.site-roles strong { font-size: 13px; font-weight: 680; }
.site-roles > i { width: 42px; height: 1px; background: var(--line-dark); }

.workflow-visual {
  position: relative;
  min-height: 510px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(22, 94, 125, .22);
  background: rgba(255, 255, 255, .8);
  box-shadow: 0 30px 80px rgba(15, 52, 75, .1);
}
.visual-grid {
  position: absolute;
  inset: 0;
  opacity: .35;
  background-image: linear-gradient(rgba(18, 73, 98, .09) 1px, transparent 1px), linear-gradient(90deg, rgba(18, 73, 98, .09) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom right, black, transparent 76%);
}
.visual-label { position: relative; display: flex; justify-content: space-between; margin: 0 0 42px; color: #6f818b; font-size: 10px; font-weight: 760; letter-spacing: .12em; text-transform: uppercase; }
.inquiry-panel, .order-panel { position: relative; z-index: 1; border: 1px solid var(--line); background: white; }
.inquiry-panel { width: 72%; padding: 18px; }
.panel-kicker { margin: 0 0 14px; color: #71848e; font-size: 10px; font-weight: 760; letter-spacing: .1em; text-transform: uppercase; }
.message { width: fit-content; max-width: 88%; margin: 8px 0; padding: 9px 12px; font-size: 11px; line-height: 1.45; }
.message-customer { margin-left: auto; color: white; background: var(--blue); }
.message-ai { background: #edf2f1; }
.typing { display: flex; gap: 3px; width: fit-content; margin-top: 8px; padding: 9px 12px; background: #edf2f1; }
.typing i { width: 3px; height: 3px; border-radius: 50%; background: #788b94; }
.flow-line { position: relative; z-index: 2; width: 33%; height: 60px; margin: -5px auto -8px; border-right: 1px solid var(--teal); border-bottom: 1px solid var(--teal); }
.flow-line::after { position: absolute; right: -4px; bottom: -4px; width: 7px; height: 7px; content: ""; background: var(--teal); transform: rotate(45deg); }
.flow-line b { position: absolute; right: -14px; top: 16px; padding: 1px 5px; color: var(--teal); background: white; font-size: 9px; letter-spacing: .08em; }
.order-panel { width: 76%; margin-left: auto; padding: 18px; border-top: 3px solid var(--teal); box-shadow: 0 18px 36px rgba(16, 40, 58, .08); }
.order-heading { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.order-heading p { margin: 0; font-size: 12px; font-weight: 760; }
.order-heading span { padding: 3px 7px; color: #21695f; background: var(--mint); font-size: 8px; font-weight: 720; text-transform: uppercase; }
.order-panel dl { margin: 0; }
.order-panel dl > div { display: grid; grid-template-columns: 72px 1fr; padding: 6px 0; border-top: 1px solid #e9eeee; font-size: 10px; }
.order-panel dt { color: #758892; }
.order-panel dd { margin: 0; font-weight: 680; }
.visual-caption { position: relative; display: flex; align-items: center; gap: 8px; margin: 30px 0 0; color: #778992; font-size: 9px; font-weight: 720; letter-spacing: .08em; text-transform: uppercase; }
.visual-caption i { flex: 1; max-width: 24px; height: 1px; background: var(--line-dark); }
.visual-caption strong { color: var(--teal); }

.section { padding: 128px 0; }
.company-section { background: white; }
.company-grid, .information-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 110px; }
.section-heading h2, .product-intro h2, .information-section h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 590;
  letter-spacing: -.045em;
  line-height: 1.12;
}
.large-copy { margin: 0 0 52px; font-size: 25px; font-weight: 480; letter-spacing: -.02em; line-height: 1.52; }
.copy-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; color: var(--ink-soft); }
.copy-columns p { margin: 0; }
.company-status { display: grid; grid-template-columns: 140px 1fr; gap: 9px 22px; margin-top: 54px; padding: 26px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: 13px; }
.company-status span { color: #748791; }

.product-section { background: #edf2f0; }
.product-intro { display: grid; grid-template-columns: 1.35fr .65fr; gap: 100px; align-items: end; }
.product-intro > p { margin: 0 0 4px; color: var(--ink-soft); }
.process-list { display: grid; grid-template-columns: repeat(3, 1fr); margin: 80px 0 0; padding: 0; border-top: 1px solid var(--line-dark); list-style: none; }
.process-list li { position: relative; min-height: 330px; padding: 28px 34px 30px 0; border-right: 1px solid var(--line-dark); }
.process-list li:not(:first-child) { padding-left: 34px; }
.process-list li:last-child { border-right: 0; }
.process-index { color: #71868f; font-size: 11px; font-weight: 760; }
.process-symbol { position: relative; width: 64px; height: 64px; margin: 47px 0 40px; }
.process-chat i { position: absolute; width: 45px; height: 31px; border: 1px solid var(--blue); }
.process-chat i::after { position: absolute; bottom: -6px; width: 9px; height: 9px; content: ""; border-bottom: 1px solid var(--blue); border-left: 1px solid var(--blue); background: #edf2f0; transform: skewY(-40deg); }
.process-chat i:last-child { right: 0; bottom: 0; border-color: var(--teal); background: rgba(216, 239, 234, .7); }
.process-details { display: grid; gap: 10px; align-content: center; }
.process-details i { width: 60px; height: 1px; background: var(--blue); }
.process-details i::before { display: block; width: 9px; height: 9px; margin-top: -4px; border: 1px solid var(--teal); background: #edf2f0; content: ""; }
.process-details i:nth-child(2)::before { margin-left: 30px; background: var(--mint); }
.process-details i:nth-child(3)::before { margin-left: 48px; background: var(--teal); }
.process-order { padding: 10px; border: 1px solid var(--blue); background: white; }
.process-order::before { display: block; width: 22px; height: 3px; margin-bottom: 10px; content: ""; background: var(--teal); }
.process-order i { display: block; width: 100%; height: 1px; margin: 8px 0; background: var(--line-dark); }
.process-list h3 { margin: 0 0 12px; font-size: 21px; letter-spacing: -.02em; }
.process-list p { max-width: 290px; margin: 0; color: var(--ink-soft); font-size: 14px; }
.product-link-row { display: flex; align-items: center; justify-content: space-between; padding-top: 30px; border-top: 1px solid var(--line-dark); }
.product-link-row p { margin: 0; color: var(--ink-soft); font-size: 14px; }
.product-link-row strong { color: var(--ink); }

.team-section { background: white; }
.team-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 110px; align-items: start; }
.team-intro { max-width: 460px; margin: 24px 0 0; color: var(--ink-soft); }
.team-member {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 30px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.team-monogram {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  color: white;
  background: var(--navy);
  font-family: var(--serif);
  font-size: 29px;
}
.team-label { margin: 0 0 4px; color: var(--teal); font-size: 10px; font-weight: 760; letter-spacing: .11em; text-transform: uppercase; }
.team-member-main h3 { margin: 0; font-size: 24px; font-weight: 650; letter-spacing: -.025em; }
.team-member-main p:last-child { margin: 3px 0 0; color: var(--ink-soft); font-size: 13px; }
.team-member .founder-name-link { border-bottom: 1px solid var(--line-dark); }
.team-member .founder-name-link:hover, .team-member .founder-name-link:focus-visible { color: var(--blue); border-color: var(--blue); }
.team-member-links { display: flex; align-items: center; gap: 22px; }
.team-member-links .button { min-height: 44px; padding-inline: 17px; }

.founder-section { color: white; background: var(--navy); }
.founder-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 110px; align-items: center; }
.founder-mark { position: relative; min-height: 470px; overflow: hidden; border: 1px solid rgba(255, 255, 255, .24); background: linear-gradient(145deg, rgba(255, 255, 255, .07), rgba(22, 134, 127, .15)); }
.founder-mark::before, .founder-mark::after { position: absolute; content: ""; background: rgba(255, 255, 255, .13); }
.founder-mark::before { top: 0; bottom: 0; left: 50%; width: 1px; }
.founder-mark::after { top: 50%; right: 0; left: 0; height: 1px; }
.founder-mark strong { position: absolute; z-index: 2; top: 50%; left: 50%; font-family: var(--serif); font-size: 112px; font-weight: 400; letter-spacing: -.08em; transform: translate(-52%, -56%); }
.founder-mark p { position: absolute; z-index: 2; right: 25px; bottom: 20px; margin: 0; color: rgba(255,255,255,.65); font-size: 10px; font-weight: 700; letter-spacing: .11em; line-height: 1.5; text-align: right; text-transform: uppercase; }
.founder-orbit { position: absolute; z-index: 1; top: 50%; left: 50%; width: 280px; height: 160px; border: 1px solid rgba(131, 221, 205, .6); border-radius: 50%; transform: translate(-50%, -50%) rotate(-28deg); }
.founder-orbit::after { position: absolute; top: 13px; left: 42px; width: 9px; height: 9px; content: ""; background: #82d7c9; transform: rotate(45deg); }
.founder-section .section-number { color: #8cd5ca; }
.founder-role { margin: 0 0 10px; color: rgba(255,255,255,.64); font-size: 13px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.founder-content h2 { margin: 0; font-family: var(--serif); font-size: clamp(48px, 5vw, 68px); font-weight: 400; letter-spacing: -.04em; line-height: 1.08; }
.founder-name-link { border-bottom: 1px solid rgba(255,255,255,.5); }
.founder-name-link:hover, .founder-name-link:focus-visible { border-color: #8cd5ca; color: #a9e5dc; }
.founder-korean { margin: 7px 0 34px; color: rgba(255,255,255,.55); font-size: 15px; letter-spacing: .12em; }
.founder-bio { max-width: 650px; margin: 0; color: rgba(255,255,255,.78); font-size: 20px; line-height: 1.7; }
.founder-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }
.founder-actions .button-secondary { border-color: rgba(255,255,255,.7); color: white; }
.founder-actions .button-secondary:not(.button-disabled):hover { color: var(--navy); background: white; }
.founder-actions .button-disabled { border-color: rgba(255,255,255,.28); color: rgba(255,255,255,.58); }
.founder-actions .text-link { border-color: rgba(255,255,255,.3); }
.founder-location { display: flex; align-items: center; gap: 9px; margin: 42px 0 0; color: rgba(255,255,255,.55); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.founder-location span { width: 6px; height: 6px; border-radius: 50%; background: #75cfbf; box-shadow: 0 0 0 4px rgba(117,207,191,.12); }

.information-section { background: white; }
.company-details { margin: 0; border-top: 1px solid var(--line); }
.company-details > div { display: grid; grid-template-columns: 190px 1fr; padding: 19px 0; border-bottom: 1px solid var(--line); }
.company-details dt { color: #71858f; font-size: 13px; }
.company-details dd { margin: 0; font-weight: 630; }
.company-details a { border-bottom: 1px solid var(--line-dark); }
.company-details a:hover, .company-details a:focus-visible { color: var(--blue); border-color: var(--blue); }
.independence-note { margin: 32px 0 0; padding-left: 18px; border-left: 2px solid var(--teal); color: #627781; font-size: 12px; line-height: 1.7; }

.contact-section { padding: 110px 0; color: white; background: #102c3d; }
.contact-section .section-number { color: #89d7cc; }
.contact-inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: end; }
.contact-inner h2 { margin: 0 0 14px; font-size: clamp(40px, 4vw, 58px); font-weight: 570; letter-spacing: -.045em; }
.contact-inner p { margin: 0; color: rgba(255,255,255,.65); }
.contact-email { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.28); border-bottom: 1px solid rgba(255,255,255,.28); font-size: clamp(19px, 2.4vw, 31px); letter-spacing: -.025em; }
.contact-email i { color: #84d5ca; font-style: normal; transition: transform .2s ease; }
.contact-email:hover i, .contact-email:focus-visible i { transform: translate(4px, -4px); }

.site-footer { color: rgba(255,255,255,.72); background: #0a202e; }
.footer-top { display: flex; align-items: center; justify-content: space-between; padding: 56px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand { color: white; }
.footer-brand .brand-mark i { background: #76cabd; }
.footer-brand .brand-mark i:first-child { background: white; }
.footer-brand small { color: rgba(255,255,255,.45); font-size: 12px; font-weight: 500; }
.footer-top nav { display: flex; gap: 28px; font-size: 13px; }
.footer-top nav a:hover, .footer-top nav a:focus-visible { color: white; }
.footer-pending { color: rgba(255,255,255,.4); }
.footer-bottom { display: grid; grid-template-columns: 1fr auto 1fr; gap: 30px; align-items: center; padding: 22px 0 28px; font-size: 11px; letter-spacing: .04em; }
.footer-bottom p { margin: 0; }
.footer-bottom p:last-child { text-align: right; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal-delay { transition-delay: .12s; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  :root { --shell: min(100% - 48px, 900px); }
  .hero-grid { grid-template-columns: 1fr 410px; gap: 42px; }
  .hero h1 { font-size: 58px; }
  .workflow-visual { min-height: 480px; padding: 28px; }
  .company-grid, .information-grid, .founder-grid { gap: 70px; }
  .team-grid { gap: 70px; }
  .section { padding: 105px 0; }
}

@media (max-width: 860px) {
  .hero { padding-top: 140px; }
  .hero::before { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 690px; }
  .workflow-visual { width: min(560px, 100%); }
  .company-grid, .information-grid { grid-template-columns: 1fr; gap: 52px; }
  .team-grid { grid-template-columns: 1fr; gap: 42px; }
  .product-intro { grid-template-columns: 1fr; gap: 30px; }
  .process-list li { padding-right: 22px; }
  .process-list li:not(:first-child) { padding-left: 22px; }
  .founder-grid { grid-template-columns: 320px 1fr; gap: 52px; }
  .founder-mark { min-height: 390px; }
  .contact-inner { grid-template-columns: 1fr; gap: 46px; }
}

@media (max-width: 760px) {
  :root { --shell: calc(100% - 40px); }
  .header-inner { height: 70px; }
  .menu-button { position: relative; z-index: 102; display: block; }
  .menu-button[aria-expanded="true"] > span:nth-last-child(2) { transform: translateY(3.5px) rotate(45deg); }
  .menu-button[aria-expanded="true"] > span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .site-navigation {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    padding: 110px 28px 40px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease;
  }
  .site-navigation.is-open { opacity: 1; pointer-events: auto; transform: none; }
  .site-navigation > a { padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 24px; font-weight: 590; }
  .site-navigation > a::after { display: none; }
  .site-navigation .nav-product { margin-top: 26px; padding: 15px 18px; color: white; background: var(--navy); font-size: 15px; text-align: center; }
  .hero { min-height: auto; padding: 120px 0 78px; }
  .hero h1 { font-size: clamp(43px, 12vw, 58px); }
  .hero-lead { margin-top: 24px; font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { width: fit-content; }
  .site-roles { margin-top: 42px; }
  .workflow-visual { min-height: 440px; padding: 22px; }
  .visual-label { margin-bottom: 26px; }
  .inquiry-panel { width: 87%; }
  .order-panel { width: 88%; }
  .section { padding: 82px 0; }
  .section-heading h2, .product-intro h2, .information-section h2 { font-size: 39px; }
  html[lang="ko"] .section-heading h2,
  html[lang="ko"] .product-intro h2,
  html[lang="ko"] .information-section h2 { font-size: 35px; line-height: 1.28; }
  .large-copy { margin-bottom: 36px; font-size: 21px; }
  .copy-columns { grid-template-columns: 1fr; gap: 18px; }
  .company-status { grid-template-columns: 1fr; gap: 2px; }
  .company-status strong { margin-bottom: 12px; }
  .process-list { grid-template-columns: 1fr; margin-top: 58px; }
  .process-list li, .process-list li:not(:first-child) { min-height: auto; padding: 24px 0 32px 84px; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .process-list li:last-child { border-bottom: 0; }
  .process-symbol { position: absolute; top: 58px; left: 0; width: 54px; height: 54px; margin: 0; }
  .process-details i { width: 50px; }
  .product-link-row { align-items: stretch; flex-direction: column; gap: 24px; }
  .product-link-row .button { width: 100%; }
  .founder-grid { grid-template-columns: 1fr; gap: 48px; }
  .founder-mark { min-height: 330px; }
  .founder-mark strong { font-size: 96px; }
  .founder-content h2 { font-size: 45px; }
  .founder-bio { font-size: 17px; }
  .founder-actions { align-items: stretch; flex-direction: column; gap: 20px; }
  .founder-actions .button { width: 100%; }
  .founder-actions .text-link { width: fit-content; }
  .team-member { grid-template-columns: 60px 1fr; gap: 18px; }
  .team-monogram { width: 60px; height: 60px; font-size: 24px; }
  .team-member-links { grid-column: 1 / -1; align-items: stretch; flex-direction: column; gap: 16px; }
  .team-member-links .button { width: 100%; }
  .team-member-links .text-link { width: fit-content; }
  .company-details > div { grid-template-columns: 1fr; gap: 3px; }
  .contact-section { padding: 82px 0; }
  .contact-email { font-size: 17px; overflow-wrap: anywhere; }
  .footer-top { align-items: flex-start; flex-direction: column; gap: 34px; }
  .footer-top nav { display: grid; grid-template-columns: 1fr 1fr; width: 100%; gap: 14px 28px; }
  .footer-bottom { grid-template-columns: 1fr; gap: 7px; }
  .footer-bottom p:last-child { text-align: left; }
}

@media (max-width: 420px) {
  :root { --shell: calc(100% - 32px); }
  .eyebrow { font-size: 10px; }
  .hero h1 { font-size: 42px; }
  .site-roles { gap: 14px; }
  .site-roles > i { width: 20px; }
  .workflow-visual { min-height: 420px; padding: 17px; }
  .message { max-width: 94%; }
  .section-heading h2, .product-intro h2, .information-section h2 { font-size: 35px; }
  .founder-content h2 { font-size: 39px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
