:root {
  --ink: #0a2238;
  --ink-soft: #3f5565;
  --paper: #f7faf9;
  --white: #ffffff;
  --line: #dce6e5;
  --blue: #1d5d7e;
  --blue-dark: #0b344d;
  --green: #2d806b;
  --green-light: #c8e6dd;
  --mint: #e7f2ee;
  --coral: #e66b5b;
  --sun: #f3c653;
  --sky: #4f91b7;
  --max-width: 1180px;
  --header-height: 82px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img, svg { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
  line-height: 1.12;
}
h1 { font-size: clamp(2.55rem, 5vw, 4.9rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 3.6vw, 3.5rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 1rem;
  top: 1rem;
  padding: .7rem 1rem;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
.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;
}

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(10, 34, 56, .1);
}
.header-inner, .footer-inner, .content-shell {
  width: min(calc(100% - 48px), var(--max-width));
  margin-inline: auto;
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
}
.brand > span:last-child > span { color: var(--green); }
.brand-mark {
  position: relative;
  width: 32px;
  height: 32px;
  border: 2px solid var(--ink);
  border-radius: 50%;
}
.brand-mark::before, .brand-mark::after, .brand-mark span {
  content: "";
  position: absolute;
}
.brand-mark::before { inset: 6px 13px; border-left: 2px solid var(--green); }
.brand-mark::after { left: 4px; right: 4px; top: 14px; border-top: 2px solid var(--ink); }
.brand-mark span { width: 9px; height: 9px; right: -2px; bottom: -2px; background: var(--green); border: 2px solid var(--paper); border-radius: 50%; }
.main-nav { display: flex; align-items: center; gap: 2rem; }
.main-nav a, .back-link {
  position: relative;
  color: var(--ink-soft);
  font-size: .92rem;
  font-weight: 500;
  text-decoration: none;
}
.main-nav a:not(.nav-contact)::after, .back-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -.35rem;
  width: 100%;
  border-bottom: 1px solid var(--green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.main-nav a:hover::after, .main-nav a:focus-visible::after, .back-link:hover::after, .back-link:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-contact {
  padding: .65rem 1rem;
  border: 1px solid rgba(10, 34, 56, .2);
  border-radius: 4px;
  transition: border-color .2s, background .2s;
}
.nav-contact:hover { border-color: var(--green); background: rgba(45, 128, 107, .06); }
.menu-button { display: none; }

.home-header { border-bottom-color: rgba(255,255,255,.25); }
.home-header .brand, .home-header .main-nav a { color: var(--white); }
.home-header .brand > span:last-child > span { color: #92e0c9; }
.home-header .brand-mark { border-color: var(--white); }
.home-header .brand-mark::before { border-color: #92e0c9; }
.home-header .brand-mark::after { border-color: var(--white); }
.home-header .brand-mark span { background: var(--sun); border-color: transparent; }
.home-header .nav-contact { border-color: rgba(255,255,255,.52); background: rgba(7,28,46,.12); }

.hero {
  position: relative;
  min-height: min(840px, 100svh);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(10, 34, 56, .035) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(rgba(10, 34, 56, .035) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--paper);
}
.video-hero { min-height: 92svh; background: #071c2e; border-bottom: 0; }
.video-hero::after { display: none; }
.hero-video { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; }
.hero-video-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,19,31,.9) 0%, rgba(5,19,31,.68) 45%, rgba(5,19,31,.15) 76%, rgba(5,19,31,.2) 100%),
    linear-gradient(0deg, rgba(5,19,31,.55) 0%, transparent 40%, rgba(5,19,31,.2) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  right: -8vw;
  top: 10%;
  width: 55vw;
  height: 55vw;
  max-width: 760px;
  max-height: 760px;
  border: 1px solid rgba(45, 128, 107, .14);
  border-radius: 50%;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  right: 5%;
  top: 18%;
  width: 42vw;
  height: 42vw;
  max-width: 560px;
  max-height: 560px;
  background: radial-gradient(circle, rgba(200, 230, 221, .72) 0%, rgba(231, 242, 238, .22) 52%, transparent 72%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), var(--max-width));
  min-height: 92svh;
  margin-inline: auto;
  padding: calc(var(--header-height) + 64px) 0 82px;
  display: grid;
  grid-template-columns: minmax(0, 730px) 1fr;
  align-items: center;
  gap: 6vw;
}
.hero-copy { max-width: 715px; }
.video-hero .hero-copy { color: var(--white); text-shadow: 0 2px 25px rgba(0,0,0,.2); }
.video-hero .eyebrow { color: var(--sun); }
.video-hero .hero-lead { color: #e2ecef; }
.video-hero .button-primary { background: var(--sun); color: var(--ink); text-shadow: none; }
.video-hero .button-primary:hover { background: #ffda76; }
.video-hero .button-primary span { color: var(--ink); }
.video-hero .button-secondary { border-color: rgba(255,255,255,.55); background: rgba(7,28,46,.22); color: var(--white); text-shadow: none; backdrop-filter: blur(6px); }
.video-hero .button-secondary:hover { border-color: var(--white); background: rgba(255,255,255,.12); }
.eyebrow {
  margin-bottom: 1.35rem;
  color: var(--green);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .15em;
  line-height: 1.3;
  text-transform: uppercase;
}
.hero h1 { margin-bottom: 1.55rem; }
.hero-lead { max-width: 625px; margin-bottom: 2rem; color: var(--ink-soft); font-size: 1.17rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.button {
  min-height: 50px;
  padding: .78rem 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .85rem;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--ink); color: var(--white); }
.button-primary:hover { background: var(--blue-dark); }
.button-primary span { color: #82cbb8; font-size: 1.15rem; }
.button-secondary { border-color: rgba(10, 34, 56, .2); background: rgba(255,255,255,.4); color: var(--ink); }
.button-secondary:hover { border-color: var(--green); background: var(--white); }

.domain-visual { position: relative; height: 440px; }
.address-bar {
  position: absolute;
  z-index: 4;
  top: 45%;
  left: 50%;
  width: min(100%, 420px);
  min-height: 72px;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(10,34,56,.14);
  border-radius: 6px;
  box-shadow: 0 24px 80px rgba(10,34,56,.11);
  backdrop-filter: blur(8px);
  transform: translate(-50%, -50%);
}
.address-lock { position: relative; width: 17px; height: 14px; border: 2px solid var(--green); border-radius: 3px; }
.address-lock::before { content: ""; position: absolute; width: 9px; height: 8px; left: 2px; top: -9px; border: 2px solid var(--green); border-bottom: 0; border-radius: 8px 8px 0 0; }
.address-text { flex: 1; color: var(--ink); font-family: "Segoe UI", Arial, sans-serif; font-size: 1.25rem; font-weight: 600; }
.address-text span { color: var(--green); }
.address-status { width: 9px; height: 9px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 5px rgba(45,128,107,.12); }
.visual-orbit { position: absolute; left: 50%; top: 50%; border: 1px solid rgba(29,93,126,.16); border-radius: 50%; transform: translate(-50%, -50%); }
.orbit-one { width: 340px; height: 340px; }
.orbit-two { width: 440px; height: 440px; border-style: dashed; animation: orbit 38s linear infinite; }
.visual-node { position: absolute; z-index: 3; padding: .42rem .7rem; background: var(--white); border: 1px solid var(--line); border-radius: 3px; color: var(--ink-soft); font-size: .72rem; box-shadow: 0 8px 28px rgba(10,34,56,.06); }
.node-a { top: 14%; left: 10%; }
.node-b { right: 3%; top: 20%; }
.node-c { right: 11%; bottom: 13%; }
.visual-line { position: absolute; z-index: 2; height: 1px; background: linear-gradient(90deg, transparent, var(--green), transparent); transform-origin: left; }
.line-a { width: 125px; left: 20%; top: 31%; transform: rotate(32deg); }
.line-b { width: 115px; right: 20%; bottom: 30%; transform: rotate(145deg); }
.visual-caption { position: absolute; left: 50%; bottom: 2%; margin: 0; color: var(--ink-soft); font-size: .78rem; letter-spacing: .09em; text-transform: uppercase; transform: translateX(-50%); white-space: nowrap; }
.hero-scroll { position: absolute; z-index: 4; left: max(24px, calc((100vw - var(--max-width)) / 2)); bottom: 26px; display: flex; align-items: center; gap: .65rem; color: var(--ink-soft); font-size: .75rem; text-decoration: none; text-transform: uppercase; letter-spacing: .1em; }
.video-hero .hero-scroll { color: var(--white); }
.video-hero .hero-scroll span { border-color: var(--sun); }
.hero-example { position: absolute; z-index: 4; right: max(24px, calc((100vw - var(--max-width)) / 2)); bottom: 24px; margin: 0; display: flex; gap: .7rem; align-items: center; color: var(--white); font-size: .72rem; letter-spacing: .05em; text-transform: uppercase; }
.hero-example span { padding: .38rem .55rem; background: rgba(7,28,46,.5); border: 1px solid rgba(255,255,255,.3); backdrop-filter: blur(5px); }
.hero-example strong { color: var(--sun); }
.video-toggle { position: absolute; z-index: 5; right: 22px; top: calc(var(--header-height) + 20px); width: 42px; height: 42px; display: grid; place-items: center; background: rgba(7,28,46,.48); border: 1px solid rgba(255,255,255,.55); border-radius: 50%; color: var(--white); cursor: pointer; backdrop-filter: blur(5px); }
.video-toggle:hover { background: rgba(7,28,46,.78); }
.hero-scroll span { width: 30px; border-top: 1px solid var(--green); transition: width .25s ease; }
.hero-scroll:hover span { width: 44px; }
@keyframes orbit { to { transform: translate(-50%, -50%) rotate(360deg); } }

.section { padding: 120px 0; }
.section-heading { max-width: 650px; }
.section-heading h2 { margin-bottom: 1.2rem; }
.section-heading > p:last-child { max-width: 570px; color: var(--ink-soft); font-size: 1.08rem; }
.section-intro { background: var(--white); }
.benefit-list { margin-top: 72px; border-top: 1px solid var(--line); }
.benefit { min-height: 155px; padding: 2.1rem 0; display: grid; grid-template-columns: 120px minmax(0, 1fr); align-items: start; border-bottom: 1px solid var(--line); }
.benefit-number { width: 40px; height: 40px; display: grid; place-items: center; color: var(--ink); background: var(--sun); border-radius: 50%; font-family: "Segoe UI", Arial, sans-serif; font-size: .72rem; font-weight: 700; }
.benefit:nth-child(2) .benefit-number { background: #9ed9c8; }
.benefit:nth-child(3) .benefit-number { background: #f2a39a; }
.benefit > div { display: grid; grid-template-columns: minmax(220px, .55fr) minmax(300px, 1fr); gap: 2rem; }
.benefit h3 { margin: 0; font-size: 1.55rem; }
.benefit p { max-width: 520px; margin: 0; color: var(--ink-soft); }

.emd-section { overflow: hidden; background: #eaf4f8; }
.emd-layout { display: grid; grid-template-columns: minmax(0, .82fr) minmax(470px, 1.18fr); gap: 7vw; align-items: center; }
.emd-copy h2 { max-width: 540px; margin-bottom: 1.4rem; }
.emd-lead { max-width: 585px; color: var(--ink-soft); font-size: 1.08rem; }
.emd-points { margin: 2.1rem 0; border-top: 1px solid rgba(10,34,56,.17); }
.emd-points > div { padding: 1rem 0; display: grid; grid-template-columns: 42px 1fr; gap: .4rem; border-bottom: 1px solid rgba(10,34,56,.17); }
.emd-points span { padding-top: .15rem; color: var(--green); font-size: .72rem; font-weight: 600; }
.emd-points p { margin: 0; color: var(--ink-soft); font-size: .92rem; }
.emd-points strong { display: block; margin-bottom: .12rem; color: var(--ink); font-size: 1rem; }
.ai-clarity-note { margin: 2rem 0 1.25rem; padding: 1.25rem; display: grid; grid-template-columns: 46px 1fr; gap: 1rem; background: var(--white); border-top: 4px solid var(--sky); box-shadow: 0 14px 35px rgba(10,34,56,.08); }
.ai-clarity-note > span { width: 42px; height: 42px; display: grid; place-items: center; background: var(--ink); color: var(--sun); border-radius: 50%; font-size: .72rem; font-weight: 700; }
.ai-clarity-note h3 { margin: 0 0 .45rem; font-size: 1rem; }
.ai-clarity-note p { margin: 0; color: var(--ink-soft); font-size: .85rem; }
.emd-caveat { margin: 0; padding-left: 1rem; border-left: 2px solid var(--green); color: var(--ink-soft); font-size: .82rem; }
.emd-graphic { margin: 0; }
.word-build { position: relative; min-height: 520px; padding: 46px; display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 13px; align-items: start; background: var(--ink); box-shadow: 0 30px 80px rgba(10,34,56,.18); }
.word-build::before { content: ""; position: absolute; right: -60px; top: -60px; width: 190px; height: 190px; border: 38px solid var(--coral); border-radius: 50%; opacity: .9; }
.word-tile { position: relative; z-index: 1; min-height: 116px; padding: 1rem; display: flex; flex-direction: column; justify-content: space-between; color: var(--ink); }
.word-tile span { font-size: .69rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.word-tile strong { font-size: 1.1rem; }
.tile-service { background: var(--sun); }
.tile-place { margin-top: 52px; background: #99d9c7; }
.tile-ending { margin-top: 104px; background: #f29b90; }
.build-plus { position: relative; z-index: 1; margin-top: 47px; color: var(--white); font-size: 1.3rem; }
.domain-result { position: absolute; z-index: 2; left: 46px; right: 46px; bottom: 46px; padding: 1.25rem 1.4rem; background: var(--white); border-left: 7px solid var(--sky); }
.domain-result span { display: block; margin-bottom: .25rem; color: var(--ink-soft); font-size: .72rem; }
.domain-result strong { color: var(--ink); font-size: clamp(1.55rem, 3vw, 2.35rem); }
.emd-graphic figcaption { max-width: 610px; margin-top: 1rem; color: var(--ink-soft); font-size: .78rem; }

.process-section { position: relative; overflow: hidden; background: var(--ink); color: var(--white); }
.process-section::before { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, transparent 50%, rgba(45,128,107,.12) 50%); pointer-events: none; }
.process-section .content-shell { position: relative; z-index: 1; }
.light-heading .eyebrow { color: #82cbb8; }
.light-heading > p:last-child { color: #b4c3cc; }
.process-list { margin: 70px 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.17); }
.process-list li { min-height: 154px; padding: 2rem 0; display: grid; grid-template-columns: 120px minmax(0, 1fr); border-bottom: 1px solid rgba(255,255,255,.17); }
.step-number { color: #82cbb8; font-size: .8rem; font-weight: 600; }
.process-list li > div { display: grid; grid-template-columns: minmax(220px, .55fr) minmax(300px, 1fr); gap: 2rem; }
.process-list h3 { margin: 0; font-size: 1.55rem; }
.process-list p { max-width: 520px; margin: 0; color: #c6d1d7; }
.invoice-note { margin-top: 46px; padding: 1.3rem 1.5rem; display: flex; align-items: flex-start; gap: 1rem; background: rgba(255,255,255,.07); border-left: 2px solid #82cbb8; }
.invoice-note p { max-width: 900px; margin: 0; color: #e4ebee; }
.note-icon { flex: 0 0 24px; width: 24px; height: 24px; display: grid; place-items: center; border: 1px solid #82cbb8; border-radius: 50%; color: #82cbb8; font-size: .75rem; }
.purchase-intro { margin-top: 64px; }
.purchase-intro .eyebrow { margin-bottom: .7rem; color: #82cbb8; }
.purchase-intro h3 { margin: 0 0 1.5rem; color: var(--white); font-size: 1.6rem; }
.purchase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.16); }
.purchase-route { min-height: 340px; padding: 2rem; display: flex; flex-direction: column; background: #0d2a40; }
.purchase-route:nth-child(2) { background: #11334a; }
.purchase-route:nth-child(3) { background: #17394d; }
.route-kicker { margin-bottom: 2.4rem; color: #82cbb8; font-size: .7rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.purchase-route h3 { margin-bottom: 1.25rem; color: var(--white); font-size: 1.55rem; }
.purchase-route h3 span { color: var(--sun); }
.purchase-route p:not(.route-kicker) { margin-bottom: 1.5rem; color: #c6d1d7; font-size: .9rem; }
.purchase-route > a { width: fit-content; margin-top: auto; color: var(--white); font-size: .82rem; font-weight: 600; text-underline-offset: 5px; }
.purchase-route > a span { color: var(--sun); }
.route-marketplace { border-top: 4px solid var(--sun); }
.route-escrow { border-top: 4px solid #9ed9c8; }
.route-invoice { border-top: 4px solid #f29b90; }
.platform-note { margin-top: 28px; }

.uses-section { background: var(--paper); }
.uses-layout { display: grid; grid-template-columns: minmax(0, .8fr) minmax(420px, 1fr); gap: 10vw; align-items: start; }
.uses-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.uses-list li { padding: 1.25rem 0; display: flex; gap: 1.2rem; align-items: center; border-bottom: 1px solid var(--line); font-family: "Segoe UI", Arial, sans-serif; font-size: 1.15rem; font-weight: 600; }
.uses-list span { width: 30px; height: 30px; display: grid; place-items: center; background: var(--coral); color: var(--white); border-radius: 50%; font-size: .65rem; }
.uses-list li:nth-child(2) span { background: var(--sky); }
.uses-list li:nth-child(3) span { background: var(--green); }
.uses-list li:nth-child(4) span { background: #c39525; }
.quiet-note { margin: 2rem 0 0; padding-left: 1.25rem; border-left: 2px solid var(--green-light); color: var(--ink-soft); font-size: .92rem; }

.about-section { padding: 0; background: var(--white); }
.about-layout { min-height: 600px; display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 9vw; }
.about-symbol { position: relative; width: min(100%, 390px); aspect-ratio: 1; display: grid; place-items: center; background: var(--mint); overflow: hidden; }
.about-symbol::before, .about-symbol::after { content: ""; position: absolute; border: 1px solid rgba(45,128,107,.25); border-radius: 50%; }
.about-symbol::before { inset: 11%; }
.about-symbol::after { inset: 27%; }
.symbol-d { z-index: 1; color: var(--ink); font-family: "Segoe UI", Arial, sans-serif; font-size: clamp(6rem, 13vw, 10rem); font-weight: 600; line-height: 1; }
.symbol-dot { position: absolute; z-index: 2; width: 22px; height: 22px; right: 22%; bottom: 22%; background: var(--green); border: 5px solid var(--mint); border-radius: 50%; }
.about-copy { max-width: 630px; padding: 110px 0; }
.about-copy h2 { margin-bottom: 1.7rem; }
.about-copy p { color: var(--ink-soft); }
.about-copy .about-lead { color: var(--ink); font-size: 1.15rem; }

.contact-section { padding: 120px 0; background: #f7d8d3; }
.contact-layout { display: grid; grid-template-columns: 1fr .78fr; gap: 9vw; }
.contact-copy h2 { max-width: 660px; margin-bottom: 1.4rem; }
.contact-copy > p:not(.eyebrow) { max-width: 620px; margin-bottom: 2rem; color: var(--ink-soft); font-size: 1.07rem; }
.company-details { border-top: 1px solid rgba(10,34,56,.18); font-style: normal; }
.company-details div { padding: 1rem 0; display: grid; grid-template-columns: 145px 1fr; border-bottom: 1px solid rgba(10,34,56,.18); }
.company-details span { color: var(--ink-soft); font-size: .84rem; }
.company-details strong, .company-details a { font-size: .93rem; font-weight: 600; text-decoration: none; }
.company-details a:hover { color: var(--green); }

.site-footer { padding: 52px 0; background: #071c2e; color: #c9d4d9; }
.footer-inner { display: grid; grid-template-columns: .8fr 1.2fr auto; gap: 3rem; align-items: end; }
.footer-brand { color: var(--white); align-self: start; }
.footer-brand .brand-mark { border-color: var(--white); }
.footer-brand .brand-mark span { border-color: #071c2e; }
.footer-brand .brand-mark::after { border-color: var(--white); }
.site-footer p { margin: 0; font-size: .78rem; }
.site-footer nav { display: flex; gap: 1.6rem; }
.site-footer nav a { color: #c9d4d9; font-size: .78rem; text-underline-offset: 4px; }
.site-footer nav a:hover { color: var(--white); }

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
.benefit:nth-child(2), .process-list li:nth-child(2) { transition-delay: .08s; }
.benefit:nth-child(3), .process-list li:nth-child(3) { transition-delay: .16s; }

.policy-main { min-height: 80vh; padding: calc(var(--header-height) + 90px) 0 120px; background: var(--white); }
.policy-wrap { width: min(calc(100% - 48px), 960px); margin-inline: auto; display: grid; grid-template-columns: 310px 1fr; gap: 7vw; }
.policy-intro { position: sticky; top: 40px; align-self: start; }
.policy-intro h1 { margin-bottom: 1.2rem; font-size: clamp(2.4rem, 5vw, 4rem); }
.policy-intro > p:not(.eyebrow):not(.updated) { color: var(--ink-soft); }
.policy-intro .updated { margin-top: 2rem; color: var(--ink-soft); font-size: .76rem; }
.policy-content section { padding: 0 0 2rem; margin-bottom: 2rem; border-bottom: 1px solid var(--line); }
.policy-content section:last-child { margin-bottom: 0; }
.policy-content h2 { margin-bottom: 1rem; font-size: 1.45rem; }
.policy-content p { color: var(--ink-soft); }
.policy-content p:last-child { margin-bottom: 0; }
.policy-content a { color: var(--blue); text-underline-offset: 3px; }

:focus-visible { outline: 3px solid #62bda6; outline-offset: 4px; }

@media (max-width: 900px) {
  :root { --header-height: 72px; }
  .main-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    height: calc(100svh - var(--header-height));
    padding: 2rem 24px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-top: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform .28s ease;
  }
  .home-header .main-nav { background: var(--paper); }
  .home-header .main-nav a { color: var(--ink-soft); }
  .home-header .main-nav .nav-contact { background: transparent; border-color: rgba(10,34,56,.2); }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav a { padding: 1rem 0; border-bottom: 1px solid var(--line); font-size: 1.15rem; }
  .main-nav .nav-contact { margin-top: 1rem; padding: .9rem 1rem; text-align: center; }
  .menu-button { width: 44px; height: 44px; padding: 0; display: grid; place-content: center; gap: 7px; background: transparent; border: 0; }
  .menu-button span[aria-hidden] { width: 24px; border-top: 2px solid var(--ink); transition: transform .2s; }
  .home-header .menu-button span[aria-hidden] { border-color: var(--white); }
  .home-header .menu-button[aria-expanded="true"] span[aria-hidden] { border-color: var(--ink); }
  .menu-button[aria-expanded="true"] span[aria-hidden]:first-of-type { transform: translateY(4.5px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span[aria-hidden]:last-of-type { transform: translateY(-4.5px) rotate(-45deg); }
  .hero-inner { grid-template-columns: 1fr; gap: 0; padding-top: calc(var(--header-height) + 60px); }
  .hero-copy { max-width: 750px; }
  .domain-visual { position: absolute; z-index: -1; right: -145px; bottom: -115px; width: 500px; opacity: .43; }
  .hero-video { object-position: 56% center; }
  .hero-video-shade { background: linear-gradient(90deg, rgba(5,19,31,.88) 0%, rgba(5,19,31,.62) 70%, rgba(5,19,31,.22) 100%), linear-gradient(0deg, rgba(5,19,31,.6), transparent 55%); }
  .hero-example { display: none; }
  .hero::after { right: -20vw; top: auto; bottom: -16vw; width: 70vw; height: 70vw; }
  .emd-layout, .uses-layout, .contact-layout { grid-template-columns: 1fr; gap: 4rem; }
  .purchase-grid { grid-template-columns: 1fr; }
  .purchase-route { min-height: 0; }
  .emd-copy { max-width: 680px; }
  .emd-graphic { width: min(100%, 760px); }
  .about-layout { grid-template-columns: .7fr 1.3fr; gap: 7vw; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner nav { grid-column: 2; }
  .policy-wrap { grid-template-columns: 1fr; gap: 4rem; }
  .policy-intro { position: static; max-width: 610px; }
}

@media (max-width: 640px) {
  .header-inner, .footer-inner, .content-shell, .hero-inner, .policy-wrap { width: min(calc(100% - 32px), var(--max-width)); }
  h1 { font-size: 2.55rem; }
  h2 { font-size: 2.05rem; }
  .hero { min-height: 740px; }
  .video-hero { min-height: 760px; }
  .hero-inner { min-height: 740px; padding-bottom: 78px; align-items: start; }
  .video-hero .hero-inner { min-height: 760px; }
  .hero-copy { padding-top: 42px; }
  .hero-lead { font-size: 1.04rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .domain-visual { right: -205px; bottom: -160px; transform: scale(.78); }
  .hero-video { object-position: 59% center; }
  .hero-video-shade { background: linear-gradient(90deg, rgba(5,19,31,.9), rgba(5,19,31,.55)), linear-gradient(0deg, rgba(5,19,31,.7), transparent 65%); }
  .hero-scroll { left: 16px; bottom: 20px; }
  .section { padding: 82px 0; }
  .benefit-list, .process-list { margin-top: 48px; }
  .benefit, .process-list li { min-height: 0; grid-template-columns: 45px 1fr; }
  .benefit > div, .process-list li > div { grid-template-columns: 1fr; gap: .7rem; }
  .benefit h3, .process-list h3 { font-size: 1.3rem; }
  .emd-layout { gap: 3rem; }
  .ai-clarity-note { grid-template-columns: 38px 1fr; padding: 1rem; }
  .ai-clarity-note > span { width: 36px; height: 36px; }
  .word-build { width: calc(100% + 32px); min-height: 460px; margin-left: -16px; padding: 28px 22px; gap: 7px; }
  .word-build::before { right: -85px; top: -85px; }
  .word-tile { min-height: 102px; padding: .7rem; }
  .word-tile strong { font-size: .9rem; }
  .tile-place { margin-top: 42px; }
  .tile-ending { margin-top: 84px; }
  .build-plus { margin-top: 36px; font-size: 1rem; }
  .domain-result { left: 22px; right: 22px; bottom: 28px; }
  .uses-layout { gap: 2.8rem; }
  .uses-list li { font-size: 1rem; }
  .about-layout { min-height: 0; padding: 82px 0; grid-template-columns: 1fr; gap: 3rem; }
  .about-symbol { width: 210px; }
  .about-copy { padding: 0; }
  .contact-section { padding: 82px 0; }
  .contact-layout { gap: 3.2rem; }
  .company-details div { grid-template-columns: 1fr; gap: .2rem; }
  .site-footer { padding: 44px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.8rem; align-items: start; }
  .footer-inner nav { grid-column: auto; }
  .policy-main { padding-top: calc(var(--header-height) + 58px); padding-bottom: 80px; }
  .back-link { font-size: .82rem; }
}

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