/* home-v3 — 메시지 가이드 기반 실험 홈. 운영 portal.css / home.html 과 분리 */

:root {
  --ink: #12171c;
  --ink-soft: #3a4550;
  --paper: #eef2f4;
  --paper-2: #f7f9fa;
  --sea: #2f6f7a;
  --sea-deep: #163740;
  --mist: #c5d5d9;
  --line: rgba(18, 23, 28, 0.12);
  --glass: rgba(238, 242, 244, 0.82);
  --shadow: 0 20px 50px rgba(12, 22, 28, 0.28);
  --font-ui: "Pretendard Variable", "Pretendard", "Apple SD Gothic Neo", sans-serif;
  --font-display: "Newsreader", "Apple SD Gothic Neo", serif;
  --partner-bar-h: 64px;
  --shell: 1080px;
  --d: 0s;
}

html { scroll-behavior: smooth; }
*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  color: var(--ink);
  font-family: var(--font-ui);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92em;
}

.v3-body { padding-bottom: var(--partner-bar-h); }
.v3 { min-height: 100vh; display: flex; flex-direction: column; }

.v3-shell {
  width: min(var(--shell), 100%);
  margin: 0 auto;
  padding-inline: clamp(18px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* —— top (브랜드만 · 우측 미리보기 네비 없음) —— */
.v3-top {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  padding: 22px 0 0;
  color: #f4f8f9;
}

.v3-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.v3-top-login {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(244, 248, 249, 0.38);
  background: rgba(10, 16, 20, 0.28);
  color: #f4f8f9;
  font-family: var(--font-sans, "Pretendard Variable", Pretendard, sans-serif);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.v3-top-login:hover {
  background: rgba(244, 248, 249, 0.14);
  border-color: rgba(244, 248, 249, 0.6);
  transform: translateY(-1px);
}

.v3-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  letter-spacing: -0.02em;
}
.v3-brand img {
  width: 42px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.35));
}
.v3-brand-name {
  font-family: var(--font-display);
  font-weight: 650;
  font-size: clamp(1.12rem, 2.1vw, 1.4rem);
  line-height: 1.1;
}
.v3-brand-name em {
  font-style: normal;
  color: #9ecfd6;
}

/* —— hero —— */
.v3-hero {
  position: relative;
  min-height: calc(100vh - var(--partner-bar-h));
  min-height: calc(100dvh - var(--partner-bar-h));
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #f4f8f9;
  background: #0f1a1e;
}

.v3-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: center / cover no-repeat url("/assets/portal-home-v2-hero-tiny.jpg");
}
.v3-hero-media picture,
.v3-hero-media img {
  width: 100%;
  height: 100%;
  display: block;
}
.v3-hero-media img {
  object-fit: cover;
  object-position: 58% 38%;
  animation: v3-drift 24s ease-in-out infinite alternate;
}
@keyframes v3-drift {
  from { transform: scale(1.03); }
  to { transform: scale(1.07); }
}

.v3-hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10,16,20,.55) 0%, rgba(10,16,20,.32) 40%, rgba(10,16,20,.82) 100%),
    linear-gradient(115deg, rgba(22,55,64,.55) 0%, transparent 55%);
}
.v3-hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: .05;
  pointer-events: none;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.v3-hero-copy {
  position: relative;
  z-index: 3;
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: 96px 0 80px;
  text-align: center;
  animation: v3-rise .9s cubic-bezier(.22,1,.36,1) both;
}
@keyframes v3-rise {
  from { opacity: 0; transform: translate3d(0, 22px, 0); }
  to { opacity: 1; transform: none; }
}

.v3-hero-copy h1 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-weight: 650;
  font-size: clamp(2.55rem, 7vw, 4.35rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-wrap: balance;
  text-shadow: 0 10px 40px rgba(0,0,0,.35);
}
.v3-hero-copy h1 span {
  display: block;
  color: #b8e6e2; /* v2 Service Hub 톤 */
}

