/* 똑똑랜딩(Next.js 시안) globals.css를 그대로 이식 — Tailwind import만 제거, 빌드 없이 정적 서빙 */

:root {
  --ink: #10251f;
  --green-950: #0d3329;
  --green-900: #123e32;
  --green-800: #195443;
  --green-600: #2f8068;
  --mint: #c9f2df;
  --cream: #f5f2e9;
  --paper: #fffdf8;
  --line: rgba(16, 37, 31, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Pretendard Variable", Pretendard, "Apple SD Gothic Neo", "Noto Sans KR", system-ui, sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(24px, 5vw, 80px);
  color: white;
  border-bottom: 1px solid rgba(255,255,255,.13);
  background: rgba(13,51,41,.88);
  backdrop-filter: blur(18px);
}
.brand { display: flex; align-items: center; gap: 11px; font-size: 20px; font-weight: 800; letter-spacing: -.04em; }
.brand-mark { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 12px; color: var(--green-950); background: var(--mint); font-size: 15px; box-shadow: inset 0 0 0 1px rgba(255,255,255,.6); }
.brand-copy { display: flex; flex-direction: column; gap: 2px; line-height: 1; }
.brand-copy strong { font-size: 19px; }
.brand-copy small { color: rgba(255,255,255,.68); font-size: 8px; font-weight: 700; letter-spacing: .15em; }
.site-header nav { display: flex; gap: clamp(22px, 3vw, 42px); font-size: 14px; color: rgba(255,255,255,.76); }
.site-header nav a:hover { color: white; }
.header-cta { justify-self: end; padding: 10px 17px; border-radius: 999px; border: 1px solid rgba(255,255,255,.32); font-size: 13px; font-weight: 700; }

.hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(540px, 1.08fr);
  align-items: center;
  gap: clamp(42px, 5vw, 86px);
  padding: 144px clamp(24px, 5vw, 80px) 78px;
  color: white;
  background: var(--green-950);
}
.hero::before { content: ""; position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px); background-size: 74px 74px; mask-image: linear-gradient(to bottom, black, transparent 80%); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-glow-one { width: 560px; height: 560px; right: -190px; top: 40px; background: radial-gradient(circle, rgba(91,192,153,.23), transparent 68%); }
.hero-glow-two { width: 420px; height: 420px; left: -250px; bottom: -190px; background: radial-gradient(circle, rgba(211,240,218,.1), transparent 70%); }
.hero-copy, .hero-product { position: relative; z-index: 2; }
.eyebrow { display: flex; align-items: center; gap: 9px; margin: 0 0 26px; color: #b9e7d2; font-size: 13px; font-weight: 700; letter-spacing: .06em; }
.eyebrow span { width: 25px; height: 1px; background: currentColor; }
.hero h1 { margin: 0; font-size: clamp(44px, 3.9vw, 62px); line-height: 1.08; letter-spacing: -.065em; font-weight: 700; word-break: keep-all; }
.hero h1 em { color: var(--mint); font-style: normal; }
.hero-title-line { display: block; width: max-content; max-width: 100%; white-space: nowrap; }
.hero-title-ending { white-space: nowrap; }
.hero-description { max-width: 650px; margin: 28px 0 0; color: rgba(255,255,255,.7); font-size: clamp(16px, 1.35vw, 20px); line-height: 1.8; letter-spacing: -.02em; }
.hero-actions { display: flex; gap: 12px; margin-top: 38px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 20px; min-width: 174px; height: 54px; padding: 0 22px; border-radius: 13px; font-size: 14px; font-weight: 750; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-light { color: var(--green-950); background: var(--mint); }
.button-ghost { color: white; border: 1px solid rgba(255,255,255,.24); background: rgba(255,255,255,.05); }
.hero-note { margin: 28px 0 0; color: rgba(255,255,255,.43); font-size: 12px; }

.hero-product { min-width: 0; padding: 38px 0 32px; }
.dashboard-window { overflow: hidden; border: 1px solid rgba(255,255,255,.24); border-radius: 22px; background: #f4f3ed; box-shadow: 0 42px 90px rgba(1,18,13,.42), 0 0 0 8px rgba(255,255,255,.04); transform: perspective(1200px) rotateY(-2deg) rotateX(1deg); }
.window-bar { height: 47px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 17px; color: #264239; background: white; border-bottom: 1px solid #e5e4de; font-size: 11px; }
.window-dots { display: flex; gap: 6px; }
.window-dots span { width: 8px; height: 8px; border-radius: 50%; background: #d6d8d2; }
.secure-label { justify-self: end; color: #6d7d76; }
.dashboard-body { display: grid; grid-template-columns: 62px 1fr; min-height: 370px; }
.dashboard-nav { display: flex; flex-direction: column; align-items: center; gap: 16px; padding: 17px 0; color: #90a099; background: #eef0eb; border-right: 1px solid #dddeda; }
.nav-logo { display: grid; place-items: center; width: 31px; height: 31px; margin-bottom: 12px; border-radius: 10px; color: white; background: var(--green-800); font-size: 11px; font-weight: 800; }
.nav-item { display: grid; place-items: center; width: 31px; height: 31px; border-radius: 9px; font-size: 15px; }
.nav-item.active { color: var(--green-800); background: #d7e8e0; }
.dashboard-main { padding: 20px; color: #1b352c; }
.dashboard-heading { display: flex; align-items: center; justify-content: space-between; }
.dashboard-heading div { display: flex; flex-direction: column; gap: 3px; }
.dashboard-heading small, .care-timeline small { color: #7a8983; font-size: 9px; }
.dashboard-heading strong { font-size: 16px; }
.dashboard-heading > span { padding: 7px 10px; border-radius: 8px; color: #65766f; background: #e6ebe7; font-size: 9px; }
.workflow-row { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 8px; margin-top: 17px; }
.workflow-card { height: 155px; padding: 13px; border-radius: 14px; border: 1px solid #dde2de; background: white; box-shadow: 0 7px 18px rgba(28,64,51,.06); }
.workflow-label { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; color: #6e7f78; font-size: 9px; font-weight: 700; }
.workflow-label span { display: grid; place-items: center; width: 18px; height: 18px; border-radius: 6px; color: var(--green-800); background: #e3f1ea; font-size: 8px; }
.workflow-card > strong { display: block; font-size: 11px; }
.workflow-card p { margin: 5px 0 16px; color: #87928e; font-size: 8px; }
.mini-tags { display: flex; gap: 5px; margin-top: 20px; }
.mini-tags span { padding: 5px 7px; border-radius: 999px; color: #52806e; background: #eef6f1; font-size: 7px; }
.record-lines { display: grid; gap: 6px; margin-top: 14px; }
.record-lines i { display: block; height: 5px; border-radius: 9px; background: #edf0ed; }
.record-lines i:nth-child(2) { width: 74%; }
.form-preview { position: relative; display: grid; gap: 5px; margin-top: 11px; padding: 9px; border: 1px solid #e2e5e1; border-radius: 7px; }
.form-preview i { height: 3px; background: #dfe4df; }
.form-preview b { display: block; margin-top: 5px; color: #2e8c6d; font-size: 7px; }
.flow-arrow { color: #9db0a8; font-size: 15px; }
.care-timeline { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; padding: 14px 16px; border-radius: 14px; color: #214337; background: #dfede6; }
.care-timeline div:first-child { display: flex; flex-direction: column; gap: 3px; }
.care-timeline strong { font-size: 11px; }
.avatar-stack { display: flex; }
.avatar { display: grid; place-items: center; width: 27px; height: 27px; margin-left: -6px; border: 2px solid #dfede6; border-radius: 50%; color: white; font-size: 8px; font-weight: 800; }
.doctor { background: #2b775f; }.nurse { background: #437fad; }.care { background: #9b7562; }.family { background: #d28b78; }
.floating-card { position: absolute; display: flex; align-items: center; gap: 11px; border: 1px solid rgba(255,255,255,.72); border-radius: 14px; color: #17382d; background: rgba(255,255,255,.93); box-shadow: 0 16px 40px rgba(1,18,13,.22); backdrop-filter: blur(10px); }
.floating-card small { display: block; color: #788780; font-size: 8px; }
.floating-card strong { display: block; margin-top: 2px; font-size: 10px; }
.impact-card { left: -28px; bottom: 2px; padding: 11px 16px; }
.impact-icon, .family-icon { display: grid; place-items: center; width: 33px; height: 33px; border-radius: 10px; background: #def1e7; }
.family-card { right: -16px; bottom: -20px; padding: 12px 15px; }
.family-card p { margin: 4px 0 0; color: #688078; font-size: 7px; }
.family-icon { color: #2476c9; background: #e7f2ff; }

.proof-strip { display: grid; grid-template-columns: repeat(4, 1fr); padding: 0 clamp(24px, 5vw, 80px); background: #eff0e9; border-bottom: 1px solid var(--line); }
.proof-strip div { min-height: 116px; display: flex; flex-direction: column; justify-content: center; gap: 8px; padding: 0 clamp(14px, 2vw, 32px); border-left: 1px solid var(--line); }
.proof-strip div:last-child { border-right: 1px solid var(--line); }
.proof-strip strong { color: var(--green-800); font-family: Georgia, serif; font-size: 24px; font-weight: 500; }
.proof-strip span { color: #60736b; font-size: 11px; line-height: 1.5; }
.preview-spacer { min-height: 470px; padding: 130px clamp(24px, 9vw, 150px); background: var(--paper); }
.section-kicker { margin: 0 0 18px; color: var(--green-600); font-size: 11px; font-weight: 800; letter-spacing: .16em; }
.preview-spacer h2 { margin: 0; font-size: clamp(42px, 5vw, 72px); line-height: 1.12; letter-spacing: -.055em; }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 138px; }
  .hero-copy { max-width: 760px; }
  .hero-product { width: min(820px, 96%); margin: 0 auto; }
}
@media (max-width: 700px) {
  .site-header { height: 68px; padding: 0 18px; }
  .brand { font-size: 18px; }.brand-mark { width: 32px; height: 32px; }
  .header-cta { padding: 8px 13px; font-size: 11px; }
  .hero { min-height: 0; padding: 116px 20px 58px; }
  .hero h1 { font-size: clamp(34px, 10.7vw, 48px); }
  .hero-title-ending { display: block; }
  .hero-description { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .hero-product { width: 110%; margin-left: -5%; padding-top: 14px; }
  .dashboard-window { transform: none; border-radius: 15px; }
  .dashboard-body { grid-template-columns: 45px 1fr; min-height: 300px; }
  .dashboard-nav { gap: 9px; }.nav-item { width: 26px; height: 26px; }
  .dashboard-main { padding: 13px; }
  .workflow-row { gap: 3px; }.workflow-card { height: 130px; padding: 9px; }.flow-arrow { font-size: 10px; }
  .family-card { display: none; }.impact-card { left: 2px; }
  .proof-strip { grid-template-columns: 1fr 1fr; padding: 0 18px; }
  .proof-strip div { min-height: 105px; border-bottom: 1px solid var(--line); }
  .proof-strip div:nth-child(2n) { border-right: 1px solid var(--line); }
  .preview-spacer { padding: 96px 24px; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .button { transition: none; } }

/* Full story sections */
.section-shell { width: min(1440px, 100%); margin: 0 auto; padding: 150px clamp(24px, 7vw, 112px); }
.section-heading h2, .mission-heading h2, .team-intro h2, .impact-layout h2, .contact-section h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.14;
  letter-spacing: -.06em;
}
.section-heading > p:last-child { color: #697970; font-size: 16px; line-height: 1.8; }

.mission-section { background: var(--paper); }
.mission-heading { display: grid; grid-template-columns: 1.15fr .7fr; gap: clamp(48px, 9vw, 150px); align-items: end; }
.mission-heading h2 span { color: var(--green-600); }
.mission-heading > p { margin: 0 0 6px; color: #61736a; font-size: 17px; line-height: 1.9; }
.mission-photo { position: relative; margin: 82px 0 0; overflow: hidden; border-radius: 30px; background: #d8dfd8; box-shadow: 0 30px 80px rgba(24,63,50,.13); }
.mission-photo img { display: block; width: 100%; height: auto; min-height: 430px; object-fit: cover; }
.mission-photo::after { content: ""; position: absolute; inset: 40% 0 0; pointer-events: none; background: linear-gradient(transparent, rgba(7,30,23,.56)); }
.mission-photo figcaption { position: absolute; z-index: 2; left: clamp(24px, 4vw, 62px); right: clamp(24px, 4vw, 62px); bottom: clamp(22px, 4vw, 50px); display: flex; flex-direction: column; align-items: flex-start; gap: 10px; color: white; }
.mission-photo figcaption span { color: #ccebdc; font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.mission-photo figcaption strong { max-width: none; font-size: clamp(19px, 2vw, 30px); line-height: 1.35; letter-spacing: -.04em; text-align: left; white-space: nowrap; }
.brand-story { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(28px, 5vw, 72px); align-items: stretch; margin-top: 34px; padding: clamp(32px, 5vw, 68px); border: 1px solid rgba(25,84,67,.14); border-radius: 28px; background: #f0f3eb; }
.brand-story-copy { align-self: center; }
.brand-story-label { margin: 0 0 18px; color: var(--green-600); font-size: 12px; font-weight: 850; letter-spacing: .16em; }
.brand-story-copy h3 { margin: 0; font-size: clamp(32px, 3.7vw, 54px); line-height: 1.18; letter-spacing: -.055em; }
.brand-story-copy h3 span { color: var(--green-600); }
.brand-story-copy > p:last-child { max-width: 690px; margin: 26px 0 0; color: #465c52; font-size: 17px; line-height: 1.9; }
.brand-story-copy > p strong { color: var(--green-800); font-weight: 800; }
.product-identity { display: flex; flex-direction: column; min-height: 300px; padding: clamp(28px, 4vw, 48px); border-radius: 22px; color: white; background: var(--green-800); box-shadow: 0 22px 50px rgba(15,58,45,.16); }
.product-identity-top { display: flex; align-items: center; justify-content: space-between; }
.product-identity-top small { color: #bde9d5; font-size: 11px; font-weight: 800; letter-spacing: .14em; }
.product-identity-top span { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; color: rgba(255,255,255,.82); font-family: Georgia, serif; font-size: 11px; }
.product-identity-name { display: flex; flex-direction: column; gap: 6px; margin-top: 24px; padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,.15); }
.product-identity-name strong { font-size: clamp(30px, 3vw, 42px); letter-spacing: -.05em; }
.product-identity-name span { color: rgba(255,255,255,.62); font-size: 9px; font-weight: 700; letter-spacing: .13em; }
.product-identity > p { margin: 20px 0 0; color: rgba(255,255,255,.86); font-size: 16px; line-height: 1.7; }
.product-identity ul { display: flex; flex-wrap: wrap; gap: 7px; margin: auto 0 0; padding: 28px 0 0; list-style: none; }
.product-identity li { padding: 8px 11px; border: 1px solid rgba(255,255,255,.27); border-radius: 999px; color: rgba(255,255,255,.9); font-size: 11px; font-weight: 650; }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 34px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.problem-grid article { min-height: 240px; padding: 34px clamp(20px, 3vw, 42px); border-left: 1px solid var(--line); }
.problem-grid article:last-child { border-right: 1px solid var(--line); }
.problem-number { color: var(--green-600); font-family: Georgia, serif; font-size: 14px; }
.problem-grid h3 { margin: 42px 0 14px; font-size: 22px; letter-spacing: -.04em; }
.problem-grid p { margin: 0; color: #697970; font-size: 14px; line-height: 1.75; }

.platform-section { background: #f1f2ed; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.centered-heading { max-width: 850px; margin: 0 auto; text-align: center; }
.centered-heading p:last-child { max-width: 640px; margin: 24px auto 0; }
.flow-grid { display: grid; grid-template-columns: repeat(6, 1fr); margin-top: 76px; border-top: 1px solid #cfd6d0; }
.flow-step { min-height: 220px; padding: 24px 18px 26px; border-right: 1px solid #cfd6d0; }
.flow-step:first-child { border-left: 1px solid #cfd6d0; }
.flow-step-top { display: flex; justify-content: space-between; align-items: center; color: #86958e; font-family: Georgia, serif; font-size: 12px; }
.flow-step-top i { margin-right: -27px; color: var(--green-600); font-family: system-ui, sans-serif; font-size: 17px; font-style: normal; }
.flow-step h3 { margin: 54px 0 13px; font-size: 19px; letter-spacing: -.04em; }
.flow-step p { margin: 0; color: #74827b; font-size: 12px; line-height: 1.7; }

.automation-block { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(48px, 6vw, 92px); align-items: center; margin-top: 128px; padding: clamp(34px, 5vw, 76px); border-radius: 36px; color: white; background: var(--green-950); box-shadow: 0 36px 80px rgba(13,51,41,.16); }
.automation-copy h2 { margin: 0; font-size: clamp(37px, 3.5vw, 55px); line-height: 1.2; letter-spacing: -.055em; }
.automation-copy > p:not(.section-kicker) { margin: 25px 0 0; color: rgba(255,255,255,.64); font-size: 15px; line-height: 1.85; }
.automation-copy ul { display: grid; gap: 12px; margin: 32px 0 0; padding: 0; list-style: none; color: rgba(255,255,255,.78); font-size: 13px; }
.automation-copy li { display: flex; align-items: center; gap: 10px; }
.automation-copy li span { display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; color: var(--green-950); background: var(--mint); font-size: 10px; font-weight: 900; }
.automation-visual { display: grid; grid-template-columns: 1fr auto .88fr; gap: 14px; align-items: center; min-width: 0; }
.input-panel, .document-panel { min-width: 0; padding: 22px; border-radius: 18px; color: #1d392f; background: #fffefa; box-shadow: 0 16px 36px rgba(3,26,18,.2); }
.panel-title { display: flex; justify-content: space-between; align-items: center; margin-bottom: 23px; }
.panel-title span { font-size: 14px; font-weight: 800; }
.panel-title b { padding: 5px 8px; border-radius: 999px; color: #287459; background: #dff1e8; font-size: 8px; }
.input-panel label { display: block; margin: 15px 0 7px; color: #718079; font-size: 9px; font-weight: 700; }
.choice-row { display: flex; flex-wrap: wrap; gap: 5px; }
.choice-row span { padding: 7px 8px; border: 1px solid #e4e7e3; border-radius: 8px; color: #75827c; font-size: 8px; }
.choice-row span.selected { color: #22664f; border-color: #a9d5c3; background: #edf7f2; }
.input-panel button, .document-panel button { width: 100%; margin-top: 18px; padding: 10px; border: 0; border-radius: 9px; color: white; background: var(--green-800); font: inherit; font-size: 9px; font-weight: 800; }
.generate-arrow { display: flex; flex-direction: column; align-items: center; gap: 7px; color: #bce5d2; font-size: 20px; }
.generate-arrow span { font-size: 8px; font-weight: 800; white-space: nowrap; }
.document-panel { position: relative; }
.document-badge { position: absolute; right: 15px; top: 15px; padding: 5px 7px; border-radius: 999px; color: #227151; background: #dff2e9; font-size: 7px; font-weight: 800; }
.document-panel > strong { display: block; margin-bottom: 25px; font-size: 13px; }
.doc-row { display: grid; grid-template-columns: 62px 1fr; padding: 9px 0; border-bottom: 1px solid #e6e9e5; font-size: 8px; }
.doc-row i { color: #829089; font-style: normal; }
.doc-lines { display: grid; gap: 6px; margin-top: 16px; }
.doc-lines i { height: 4px; border-radius: 5px; background: #e8ebe8; }
.doc-lines i:nth-child(2) { width: 83%; }.doc-lines i:nth-child(4) { width: 68%; }

.audience-section { background: var(--paper); }
.audience-heading { display: grid; grid-template-columns: 1fr .5fr; gap: 80px; align-items: end; }
.audience-heading > p { margin: 0 0 4px; }
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 70px; }
.audience-card { min-height: 570px; display: flex; flex-direction: column; padding: 34px; border: 1px solid rgba(16,37,31,.09); border-radius: 26px; overflow: hidden; }
.audience-card.clinician { color: white; background: var(--green-800); }
.audience-card.caregiver { color: #102d46; background: #e6f1fa; }
.audience-card.community { color: #392e24; background: #efe7dc; }
.audience-card-top { display: flex; justify-content: space-between; align-items: center; }
.audience-card-top span { font-family: Georgia, serif; font-size: 13px; opacity: .72; }
.audience-card-top small { font-size: 11px; font-weight: 800; }
.audience-symbol { height: 175px; display: flex; align-items: center; justify-content: center; gap: 13px; margin: 36px -4px 30px; border-radius: 20px; background: rgba(255,255,255,.15); }
.caregiver .audience-symbol, .community .audience-symbol { background: rgba(255,255,255,.55); }
.audience-symbol b { display: grid; place-items: center; width: 72px; height: 72px; border-radius: 50%; background: rgba(255,255,255,.9); color: var(--green-800); font-size: 12px; box-shadow: 0 12px 28px rgba(25,69,53,.11); }
.caregiver .audience-symbol b { color: #2a6f9e; }.community .audience-symbol b { color: #85684e; }
.audience-symbol i { font-style: normal; opacity: .66; }
.audience-card h3 { margin: 0; font-size: 27px; letter-spacing: -.05em; }
.audience-card > p { min-height: 78px; margin: 15px 0 0; opacity: .7; font-size: 14px; line-height: 1.75; }
.audience-card ul { display: flex; flex-wrap: wrap; gap: 7px; margin: auto 0 0; padding: 0; list-style: none; }
.audience-card li { padding: 8px 11px; border: 1px solid currentColor; border-radius: 999px; font-size: 9px; opacity: .68; }

.roadmap-section { position: relative; overflow: hidden; color: white; background: #0a2b23; }
.roadmap-section::before { content: ""; position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 76px 76px; }
.roadmap-layout { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(56px, 7vw, 110px); }
.roadmap-copy { position: sticky; top: 130px; align-self: start; }
.roadmap-copy h2 { margin: 0; font-size: clamp(40px, 4vw, 60px); line-height: 1.15; letter-spacing: -.06em; word-break: keep-all; }
.roadmap-title-line { display: block; width: max-content; max-width: 100%; white-space: nowrap; }
.roadmap-copy h2 .roadmap-title-accent { color: var(--mint); }
.keep-together { white-space: nowrap; }
.roadmap-copy > p:not(.section-kicker) { margin: 30px 0 0; color: rgba(255,255,255,.61); font-size: 15px; line-height: 1.9; }
.roadmap-copy blockquote { margin: 48px 0 0; padding: 24px 0 0; border-top: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.82); font-family: Georgia, "Noto Serif KR", serif; font-size: 20px; line-height: 1.7; }
.roadmap-list { display: grid; }
.roadmap-list article { display: grid; grid-template-columns: 62px 1fr; gap: 24px; min-height: 180px; }
.roadmap-marker { display: flex; flex-direction: column; align-items: center; }
.roadmap-marker span { display: grid; place-items: center; width: 45px; height: 45px; border: 1px solid rgba(201,242,223,.5); border-radius: 50%; color: var(--mint); font-family: Georgia, serif; font-size: 12px; background: #0f392e; }
.roadmap-marker i { width: 1px; flex: 1; background: linear-gradient(rgba(201,242,223,.45), rgba(201,242,223,.08)); }
.roadmap-list article:last-child .roadmap-marker i { display: none; }
.roadmap-list small { color: #82bca4; font-size: 9px; font-weight: 800; letter-spacing: .13em; }
.roadmap-list h3 { margin: 8px 0; font-size: 28px; letter-spacing: -.04em; }
.roadmap-list p { margin: 0; color: rgba(255,255,255,.53); font-size: 13px; line-height: 1.7; }
.roadmap-orbit { position: absolute; right: -260px; bottom: -300px; width: 780px; height: 780px; border: 1px solid rgba(201,242,223,.1); border-radius: 50%; }
.roadmap-orbit::before, .roadmap-orbit::after { content: ""; position: absolute; border: 1px solid rgba(201,242,223,.08); border-radius: 50%; }
.roadmap-orbit::before { inset: 90px; }.roadmap-orbit::after { inset: 210px; }
.roadmap-orbit span { position: absolute; width: 14px; height: 14px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 25px var(--mint); }
.roadmap-orbit span:nth-child(1) { left: 140px; top: 80px; }.roadmap-orbit span:nth-child(2) { right: 110px; top: 240px; }.roadmap-orbit span:nth-child(3) { left: 250px; bottom: 80px; }

.team-section { background: #f5f0e6; }
.team-story { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(56px, 6vw, 96px); align-items: center; }
.team-intro > p:not(.section-kicker) { max-width: 660px; margin: 30px 0 0; color: #68766f; font-size: 16px; line-height: 1.9; }
.founder-quote { position: relative; padding: 62px 40px 44px; border-radius: 28px; background: white; box-shadow: 0 24px 60px rgba(76,64,40,.08); }
.founder-quote blockquote { position: relative; margin: 0; padding: 0 8px 18px; font-family: Georgia, "Noto Serif KR", serif; font-size: clamp(19px, 1.4vw, 22px); font-weight: 600; line-height: 1.65; letter-spacing: -.035em; }
.founder-quote blockquote::before, .founder-quote blockquote::after { position: absolute; color: #bfd9cc; font-family: Georgia, serif; font-size: 64px; font-weight: 400; line-height: 1; }
.founder-quote blockquote::before { content: "“"; left: -10px; top: -43px; }
.founder-quote blockquote::after { content: "”"; right: -4px; bottom: -35px; }
.founder-quote p { margin: 30px 0 0; color: var(--green-600); font-size: 11px; font-weight: 800; }
.team-capabilities { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 88px; border-top: 1px solid #d6d1c5; border-bottom: 1px solid #d6d1c5; }
.team-capabilities article { min-height: 210px; display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 33px; border-left: 1px solid #d6d1c5; }
.team-capabilities article:last-child { border-right: 1px solid #d6d1c5; }
.capability-icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 15px; color: white; background: var(--green-800); font-family: Georgia, serif; }
.team-capabilities small { color: var(--green-600); font-size: 8px; font-weight: 800; letter-spacing: .1em; }
.team-capabilities h3 { margin: 9px 0 11px; font-size: 18px; }
.team-capabilities p { margin: 0; color: #758079; font-size: 12px; line-height: 1.7; }

.impact-section { background: #e8eee9; }
.impact-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(70px, 10vw, 170px); }
.impact-layout h2 { font-size: clamp(40px, 4vw, 61px); }
.impact-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid #bdc9c1; }
.impact-list article { min-height: 215px; padding: 28px; border-right: 1px solid #bdc9c1; border-bottom: 1px solid #bdc9c1; }
.impact-list article:nth-child(odd) { border-left: 1px solid #bdc9c1; }
.impact-list span { color: var(--green-600); font-family: Georgia, serif; font-size: 11px; }
.impact-list h3 { margin: 48px 0 10px; font-size: 18px; letter-spacing: -.03em; }
.impact-list p { margin: 0; color: #65766e; font-size: 12px; line-height: 1.7; }

.contact-section { position: relative; overflow: hidden; padding: 140px 24px; color: white; text-align: center; background: var(--green-800); }
.contact-section::before, .contact-section::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.contact-section::before { width: 600px; height: 600px; left: -310px; top: -320px; }.contact-section::after { width: 460px; height: 460px; right: -220px; bottom: -250px; }
.contact-mark { display: grid; place-items: center; width: 58px; height: 58px; margin: 0 auto 27px; border-radius: 18px; color: var(--green-950); background: var(--mint); font-weight: 900; }
.contact-section > p:first-of-type { color: #b9e4d0; font-size: 9px; font-weight: 800; letter-spacing: .16em; }
.contact-section h2 { font-size: clamp(39px, 4.7vw, 68px); }
.contact-description { margin: 24px 0 0; color: rgba(255,255,255,.65); font-size: 15px; }
.contact-actions { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-top: 38px; }
.contact-placeholder { color: rgba(255,255,255,.42); font-size: 10px; }
footer { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 50px; padding: 42px clamp(24px, 6vw, 100px); color: rgba(255,255,255,.55); background: #071e18; font-size: 10px; }
.footer-brand { display: flex; align-items: center; gap: 10px; color: white; font-size: 16px; }.footer-brand .brand-mark { width: 30px; height: 30px; border-radius: 9px; font-size: 10px; }
.footer-brand > span:last-child { display: flex; flex-direction: column; gap: 2px; }
.footer-brand small { color: rgba(255,255,255,.48); font-size: 7px; letter-spacing: .13em; }
footer > div:last-child { display: flex; gap: 24px; }

@media (max-width: 1050px) {
  .section-shell { padding: 120px 42px; }
  .mission-heading, .audience-heading, .team-story, .impact-layout { grid-template-columns: 1fr; gap: 38px; }
  .flow-grid { grid-template-columns: repeat(3, 1fr); }
  .flow-step:nth-child(3) { border-right: 1px solid #cfd6d0; }
  .flow-step:nth-child(n+4) { border-top: 1px solid #cfd6d0; }
  .automation-block { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-card { min-height: 440px; display: grid; grid-template-columns: .75fr 1.25fr; grid-template-rows: auto auto 1fr auto; column-gap: 34px; }
  .audience-card-top { grid-column: 1 / -1; }.audience-symbol { grid-row: 2 / 5; margin: 28px 0 0; }.audience-card h3 { align-self: end; margin-top: 28px; }
  .roadmap-layout { grid-template-columns: 1fr; }.roadmap-copy { position: static; }.roadmap-list { margin-top: 30px; }
  .team-capabilities { grid-template-columns: 1fr; }.team-capabilities article { border-right: 1px solid #d6d1c5; border-bottom: 1px solid #d6d1c5; }
  footer { grid-template-columns: 1fr 1fr; } footer > p { text-align: right; } footer > div:last-child { grid-column: 1 / -1; justify-content: space-between; }
}

@media (max-width: 700px) {
  .section-shell { padding: 92px 20px; }
  .section-heading h2, .mission-heading h2, .team-intro h2, .impact-layout h2 { font-size: 40px; }
  .mission-heading > p { font-size: 15px; }
  .mission-photo { margin-top: 50px; border-radius: 20px; }
  .mission-photo img { min-height: 420px; object-position: 38% center; }
  .mission-photo figcaption { gap: 9px; }
  .mission-photo figcaption strong { font-size: 18px; white-space: normal; }
  .brand-story { grid-template-columns: 1fr; padding: 26px; border-radius: 22px; }
  .brand-story-copy > p:last-child { font-size: 16px; }
  .product-identity { min-height: 280px; }
  .problem-grid { grid-template-columns: 1fr; }.problem-grid article { min-height: auto; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }.problem-grid h3 { margin-top: 27px; }
  .flow-grid { grid-template-columns: 1fr 1fr; }.flow-step { min-height: 190px; }.flow-step:nth-child(n+3) { border-top: 1px solid #cfd6d0; }.flow-step-top i { display: none; }
  .automation-block { margin: 84px -4px 0; padding: 32px 20px; border-radius: 25px; }
  .automation-visual { grid-template-columns: 1fr; }.generate-arrow { flex-direction: row; justify-content: center; transform: rotate(90deg); margin: 2px 0; }.document-panel { width: 87%; margin-left: auto; }
  .audience-heading { gap: 24px; }.audience-grid { margin-top: 44px; }
  .audience-card { min-height: 540px; display: flex; padding: 26px; }.audience-symbol { height: 155px; margin: 28px 0; }.audience-card h3 { margin: 0; }.audience-card > p { min-height: 0; }
  .roadmap-copy h2 { font-size: 42px; }.roadmap-title-line { width: auto; white-space: normal; }.roadmap-copy blockquote { font-size: 17px; }.roadmap-list h3 { font-size: 23px; }
  .founder-quote { padding: 56px 25px 34px; }.founder-quote blockquote { padding-right: 5px; font-size: 20px; }
  .team-capabilities article { grid-template-columns: 46px 1fr; padding: 26px 20px; }.capability-icon { width: 42px; height: 42px; }
  .impact-list { grid-template-columns: 1fr; }.impact-list article { min-height: 185px; border-left: 1px solid #bdc9c1; }.impact-list h3 { margin-top: 35px; }
  .contact-section { padding: 100px 20px; }.contact-section h2 { font-size: 39px; }
  footer { grid-template-columns: 1fr; gap: 22px; padding: 36px 20px; } footer > p { text-align: left; } footer > div:last-child { grid-column: auto; flex-direction: column; gap: 7px; }
}

/* Readability and contrast pass */
body { font-size: 16px; }
.site-header nav { color: rgba(255,255,255,.92); font-size: 15px; }
.header-cta { border-color: rgba(255,255,255,.58); font-size: 14px; }
.eyebrow { color: #d3f3e4; font-size: 15px; }
.hero-description { color: rgba(255,255,255,.88); font-size: clamp(18px, 1.45vw, 21px); }
.button { font-size: 16px; }
.button-ghost { border-color: rgba(255,255,255,.48); background: rgba(255,255,255,.1); }
.hero-note { color: rgba(255,255,255,.72); font-size: 14px; }

.window-bar { font-size: 12px; }
.secure-label { color: #52665d; font-weight: 650; }
.dashboard-nav { color: #62776d; }
.nav-logo { font-size: 12px; }
.dashboard-heading small, .care-timeline small { color: #52665d; font-size: 11px; }
.dashboard-heading > span { color: #4e6258; font-size: 11px; }
.workflow-card { height: 168px; }
.workflow-label { color: #52665d; font-size: 11px; }
.workflow-label span { font-size: 10px; }
.workflow-card > strong { font-size: 13px; }
.workflow-card p { color: #5d6f67; font-size: 10px; }
.mini-tags span { color: #326a54; font-size: 9px; }
.form-preview b { font-size: 9px; }
.care-timeline strong { font-size: 13px; }
.avatar { font-size: 10px; }
.floating-card small { color: #53665d; font-size: 10px; }
.floating-card strong { font-size: 12px; }
.family-card p { color: #50685e; font-size: 9px; }

.proof-strip span { color: #40584e; font-size: 13px; }
.section-kicker { color: #246a54; font-size: 13px; }
.section-heading > p:last-child { color: #4c6056; font-size: 18px; }
.mission-heading > p { color: #465c52; font-size: 18px; }
.mission-photo figcaption span { color: #e0f6eb; font-size: 13px; }
.problem-number { font-size: 15px; }
.problem-grid p { color: #4c6056; font-size: 16px; }
.flow-step-top { color: #5d7167; font-size: 14px; }
.flow-step h3 { font-size: 21px; }
.flow-step p { color: #51665c; font-size: 14px; }

.automation-copy > p:not(.section-kicker) { color: rgba(255,255,255,.84); font-size: 17px; }
.automation-copy ul { color: rgba(255,255,255,.92); font-size: 15px; }
.automation-copy li span { font-size: 12px; }
.panel-title span { font-size: 16px; }
.panel-title b { font-size: 10px; }
.input-panel label { color: #52665d; font-size: 11px; }
.choice-row span { color: #52665d; font-size: 10px; }
.input-panel button, .document-panel button { font-size: 11px; }
.generate-arrow span { font-size: 10px; }
.document-badge { font-size: 9px; }
.document-panel > strong { font-size: 15px; }
.doc-row { font-size: 10px; }
.doc-row i { color: #52665d; }

.audience-card-top span { font-size: 15px; opacity: .9; }
.audience-card-top small { font-size: 13px; }
.audience-symbol b { font-size: 14px; }
.audience-card > p { opacity: .9; font-size: 16px; }
.audience-card li { font-size: 11px; opacity: .88; }

.roadmap-copy > p:not(.section-kicker) { color: rgba(255,255,255,.82); font-size: 17px; }
.roadmap-copy blockquote { color: rgba(255,255,255,.96); font-size: 22px; }
.roadmap-marker span { font-size: 14px; }
.roadmap-list small { color: #a6dcc5; font-size: 11px; }
.roadmap-list p { color: rgba(255,255,255,.76); font-size: 15px; }

.team-intro > p:not(.section-kicker) { color: #4b6056; font-size: 18px; }
.founder-quote p { color: #246a54; font-size: 13px; }
.team-capabilities small { color: #246a54; font-size: 10px; }
.team-capabilities h3 { font-size: 20px; }
.team-capabilities p { color: #53655c; font-size: 14px; }
.impact-list span { font-size: 13px; }
.impact-list h3 { font-size: 20px; }
.impact-list p { color: #4c6056; font-size: 14px; }

.contact-section > p:first-of-type { color: #daf4e8; font-size: 11px; }
.contact-description { color: rgba(255,255,255,.86); font-size: 17px; }
.contact-placeholder { color: rgba(255,255,255,.72); font-size: 12px; }
footer { color: rgba(255,255,255,.78); font-size: 12px; }

@media (max-width: 700px) {
  .site-header nav { font-size: 14px; }
  .hero-description { font-size: 18px; }
  .mission-heading > p, .section-heading > p:last-child, .team-intro > p:not(.section-kicker) { font-size: 16px; }
  .workflow-card { height: 148px; }
  .automation-copy > p:not(.section-kicker), .roadmap-copy > p:not(.section-kicker) { font-size: 16px; }
}

/* 정적 이식 시 추가분: 회사 정보 푸터 행 */
.footer-company { display: flex; flex-wrap: wrap; gap: 6px 18px; color: rgba(255,255,255,.62); font-size: 12px; }
.footer-company a { color: rgba(255,255,255,.85); text-decoration: underline; text-underline-offset: 3px; }
footer { grid-template-columns: 1fr auto; grid-template-areas: "brand tagline" "company links"; }
.footer-brand { grid-area: brand; }
footer > p { grid-area: tagline; margin: 0; }
.footer-company { grid-area: company; }
footer > div:last-child { grid-area: links; justify-content: flex-end; }
@media (max-width: 1050px) {
  footer { grid-template-columns: 1fr; grid-template-areas: "brand" "tagline" "company" "links"; }
  footer > p { text-align: left; }
  footer > div:last-child { grid-column: auto; justify-content: flex-start; }
}
@media (max-width: 700px) {
  .footer-company { flex-direction: column; gap: 6px; }
}