.v3-hero-lead {
  margin: 0 auto 14px;
  max-width: 36rem;
  font-size: clamp(1rem, 1.55vw, 1.1rem);
  line-height: 1.65;
  color: rgba(244,248,249,.9);
}

.v3-hero-bridge {
  margin: 0 auto 28px;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.01em;
  color: rgba(200, 230, 234, .78);
}

.v3-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.v3-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 12px;
  font-weight: 650;
  font-size: 15px;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.v3-cta a:hover { transform: translateY(-1px); }
.v3-cta-primary {
  background: #eef2f4;
  color: var(--ink);
  box-shadow: var(--shadow);
}
.v3-cta-primary:hover { background: #fff; }
.v3-cta-secondary {
  color: #f4f8f9;
  border: 1px solid rgba(244,248,249,.4);
  backdrop-filter: blur(8px);
  background: rgba(14,20,25,.24);
}
.v3-cta-secondary:hover { background: rgba(14,20,25,.4); }

.v3-scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 3;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(244,248,249,.7);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  animation: v3-bob 1.8s ease-in-out infinite;
}
.v3-scroll-hint i {
  width: 14px;
  height: 22px;
  border: 1.5px solid rgba(244,248,249,.55);
  border-radius: 999px;
  position: relative;
}
.v3-scroll-hint i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 5px;
  width: 3px;
  height: 5px;
  margin-left: -1.5px;
  border-radius: 2px;
  background: rgba(244,248,249,.8);
}
@keyframes v3-bob {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: .7; }
  50% { transform: translateX(-50%) translateY(5px); opacity: 1; }
}

/* —— bands —— */
.v3-band {
  padding: clamp(56px, 9vw, 100px) clamp(18px, 4vw, 48px);
  background:
    radial-gradient(900px 360px at 90% 0%, rgba(47,111,122,.08), transparent 55%),
    var(--paper);
}
.v3-band-soft { background: var(--paper-2); }
.v3-band-ink {
  background: linear-gradient(180deg, #142226 0%, #10181c 100%);
  color: #e6eef0;
}
.v3-band-ink .v3-band-lead { color: rgba(230,238,240,.72); }

.v3-band-inner { max-width: 1080px; margin: 0 auto; }

.v3-kicker {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sea);
  font-weight: 650;
}
.v3-kicker-light { color: #8fc4cb; }

.v3-band h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.3vw, 2.45rem);
  letter-spacing: -0.025em;
  color: var(--sea-deep);
  text-wrap: balance;
  line-height: 1.2;
}
/* ink 밴드 헤드는 .v3-band h2 보다 뒤에 두어 sea-deep 덮임을 막음 · 크기는 공통 h2와 동일 */
.v3-band-ink h2 {
  color: #b8e6e2; /* 히어로 Service Hub 톤 */
}
.v3-band-lead {
  margin: 0 0 34px;
  max-width: 40rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* journey */
.v3-journey {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: none;
}
.v3-journey li {
  padding: 0 4px 0 0;
  border-top: 2px solid var(--sea);
  padding-top: 18px;
}
.v3-j-num {
  display: block;
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--sea);
  margin-bottom: 10px;
  font-weight: 650;
}
.v3-journey strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.v3-journey p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
  font-size: .98rem;
}
.v3-journey p br {
  display: block;
  content: "";
}

/* why */
.v3-why {
  display: grid;
  gap: 0;
  margin-bottom: 28px;
}
.v3-why article {
  padding: 22px 0;
  border-top: 1px solid rgba(232,238,242,.14);
}
.v3-why article:last-child { border-bottom: 1px solid rgba(232,238,242,.14); }
.v3-why h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: #f0f7f8;
}
.v3-why p {
  margin: 0;
  max-width: 46rem;
  line-height: 1.6;
  color: rgba(230,238,240,.78);
}

.v3-value-line {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.v3-value-line li {
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
  color: rgba(230,238,240,.88);
}
.v3-value-line li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 8px;
  height: 2px;
  background: #8fc4cb;
}

/* who */
.v3-who {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.v3-who small {
  display: block;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sea);
  font-weight: 650;
  margin-bottom: 8px;
}
.v3-who strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.v3-who p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* can — Model / Template / Prototype */
.v3-band-lead-follow {
  margin-top: -22px;
  margin-bottom: 34px;
}
.v3-layers {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 32px;
}
.v3-layers > li {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 14px;
  border-top: 2px solid var(--sea);
  min-width: 0;
}
.v3-layer-num {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sea);
  margin-bottom: 8px;
}
.v3-layer-role {
  margin: 0 0 8px !important;
  font-size: .88rem !important;
  font-weight: 650;
  color: var(--sea-deep) !important;
  letter-spacing: -0.01em;
  line-height: 1.4 !important;
}
.v3-layer-role-sub {
  font-weight: 550;
  color: var(--ink-soft);
}
.v3-layers h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--sea-deep);
  line-height: 1.3;
}
.v3-layers p {
  margin: 0 0 10px;
  color: var(--ink-soft);
  line-height: 1.55;
  font-size: .98rem;
}
.v3-layer-examples {
  margin-top: 4px !important;
  margin-bottom: 16px !important;
  font-size: .9rem !important;
  color: var(--sea-deep) !important;
  font-weight: 550;
}
.v3-layers .v3-text-link {
  margin-top: auto;
  align-self: flex-start;
}
.v3-layer-guide {
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  max-width: 48rem;
}
.v3-layer-guide-q {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 650;
  color: var(--sea-deep);
  letter-spacing: -0.02em;
}
.v3-layer-guide p {
  margin: 0 0 10px;
  color: var(--ink-soft);
  line-height: 1.55;
  font-size: .98rem;
}
.v3-layer-guide b { color: var(--sea-deep); font-weight: 650; }
.v3-layer-guide-list {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
}
.v3-layer-guide-list li {
  padding: 6px 0;
  color: var(--ink-soft);
  line-height: 1.5;
  font-size: .98rem;
  border-top: 1px solid var(--line);
}
.v3-layer-guide-list li:last-child { border-bottom: 1px solid var(--line); }

.v3-note {
  margin: 0;
  font-size: .95rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 48rem;
}
.v3-note-light { color: rgba(230,238,240,.72); }

/* start */
.v3-start-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: start;
}
.v3-steps {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}
.v3-steps li {
  display: flex;
  gap: 14px;
  align-items: baseline;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 1.02rem;
}
.v3-steps li:last-child { border-bottom: 1px solid var(--line); }
.v3-steps b {
  font-family: var(--font-display);
  color: var(--sea);
  min-width: 2rem;
}
.v3-text-link {
  display: inline-flex;
  margin-top: 6px;
  color: var(--sea-deep);
  font-weight: 650;
  border-bottom: 1px solid rgba(22,55,64,.35);
}
.v3-text-link:hover { border-color: var(--sea-deep); }

.v3-code {
  margin: 0;
  border-radius: 14px;
  background: #10181c;
  color: #d7e8eb;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.v3-code-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #0c1418;
  border-bottom: 1px solid rgba(184, 230, 226, .12);
}
.v3-code-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #3a4a50;
}
.v3-code-bar span:nth-child(1) { background: #e07a5f; }
.v3-code-bar span:nth-child(2) { background: #f2cc8f; }
.v3-code-bar span:nth-child(3) { background: #81b29a; }
.v3-code-bar code {
  margin-left: 8px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11.5px;
  color: #8fc4cb;
  letter-spacing: .02em;
}
.v3-code-body {
  margin: 0;
  padding: 18px 18px 20px;
  overflow: auto;
  font-size: 13px;
  line-height: 1.55;
  color: #d7e8eb;
}
.v3-code-body code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  white-space: pre;
}
.v3-code .tok-kw { color: #c9a0e8; }
.v3-code .tok-str { color: #9ece6a; }
.v3-code .tok-num { color: #f0c674; }
.v3-code .tok-com { color: #6a7a82; font-style: italic; }
.v3-code .tok-fn { color: #7ec8e3; }

/* beginner agent guide */
.v3-band-lead-light { color: rgba(230,238,240,.72); }
.v3-band-lead-follow-ink {
  margin-top: -22px;
  margin-bottom: 34px;
}
.v3-agent-steps {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 36px;
}
.v3-agent-steps > li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-top: 1px solid rgba(232,238,242,.14);
}
.v3-agent-steps > li:nth-child(3),
.v3-agent-steps > li:nth-child(4) {
  border-bottom: 1px solid rgba(232,238,242,.14);
}
.v3-agent-steps b {
  font-family: var(--font-display);
  color: #8fc4cb;
  min-width: 4.5rem;
  font-size: .95rem;
  font-weight: 650;
  letter-spacing: .04em;
  line-height: 1.3;
  flex-shrink: 0;
}
.v3-agent-steps strong {
  display: block;
  margin: 0 0 6px;
  color: #f0f7f8;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
}
.v3-agent-steps p {
  margin: 0;
  color: rgba(230,238,240,.72);
  line-height: 1.5;
  font-size: .95rem;
}
.v3-agent-examples {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}
.v3-agent-examples li {
  position: relative;
  padding: 5px 0 5px 14px;
  color: rgba(230,238,240,.78);
  font-size: .9rem;
  line-height: 1.45;
  border: 0;
}
.v3-agent-examples li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .7em;
  width: 6px;
  height: 1px;
  background: #8fc4cb;
}
.v3-inline-code {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 6px;
  background: rgba(184,230,226,.12);
  color: #b8e6e2;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .88em;
}
.v3-text-link-light {
  color: #b8e6e2 !important;
  border-color: rgba(184,230,226,.4) !important;
  margin-top: 8px;
}
.v3-text-link-light:hover { border-color: #b8e6e2 !important; }
.v3-prompt {
  border-radius: 14px;
  overflow: hidden;
  background: #0c1418;
  border: 1px solid rgba(184,230,226,.16);
  margin-bottom: 18px;
  box-shadow: var(--shadow);
}
.v3-prompt-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  background: #10181c;
  border-bottom: 1px solid rgba(184,230,226,.12);
  color: #8fc4cb;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .04em;
}
.v3-prompt-copy {
  appearance: none;
  border: 1px solid rgba(184,230,226,.35);
  background: transparent;
  color: #b8e6e2;
  border-radius: 999px;
  padding: 5px 12px;
  font: inherit;
  font-size: 12px;
  font-weight: 650;
  cursor: pointer;
}
.v3-prompt-copy:hover,
.v3-prompt-copy.is-done {
  background: rgba(184,230,226,.12);
  border-color: #b8e6e2;
}
.v3-prompt-body {
  margin: 0;
  padding: 18px 18px 20px;
  overflow: auto;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  line-height: 1.55;
  color: #d7e8eb;
  white-space: pre-wrap;
}
.v3-note-light a {
  color: #b8e6e2;
  border-bottom: 1px solid rgba(184,230,226,.35);
}
.v3-agent-steps .v3-text-link-light + .v3-text-link-light {
  margin-left: 14px;
}
.v3-agent-next {
  margin: 0 0 14px;
  padding: 14px 0 0;
  border-top: 1px solid rgba(232,238,242,.14);
  color: rgba(230,238,240,.78);
  line-height: 1.55;
  font-size: .98rem;
  max-width: 44rem;
}

/* closing */
.v3-cta-band {
  padding: clamp(64px, 10vw, 110px) clamp(18px, 4vw, 48px);
  background:
    radial-gradient(700px 280px at 20% 0%, rgba(47,111,122,.16), transparent 60%),
    linear-gradient(180deg, #e8eef1 0%, #eef2f4 100%);
  text-align: center;
}
.v3-cta-band h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  letter-spacing: -0.03em;
  color: var(--sea-deep);
  text-wrap: balance;
  line-height: 1.18;
}
.v3-cta-band p {
  margin: 0 auto 28px;
  max-width: 34rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.v3-cta-band .v3-cta-primary {
  background: var(--sea-deep);
  color: #f4f8f9;
}
.v3-cta-band .v3-cta-primary:hover { background: #0f2c33; }
.v3-cta-band .v3-cta-secondary {
  color: var(--sea-deep);
  border-color: rgba(22,55,64,.28);
  background: rgba(255,255,255,.55);
}

/* foot */

.v3-partners {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  height: var(--partner-bar-h);
  background: rgba(247,249,250,.94);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
}
.v3-partners ul {
  list-style: none;
  margin: 0 auto;
  padding: 0 16px;
  max-width: 1080px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.v3-partners img {
  max-height: 28px;
  width: auto;
  object-fit: contain;
  filter: none;
  opacity: 1;
}
.v3-partners .is-nia img { max-height: 20px; }
.v3-partners .is-gitc img { max-height: 28px; }
.v3-partners .is-gitc img {
  user-select: none;
  -webkit-user-drag: none;
}

/* contact easter egg */
.v3-egg-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(10, 24, 28, .52);
  backdrop-filter: blur(3px);
}
.v3-egg-overlay[hidden] { display: none !important; }
body.v3-egg-open { overflow: hidden; }
.v3-egg-dialog {
  width: min(560px, 100%);
  max-height: min(90vh, 820px);
  overflow: auto;
  background: #f7f9fa;
  border: 1px solid rgba(22, 55, 64, .14);
  border-radius: 16px;
  box-shadow: 0 28px 60px rgba(8, 22, 28, .28);
}
.v3-egg-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px 14px;
  border-bottom: 1px solid rgba(22, 55, 64, .1);
}
.v3-egg-kicker {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--sea-deep);
}
.v3-egg-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ink);
  line-height: 1.25;
}
.v3-egg-close {
  flex: none;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 10px;
  background: rgba(22, 55, 64, .06);
  color: var(--ink);
  font-size: 16px;
  cursor: pointer;
}
.v3-egg-close:hover { background: rgba(22, 55, 64, .12); }
.v3-egg-body { padding: 16px 20px 22px; }
.v3-egg-lead {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.v3-egg-card {
  margin: 0 0 16px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(22, 55, 64, .12);
  background: #fff;
  box-shadow: 0 8px 24px rgba(12, 30, 36, .08);
}
.v3-egg-card img {
  display: block;
  width: 100%;
  height: auto;
}
.v3-egg-meta {
  margin: 0;
  display: grid;
  gap: 10px;
}
.v3-egg-meta > div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 8px;
  align-items: baseline;
  font-size: 13.5px;
  line-height: 1.45;
}
.v3-egg-meta dt {
  margin: 0;
  font-weight: 700;
  color: var(--sea-deep);
}
.v3-egg-meta dd {
  margin: 0;
  color: var(--ink);
}
.v3-egg-meta a {
  color: var(--sea-deep);
  border-bottom: 1px solid rgba(22, 55, 64, .25);
}
.v3-egg-meta a:hover { border-color: currentColor; }

/* reveal motion */
.is-reveal {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition: opacity .7s cubic-bezier(.22,1,.36,1) var(--d, 0s),
              transform .7s cubic-bezier(.22,1,.36,1) var(--d, 0s);
}
.is-reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .v3-journey,
  .v3-who,
  .v3-layers,
  .v3-agent-steps,
  .v3-start-grid {
    grid-template-columns: 1fr;
  }
  .v3-partners ul { justify-content: center; flex-wrap: wrap; gap: 8px 14px; }
  .v3-partners img { max-height: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  .v3-hero-media img,
  .v3-scroll-hint,
  .v3-hero-copy,
  .is-reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
