:root {
  --ink: #2c211b;
  --espresso: #34251e;
  --espresso-deep: #211713;
  --muted: #75675e;
  --paper: #f4eee5;
  --paper-soft: #fbf7f0;
  --paper-deep: #e8dccb;
  --card: #fffaf3;
  --accent: #a94f32;
  --accent-dark: #7e3825;
  --accent-soft: #d9a58b;
  --green: #526c5b;
  --gold: #d59b39;
  --line: rgba(61, 44, 34, .16);
  --shadow: 0 28px 80px rgba(65, 47, 35, .17);
  --serif: Georgia, "Times New Roman", serif;
  --display-sans: Inter, "Avenir Next", Avenir, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 90% 6%, rgba(213, 155, 57, .15), transparent 27%),
    radial-gradient(circle at 3% 58%, rgba(169, 79, 50, .08), transparent 25%),
    var(--paper-soft);
  font-family: var(--display-sans);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img { display: block; max-width: 100%; height: auto; }

.metadata-campaign { --persona-halo: #b7a454; }
.theme-3d { --persona-halo: #4d9fb2; }
.theme-content { --persona-halo: #e686b8; }

.audience-hero-grid,
.metadata-hero-grid { position: relative; }
.persona-lockup {
  position: absolute;
  right: -74px;
  bottom: -132px;
  z-index: 6;
  display: block;
  width: min(330px, 28vw);
  margin: 0;
  color: #fff6e7;
  pointer-events: none;
}
.persona-lockup::before {
  content: "";
  position: absolute;
  right: 8%;
  top: 12%;
  z-index: 0;
  width: 76%;
  aspect-ratio: 1;
  border-radius: 50% 50% 12% 50%;
  background: color-mix(in srgb, var(--persona-halo, #e2b969) 54%, transparent);
  box-shadow: 0 0 58px color-mix(in srgb, var(--persona-halo, #e2b969) 20%, transparent);
  transform: rotate(12deg);
}
.persona-lockup > img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 28px 28px rgba(0,0,0,.32));
}
.persona-lockup-copy {
  position: absolute;
  left: -150px;
  bottom: 54px;
  z-index: 3;
  display: flex;
  width: 255px;
  padding: 15px 17px;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 15px;
  background: rgba(24,25,26,.62);
  box-shadow: 0 18px 42px rgba(0,0,0,.24);
  backdrop-filter: blur(16px) saturate(125%);
}
.persona-lockup-label {
  margin-bottom: 5px;
  color: rgba(255,246,231,.62);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.persona-lockup strong {
  color: #fff6e7;
  font: 700 18px/1.15 var(--serif);
}
.persona-lockup q {
  margin-top: 8px;
  color: rgba(240,244,239,.82);
  font-size: 12px;
  font-style: normal;
  line-height: 1.48;
}
.persona-lockup q::before,
.persona-lockup q::after { content: none; }

@media (max-width: 620px) {
  .persona-lockup {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(260px, 72vw);
    margin: 22px auto -42px;
  }
  .persona-lockup-copy { left: -36px; bottom: 18px; width: 205px; padding: 12px 13px; }
  .persona-lockup strong { font-size: 16px; }
  .persona-lockup q { font-size: 11px; }
}

@media (max-width: 900px) and (min-width: 621px) {
  .persona-lockup {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(320px, 68vw);
    margin: 24px auto -54px;
  }
}
::selection { color: white; background: var(--accent); }

.skip-link {
  position: fixed;
  left: 20px;
  top: -70px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 9px;
  color: white;
  background: var(--ink);
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }
:focus-visible { outline: 3px solid rgba(169, 79, 50, .46); outline-offset: 3px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(222, 213, 203, .78);
  background: rgba(250, 246, 239, .86);
  backdrop-filter: blur(20px) saturate(135%);
}
.site-header.scrolled { box-shadow: 0 10px 35px rgba(65, 47, 35, .08); }
.header-inner {
  width: min(1280px, calc(100% - 48px));
  min-height: 72px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.brand {
  display: inline-grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 10px;
  row-gap: 3px;
  width: fit-content;
  font: 700 20px/1 var(--serif);
}
.brand img {
  grid-column: 1;
  grid-row: 1 / span 2;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(65, 47, 35, .13);
}
.brand > span { grid-column: 2; grid-row: 1; align-self: end; }
.brand::after {
  content: "Visual File Library";
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  color: var(--muted);
  font-family: "Avenir Next Condensed", "HelveticaNeue-CondensedBold", "Arial Narrow", var(--display-sans);
  font-size: 9px;
  font-stretch: condensed;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.brand-icon { display: inline-flex; align-items: center; }
.brand-icon img { width: 38px; height: 38px; }
.brand-icon i { display: none; }
.site-header nav { display: flex; gap: 27px; }
.site-header nav a { position: relative; color: var(--muted); font-size: 14px; font-weight: 750; }
.site-header nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--accent); transition: right .22s ease; }
.site-header nav a:hover { color: var(--ink); }
.site-header nav a:hover::after { right: 0; }
.site-language { justify-self: end; display: flex; padding: 3px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.45); }
.site-language button { border: 0; border-radius: 999px; padding: 7px 11px; color: var(--muted); background: transparent; font-size: 13px; font-weight: 850; cursor: pointer; }
.site-language button.active { color: white; background: var(--ink); }

.eyebrow { color: var(--accent-dark); font-size: clamp(12px, .75vw, 14px); font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.line-label { display: flex; align-items: center; gap: 10px; }
.line-label::before { content: ""; width: 30px; height: 2px; flex: 0 0 auto; background: var(--accent); }
em { color: var(--accent); font-weight: 500; }

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  min-height: 760px;
  margin: auto;
  padding: 74px max(32px, calc((100% - 1320px) / 2)) 78px;
  color: #fff3dc;
  background:
    linear-gradient(90deg, rgba(3, 32, 27, .9) 0%, rgba(3, 30, 26, .78) 34%, rgba(3, 24, 22, .5) 67%, rgba(2, 19, 18, .64) 100%),
    linear-gradient(180deg, rgba(2, 20, 18, .08) 0%, rgba(2, 22, 19, .24) 54%, rgba(2, 19, 17, .68) 100%),
    url("assets/hero-jungle-sunset-2026-08-06.webp") center 50% / cover no-repeat,
    #06251f;
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
  display: flex;
  gap: 30px;
  align-items: center;
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .19;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0,0,0,.55) 47%, transparent 76%);
}
.hero-copy { position: relative; z-index: 4; flex: 0 0 590px; width: 590px; min-width: 590px; max-width: 590px; }
.hero-lockup {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-bottom: 38px;
  color: #fff5e1;
}
.hero-lockup img {
  flex: 0 0 auto;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(0,0,0,.24);
}
.hero-lockup span { font: 600 clamp(39px, 4vw, 61px)/1 var(--serif); letter-spacing: -.035em; }
.hero h1 {
  position: relative;
  z-index: 5;
  margin: 0 0 18px;
  color: #fff3dc;
  font: 900 clamp(42px, 3.9vw, 58px)/1.02 var(--display-sans);
  letter-spacing: .012em;
  -webkit-text-stroke: 1.35px rgba(3, 27, 22, .94);
  paint-order: stroke fill;
  text-shadow:
    0 2px 2px rgba(2, 18, 15, .76),
    0 0 12px rgba(2, 18, 15, .7),
    0 9px 28px rgba(2, 18, 15, .5);
  text-transform: uppercase;
}
.hero h1 span { display: block; white-space: nowrap; }
.hero-collection-claim {
  max-width: 590px;
  margin: 0 0 19px;
  color: #fff3dc;
  font: 600 clamp(24px, 2.15vw, 32px)/1.2 var(--serif);
  letter-spacing: -.025em;
}
.hero-collection-claim strong { font-weight: 700; }
.hero-collection-claim em { color: #f3dba9; font-style: italic; font-weight: 700; }
.hero-lead { max-width: 590px; margin: 0; color: #d8e4dd; font-size: 16px; line-height: 1.58; }
.hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 23px 0 0;
  color: #fff1d7;
  font-size: 13px;
  font-weight: 760;
}
.hero-assurance::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-top: -2px;
  border: 1px solid rgba(255,241,215,.5);
  border-radius: 50%;
  color: #063128;
  background: #e9d3a7;
  font-size: 12px;
}
.hero-assurance span + span::before { content: "·"; margin-right: 20px; color: #82b5a3; }
.hero-actions { display: flex; gap: 12px; margin-top: 27px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 22px; border: 1px solid var(--line); border-radius: 12px; font-size: 14px; font-weight: 820; transition: transform .2s ease, color .2s ease, background .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { color: white; border-color: var(--ink); background: var(--ink); box-shadow: 0 12px 28px rgba(41, 35, 31, .17); }
.button.primary:hover { border-color: var(--accent); background: var(--accent); }
.button.secondary { background: rgba(255, 253, 249, .68); }
.button.secondary:hover { border-color: var(--accent-soft); background: var(--card); }
.hero .button.primary {
  color: #0a3028;
  border-color: #f2ddb4;
  background: #f2ddb4;
  box-shadow: 0 14px 34px rgba(0,0,0,.24);
}
.hero .button.primary:hover { color: #06251f; border-color: #fff1d4; background: #fff1d4; }
.hero-testflight-link { display: grid; grid-template-columns: minmax(0, 1fr) auto; grid-template-areas: "title arrow" "detail arrow"; column-gap: 13px; row-gap: 2px; min-height: 66px; padding-block: 10px; text-align: left; }
.hero-testflight-title { grid-area: title; }
.hero-testflight-link small { grid-area: detail; max-width: 330px; color: rgba(6,49,40,.72); font-size: 10px; font-weight: 760; line-height: 1.35; }
.hero-testflight-link::after { content: "↗"; grid-area: arrow; align-self: center; font-size: 16px; }
.hero .button.secondary { color: #fff1d7; border-color: rgba(255,241,215,.34); background: rgba(255,255,255,.06); }
.hero .button.secondary:hover { border-color: rgba(255,241,215,.65); background: rgba(255,255,255,.12); }
.hero-trust { display: none; }
.hero .platform-note { display: flex; align-items: center; gap: 8px; margin: 15px 0 0; color: #9eb8ae; font-size: 12px; }
.hero .platform-note > span:first-child { width: 7px; height: 7px; border-radius: 50%; background: #6ed0b6; box-shadow: 0 0 0 5px rgba(110, 208, 182, .1); }

.hero-product {
  position: relative;
  z-index: 2;
  flex: 0 0 760px;
  width: 760px;
  max-width: none;
  margin: 30px -120px 0 0;
}
.hero-window {
  overflow: visible;
}
.hero-window-bar {
  display: none;
}
.hero-window-bar > span { width: 10px; height: 10px; border-radius: 50%; background: #63c16c; }
.hero-window-bar > span:first-child { background: #ef6853; }
.hero-window-bar > span:nth-child(2) { background: #efc44e; }
.hero-window-bar strong { margin-left: 7px; font: 700 14px/1 var(--serif); }
.hero-window-bar small { margin-left: auto; color: #9db8ae; font-size: 11px; font-weight: 730; }
.hero-media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.hero-media-tile {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  aspect-ratio: 1 / 1.06;
  padding: 0;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  background: #112b27;
  box-shadow: 0 10px 26px rgba(0,0,0,.17);
  cursor: zoom-in;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.hero-media-tile::after {
  content: "";
  position: absolute;
  inset: 46% 0 0;
  z-index: 1;
  background: linear-gradient(transparent, rgba(2,17,14,.88));
  pointer-events: none;
}
.hero-media-tile:hover, .hero-media-tile:focus-visible {
  z-index: 3;
  border-color: rgba(255,241,215,.72);
  box-shadow: 0 17px 34px rgba(0,0,0,.3);
  transform: translateY(-4px);
}
.hero-media-tile img { width: 100%; height: 100% !important; object-fit: cover; filter: saturate(.86) contrast(.98); transform: scale(1.12); }
.hero-media-tile > span:not(.ai-scan-effect) {
  position: absolute;
  z-index: 2;
  left: 10px;
  bottom: 9px;
  max-width: calc(100% - 20px);
  overflow: hidden;
  color: #fff3dc;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .055em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}
.tile-photos img { object-position: 73% 37%; }
.tile-timeline img { object-position: 50% 46%; }
.tile-documents img { object-position: 20% 28%; }
.tile-models img { object-position: 64% 37%; }
.tile-blend img { object-position: 70% 35%; }
.tile-formats img { object-position: 32% 48%; }
.screenshot-button { position: relative; overflow: hidden; display: block; width: 100%; padding: 0; border: 0; border-radius: 18px; background: transparent; cursor: zoom-in; }
.screenshot-button img { width: 100%; height: auto !important; object-fit: contain; }
.position-visual { border: 1px solid rgba(103, 80, 61, .22); background: #eee6dc; box-shadow: var(--shadow); transition: transform .3s ease, box-shadow .3s ease; }
.window-bar { height: 29px; display: flex; align-items: center; gap: 6px; padding: 0 11px; color: #73665d; background: rgba(250,247,241,.98); border-bottom: 1px solid rgba(72,50,38,.12); }
.window-bar i { display: block; width: 7px; height: 7px; border-radius: 50%; background: #cbbfb2; }
.window-bar i:first-child { background: #bd6a4e; }
.window-bar i:nth-child(2) { background: #d9a447; }
.window-bar b { margin-left: 8px; font-size: 12px; font-weight: 680; letter-spacing: .02em; }
.zoom-hint { position: absolute; right: 18px; bottom: 17px; padding: 9px 13px; border: 1px solid rgba(255,255,255,.65); border-radius: 999px; color: white; background: rgba(41, 35, 31, .72); backdrop-filter: blur(10px); font-size: 12px; font-weight: 800; opacity: 0; transform: translateY(5px); transition: opacity .2s ease, transform .2s ease; }
.screenshot-button:hover .zoom-hint, .screenshot-button:focus-visible .zoom-hint { opacity: 1; transform: translateY(0); }
.hero-product figcaption { margin: 15px 40px 0; color: #a9c1b7; font-size: 12px; text-align: center; }
.hero-product figcaption strong { color: #fff1d7; }

.trust-strip { display: flex; justify-content: center; gap: clamp(20px, 3vw, 44px); padding: 25px 30px; border-block: 1px solid var(--line); color: var(--muted); background: rgba(255,255,255,.28); font-size: clamp(12px, .72vw, 13px); font-weight: 850; letter-spacing: .055em; text-transform: uppercase; }
.trust-strip span::before { content: "✓"; margin-right: 8px; color: var(--green); }

.mobile-beta-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: min(1180px, calc(100% - 48px));
  margin: 92px auto 112px;
  padding: 68px 78px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 390px);
  gap: clamp(58px, 7vw, 104px);
  align-items: center;
  scroll-margin-top: 90px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 30px;
  color: #f8f2e8;
  background:
    radial-gradient(circle at 86% 12%, rgba(213,155,57,.22), transparent 31%),
    radial-gradient(circle at 9% 85%, rgba(98,178,150,.18), transparent 34%),
    linear-gradient(130deg, rgba(10,62,51,.8) 0%, rgba(5,42,35,.78) 55%, rgba(19,27,22,.7) 100%),
    url("assets/mobile-beta-moss-background.webp") center 48% / cover no-repeat,
    #092b26;
  box-shadow: 0 32px 82px rgba(37,55,48,.23);
}
.mobile-beta-section::before {
  content: "";
  position: absolute;
  right: -150px;
  top: -180px;
  z-index: -1;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  box-shadow: 0 0 0 68px rgba(255,255,255,.018), 0 0 0 136px rgba(255,255,255,.012);
}
.mobile-beta-section .eyebrow { color: #efc66f; }
.mobile-beta-section .line-label::before { background: #efc66f; }
.mobile-beta-copy h2 {
  max-width: 700px;
  margin: 17px 0 23px;
  color: #fff8eb;
  font: 820 clamp(43px, 5vw, 68px)/.98 var(--display-sans);
  letter-spacing: -.045em;
}
.mobile-beta-copy > p { max-width: 680px; margin: 0; color: #cfddd7; font-size: 16px; line-height: 1.7; }
.mobile-beta-signals { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 25px; }
.mobile-beta-signals span { padding: 9px 12px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; color: #f7eee0; background: rgba(255,255,255,.07); font-size: 12px; font-weight: 820; }
.mobile-beta-signals span::before { content: "✓"; margin-right: 7px; color: #efc66f; }
.mobile-testflight-link {
  display: grid;
  width: min(100%, 470px);
  min-height: 92px;
  margin-top: 30px;
  padding: 19px 22px;
  align-content: center;
  gap: 5px;
  border: 1px solid rgba(255,255,255,.52);
  border-radius: 15px;
  color: #12382f;
  background: linear-gradient(120deg, #fffdf8, #f4dda7 55%, #86d3b8);
  box-shadow: 0 20px 40px rgba(0,0,0,.22);
  transition: transform .2s ease, box-shadow .2s ease;
}
.mobile-testflight-link:hover, .mobile-testflight-link:focus-visible { transform: translateY(-3px); box-shadow: 0 26px 48px rgba(0,0,0,.3); }
.mobile-testflight-link > span { font-size: 18px; font-weight: 920; }
.mobile-testflight-link > span::after { content: "↗"; margin-left: 9px; }
.mobile-testflight-link small { color: rgba(18,56,47,.74); font-size: 11px; font-weight: 820; }
.mobile-beta-copy .mobile-beta-note { margin-top: 14px; color: #aebfba; font-size: 11px; line-height: 1.55; }
.mobile-beta-shot {
  position: relative;
  justify-self: center;
  width: min(100%, 338px);
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 36px;
  color: inherit;
  background: #050706;
  box-shadow: 0 36px 70px rgba(0,0,0,.44), 0 0 0 8px rgba(255,255,255,.035);
  cursor: zoom-in;
  transform: rotate(1.2deg);
  transition: transform .25s ease, box-shadow .25s ease;
}
.mobile-beta-shot:hover, .mobile-beta-shot:focus-visible { transform: rotate(0) translateY(-4px); box-shadow: 0 42px 78px rgba(0,0,0,.5), 0 0 0 8px rgba(255,255,255,.055); }
.mobile-beta-shot img { width: 100%; border-radius: 27px; }
.mobile-shot-caption {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 13px;
  text-align: left;
  background: rgba(7,20,17,.78);
  backdrop-filter: blur(13px) saturate(125%);
}
.mobile-shot-caption small { color: #efc66f; font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.mobile-shot-caption strong { color: #fff8eb; font: 700 17px/1.2 var(--serif); }

.promise-band { position: relative; overflow: hidden; color: var(--paper-soft); background: linear-gradient(115deg, #382820, #211713); }
.promise-band::after { content: ""; position: absolute; right: -120px; top: -330px; width: 760px; height: 760px; border: 1px solid rgba(226,170,81,.18); border-radius: 50%; box-shadow: 0 0 0 85px rgba(226,170,81,.028), 0 0 0 170px rgba(226,170,81,.02); }
.promise-inner { position: relative; z-index: 2; width: min(1160px, calc(100% - 64px)); margin: auto; padding: 92px 0 94px; }
.promise-band .eyebrow { color: #e0aa55; }
.promise-band h2 { max-width: 1000px; margin: 16px 0 21px; font: 850 clamp(46px, 5.5vw, 74px)/.99 var(--display-sans); letter-spacing: -.045em; }
.promise-band h2 em { color: #e2a34e; }
.promise-band p { max-width: 830px; margin: 0; color: #d4c7bc; font-size: 16px; line-height: 1.6; }

.positioning-section { width: min(1240px, calc(100% - 48px)); margin: auto; padding: 110px 0 82px; }
.section-heading { max-width: 830px; margin-bottom: 52px; }
.section-heading h2, .section h2 { margin: 15px 0 20px; font: 820 clamp(45px, 5vw, 67px)/1 var(--display-sans); letter-spacing: -.045em; }
.section-heading p, .showcase-copy > p, .privacy-copy > p { color: var(--muted); font-size: 16px; }
.position-card { position: relative; isolation: isolate; overflow: hidden; min-height: 650px; margin-bottom: 28px; padding: 62px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 58px; align-items: center; border: 1px solid var(--line); border-radius: 28px; background: rgba(255,250,243,.84); box-shadow: 0 22px 65px rgba(65,47,35,.09); }
.position-card:nth-of-type(2) { transition-delay: .06s; }
.position-card:nth-of-type(3) { transition-delay: .12s; }
.position-copy { position: relative; z-index: 2; }
.position-copy, .privacy-copy { min-width: 0; }
.position-number { position: absolute; right: 0; top: -22px; color: rgba(52,37,30,.17); font: italic 48px/1 var(--serif); }
.position-copy h3 { margin: 16px 0 24px; font: 840 clamp(50px, 5vw, 72px)/.96 var(--display-sans); letter-spacing: -.048em; }
.position-copy h3 em { font-style: italic; }
.position-copy > p { color: #66574e; font-size: 16px; line-height: 1.58; }
.folder-rail { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 34px; }
.folder-rail span { position: relative; min-width: 92px; padding: 13px 14px 11px; border-radius: 5px 5px 8px 8px; color: #4d382b; background: #d8ba88; box-shadow: 0 8px 18px rgba(71,48,34,.11); font: 14px/1 var(--serif); }
.folder-rail span::before { content: ""; position: absolute; left: 0; top: -6px; width: 46%; height: 8px; border-radius: 5px 8px 0 0; background: inherit; }
.folder-rail span:nth-child(2) { background: #bb7758; }
.folder-rail span:nth-child(3) { background: #c79f70; }
.folder-rail span:nth-child(4) { background: #ded1b8; }
.proof-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 31px 0 0; padding: 0; list-style: none; }
.proof-list li { padding: 9px 12px; border: 1px solid var(--line); border-radius: 999px; color: #67584e; background: rgba(255,255,255,.4); font-size: 12px; font-weight: 800; letter-spacing: .035em; text-transform: uppercase; }
.position-visual { border-radius: 16px; transform: rotate(-1.2deg); }
.position-visual:hover { transform: rotate(-1.2deg) translateY(-4px); box-shadow: 0 34px 85px rgba(65,47,35,.22); }

.moments-card { color: var(--paper-soft); background: radial-gradient(circle at 92% 12%, rgba(213,155,57,.18), transparent 30%), radial-gradient(circle at 4% 75%, rgba(169,79,50,.16), transparent 37%), linear-gradient(145deg, #34251e, #211713); border-color: rgba(255,255,255,.09); }
.moments-card .position-copy { order: 2; }
.moments-card .position-visual { order: 1; transform: rotate(1.1deg); border-color: rgba(255,255,255,.13); box-shadow: 0 32px 75px rgba(0,0,0,.4); }
.moments-privacy-frame { position: relative; overflow: hidden; display: block; }
.sidebar-blur-overlay { position: absolute; inset: 0; width: 100%; height: 100% !important; max-width: none; object-fit: contain; clip-path: inset(13.4% 77.8% 0 0); filter: blur(8px); transform: scale(1.018); transform-origin: left center; pointer-events: none; user-select: none; }
.moments-card .position-number { color: rgba(255,255,255,.16); }
.moments-card .eyebrow { color: #e0aa55; }
.moments-card .position-copy h3 em { color: #e2a34e; }
.moments-card .position-copy > p { color: #d1c3b7; }
.moments-card .proof-list li { color: #d2c3b7; border-color: rgba(255,255,255,.13); background: rgba(255,255,255,.045); }
.time-ruler { display: flex; align-items: center; gap: 0; margin-top: 29px; padding: 5px; border: 1px solid rgba(255,255,255,.1); border-radius: 999px; background: rgba(255,255,255,.055); }
.time-ruler span { flex: 1; padding: 10px 8px; border-radius: 999px; color: #bcaea3; text-align: center; font-size: 12px; font-weight: 760; }
.time-ruler .active { color: #302119; background: #e5b15c; box-shadow: 0 7px 19px rgba(217,154,55,.18); }

.ai-card { grid-template-columns: .9fr 1.1fr; background: rgba(249,245,237,.9); }
.ai-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(249,245,237,.97) 0%, rgba(249,245,237,.9) 48%, rgba(249,245,237,.52) 100%); }
.ai-card-bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; max-width: none; object-fit: cover; opacity: .78; }
.choice-panel { position: relative; z-index: 2; display: grid; gap: 15px; }
.choice-row { display: grid; grid-template-columns: 27px 1fr auto; align-items: center; gap: 15px; min-height: 106px; padding: 19px 21px; border: 1px solid rgba(71,51,39,.15); border-radius: 15px; background: rgba(255,251,245,.78); box-shadow: 0 15px 38px rgba(69,44,29,.09); backdrop-filter: blur(13px); }
.choice-row .radio { width: 22px; height: 22px; border: 2px solid #b7a89d; border-radius: 50%; }
.choice-row.active { border-color: rgba(169,79,50,.42); background: rgba(255,249,241,.92); }
.choice-row.active .radio { border: 6px solid var(--accent); }
.choice-row > div { display: flex; flex-direction: column; gap: 4px; }
.choice-row b { font: 700 19px/1.1 var(--serif); }
.choice-row small { color: #74645a; font-size: 13px; }
.choice-row strong { padding: 7px 10px; border-radius: 99px; color: #76665c; background: #e9dfd1; font-size: 12px; letter-spacing: .055em; text-transform: uppercase; }
.choice-row.active strong { color: var(--accent-dark); background: #eee1cf; }
.local-seal { width: 190px; height: 190px; margin: 18px 18px -30px auto; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; border: 1px solid rgba(88,61,43,.21); border-radius: 50%; background: rgba(250,245,237,.72); box-shadow: inset 0 0 0 9px rgba(255,255,255,.3), 0 18px 50px rgba(60,36,23,.12); backdrop-filter: blur(12px); transform: rotate(6deg); }
.local-seal i { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); }
.local-seal b { font: italic 700 21px/1.12 var(--serif); text-align: center; }

.themes-section {
  position: relative;
  overflow: hidden;
  width: min(1340px, calc(100% - 48px));
  margin: 0 auto 110px;
  padding: 76px 66px 54px;
  border: 1px solid rgba(178,212,177,.18);
  border-radius: 30px;
  color: #f7f2e9;
  background:
    radial-gradient(circle at 77% 18%, rgba(215,188,125,.16), transparent 26%),
    radial-gradient(circle at 12% 88%, rgba(100,145,115,.22), transparent 30%),
    linear-gradient(135deg, #0b2923 0%, #143c31 51%, #0a211e 100%);
  box-shadow: 0 34px 90px rgba(38,49,38,.22);
  scroll-margin-top: 72px;
  transition: background .5s ease, border-color .5s ease;
}
.themes-section[data-active-theme="mocca"] {
  border-color: rgba(220,189,154,.2);
  background:
    radial-gradient(circle at 78% 12%, rgba(202,159,112,.2), transparent 27%),
    radial-gradient(circle at 9% 90%, rgba(143,91,57,.2), transparent 31%),
    linear-gradient(135deg, #34251e 0%, #533a2c 52%, #261a16 100%);
}
.themes-section[data-active-theme="moosholz"] {
  border-color: rgba(207,191,145,.22);
  background:
    radial-gradient(circle at 80% 12%, rgba(210,180,121,.22), transparent 27%),
    radial-gradient(circle at 8% 90%, rgba(132,149,88,.22), transparent 31%),
    linear-gradient(135deg, #283323 0%, #4a4a2d 52%, #29251b 100%);
}
.themes-section[data-active-theme="holzmodern"] {
  border-color: rgba(221,170,105,.23);
  background:
    radial-gradient(circle at 80% 12%, rgba(216,155,84,.23), transparent 27%),
    radial-gradient(circle at 8% 90%, rgba(126,72,38,.25), transparent 31%),
    linear-gradient(135deg, #38251a 0%, #684125 52%, #261811 100%);
}
.themes-section[data-active-theme="pinkplueschmodern"] {
  border-color: rgba(255,207,228,.22);
  background:
    radial-gradient(circle at 78% 10%, rgba(255,220,234,.25), transparent 26%),
    radial-gradient(circle at 10% 91%, rgba(170,76,116,.28), transparent 32%),
    linear-gradient(135deg, #4a2335 0%, #74334f 50%, #321b29 100%);
}
.themes-section[data-active-theme="marblelight"] {
  border-color: rgba(230,224,211,.22);
  background:
    radial-gradient(circle at 78% 10%, rgba(245,239,226,.19), transparent 27%),
    radial-gradient(circle at 9% 91%, rgba(166,155,139,.18), transparent 31%),
    linear-gradient(135deg, #3c3b37 0%, #5d5a53 51%, #302f2c 100%);
}
.themes-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.themes-ambient::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image: linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(105deg, #000, transparent 48%, #000);
}
.themes-ambient i { position: absolute; border-radius: 50%; border: 1px solid rgba(239,232,202,.12); }
.themes-ambient i:nth-child(1) { width: 260px; height: 260px; top: -150px; left: 18%; }
.themes-ambient i:nth-child(2) { width: 430px; height: 430px; right: -180px; bottom: -250px; }
.themes-ambient i:nth-child(3) { width: 120px; height: 120px; left: 45%; bottom: -70px; }
.themes-inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(470px, .95fr) minmax(520px, 1.05fr); gap: 54px; align-items: center; }
.themes-copy { min-width: 0; }
.themes-copy .eyebrow { color: #dcb977; }
.themes-copy h2 { margin: 16px 0 21px; font: 840 clamp(46px, 4.6vw, 67px)/.96 var(--display-sans); letter-spacing: -.047em; }
.themes-copy h2 em { font-style: italic; color: #e7c27b; }
.promise-band h2 em,
.section-heading h2 em,
.section h2 em,
.position-copy h3 em,
.themes-copy h2 em {
  font-family: var(--serif);
  font-weight: 500;
}
.themes-copy > p { max-width: 560px; margin: 0; color: #c8d3cb; font-size: 16px; line-height: 1.68; }
.theme-choices { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; margin-top: 31px; }
.theme-choice {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 15px;
  align-items: center;
  min-width: 0;
  padding: 10px 13px 10px 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  color: #f7f2e9;
  background: rgba(255,255,255,.045);
  text-align: left;
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}
.theme-choice:hover { transform: translateX(3px); border-color: rgba(239,205,139,.34); background: rgba(255,255,255,.08); }
.theme-choice:focus-visible { outline: 2px solid #f2cb83; outline-offset: 3px; }
.theme-choice.is-active { border-color: rgba(243,208,143,.46); background: rgba(255,255,255,.12); box-shadow: inset 3px 0 0 #e6bc70, 0 13px 30px rgba(0,0,0,.13); }
.theme-choice > span:last-child { display: grid; gap: 3px; }
.theme-choice strong { overflow-wrap: anywhere; font: 700 18px/1.15 var(--serif); }
.theme-choice small { color: #b8c7be; font-size: 11px; font-weight: 760; letter-spacing: .06em; text-transform: uppercase; }
.theme-swatch { overflow: hidden; height: 48px; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid rgba(255,255,255,.15); border-radius: 9px; box-shadow: inset 0 0 0 1px rgba(0,0,0,.1); }
.swatch-mocca i:nth-child(1) { background: #3d2d26; }
.swatch-mocca i:nth-child(2) { background: #a88870; }
.swatch-mocca i:nth-child(3) { background: #eee8df; }
.swatch-moosholz i:nth-child(1) { background: #32442e; }
.swatch-moosholz i:nth-child(2) { background: #8f9561; }
.swatch-moosholz i:nth-child(3) { background: #9a6e43; }
.swatch-holzmodern i:nth-child(1) { background: #55331e; }
.swatch-holzmodern i:nth-child(2) { background: #b4773e; }
.swatch-holzmodern i:nth-child(3) { background: #e5c397; }
.swatch-pinkplueschmodern i:nth-child(1) { background: #76334e; }
.swatch-pinkplueschmodern i:nth-child(2) { background: #d88daf; }
.swatch-pinkplueschmodern i:nth-child(3) { background: #f0d3df; }
.swatch-marblelight i:nth-child(1) { background: #817e76; }
.swatch-marblelight i:nth-child(2) { background: #c9c4b9; }
.swatch-marblelight i:nth-child(3) { background: #f4f0e8; }
.swatch-rainforest i:nth-child(1) { background: #173e2e; }
.swatch-rainforest i:nth-child(2) { background: #6f8c56; }
.swatch-rainforest i:nth-child(3) { background: #dacd97; }
.themes-assurance { display: grid; grid-template-columns: 22px 1fr; gap: 10px; align-items: start; margin-top: 22px !important; color: #aebfb5 !important; font-size: 12px !important; line-height: 1.5 !important; }
.themes-assurance > span:first-child { display: grid; place-items: center; width: 20px; height: 20px; border: 1px solid rgba(231,196,130,.4); border-radius: 50%; color: #e7c482; font-size: 10px; }
.theme-stage { min-width: 0; }
.theme-stage-panel {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 22px;
  background: rgba(255,255,255,.09);
  box-shadow: 0 32px 70px rgba(0,0,0,.27), inset 0 1px 0 rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
  text-align: left;
  animation: theme-panel-in .42s ease both;
}
.theme-stage-panel[hidden] { display: none; }
.theme-stage-panel::after { content: ""; position: absolute; inset: 14px; pointer-events: none; border-radius: 13px; box-shadow: inset 0 0 0 1px rgba(255,255,255,.14); }
.theme-stage-panel img { width: 100%; border-radius: 13px; aspect-ratio: 1891 / 1258; object-fit: cover; object-position: top center; box-shadow: 0 17px 35px rgba(0,0,0,.27); }
.theme-stage-caption { position: absolute; z-index: 2; left: 29px; bottom: 29px; max-width: calc(100% - 58px); display: grid; gap: 3px; padding: 12px 15px; border: 1px solid rgba(255,255,255,.23); border-radius: 12px; color: white; background: rgba(8,27,23,.78); box-shadow: 0 12px 30px rgba(0,0,0,.25); backdrop-filter: blur(12px); }
.theme-stage-panel[data-theme-panel="mocca"] .theme-stage-caption { background: rgba(48,32,25,.84); }
.theme-stage-panel[data-theme-panel="moosholz"] .theme-stage-caption { background: rgba(41,43,26,.82); }
.theme-stage-panel[data-theme-panel="holzmodern"] .theme-stage-caption { background: rgba(63,37,20,.84); }
.theme-stage-panel[data-theme-panel="pinkplueschmodern"] .theme-stage-caption { background: rgba(75,31,50,.83); }
.theme-stage-panel[data-theme-panel="marblelight"] .theme-stage-caption { background: rgba(54,53,49,.84); }
.theme-stage-caption small { color: #d7dfd8; font-size: 9px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.theme-stage-caption strong { overflow-wrap: anywhere; font: 700 clamp(18px, 2vw, 25px)/1.1 var(--serif); }
.theme-stage-hint { margin: 15px 4px 0; color: #9caf9f; font-size: 11px; font-weight: 720; letter-spacing: .035em; text-align: right; }
@keyframes theme-panel-in { from { opacity: 0; transform: translateY(8px) scale(.99); } to { opacity: 1; transform: translateY(0) scale(1); } }

.section { width: min(1160px, 100%); margin: auto; padding: 100px 32px; scroll-margin-top: 72px; }
.vacation-proof { width: min(1240px, calc(100% - 48px)); padding: 40px 0 120px; }
.vacation-proof-heading { max-width: 900px; margin-bottom: 44px; }
.vacation-proof-heading > p { max-width: 760px; margin: 0; color: var(--muted); font-size: 16px; }
.profile-capabilities { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 23px; }
.profile-capabilities span { padding: 11px 14px; border: 1px solid rgba(169,79,50,.2); border-radius: 999px; color: var(--accent-dark); background: rgba(255,250,243,.72); font-size: 12px; font-weight: 820; letter-spacing: .025em; }
.profile-capabilities span::before { content: "●"; margin-right: 7px; color: var(--accent); font-size: 9px; }
.vacation-stage { display: grid; gap: 18px; }
.vacation-detail-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.vacation-detail-grid .vacation-shot { height: 100%; }
.vacation-shot { border: 1px solid rgba(81,58,43,.18); border-radius: 19px; background: var(--card); box-shadow: 0 20px 55px rgba(65,47,35,.13); text-align: left; transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease; }
.vacation-shot:hover { z-index: 2; border-color: rgba(169,79,50,.38); transform: translateY(-4px); box-shadow: 0 30px 72px rgba(65,47,35,.2); }
.vacation-shot img { aspect-ratio: 1800 / 1042; border-bottom: 1px solid rgba(81,58,43,.12); object-fit: contain; background: var(--card); }
.vacation-caption { display: grid; gap: 3px; padding: 16px 18px 18px; }
.vacation-caption strong { color: var(--ink); font: 700 18px/1.2 var(--serif); }
.vacation-caption small { color: var(--muted); font-size: 12px; line-height: 1.5; }
.vacation-shot-overview img { aspect-ratio: 1682 / 954; background: var(--card); }
.vacation-shot-overview .vacation-caption { padding: 20px 22px 22px; }
.vacation-shot-overview .vacation-caption strong { font-size: 23px; }
.vacation-proof-points { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 20px; }
.vacation-proof-points span { padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; color: #625248; background: rgba(255,250,243,.68); font-size: 12px; font-weight: 820; letter-spacing: .03em; text-transform: uppercase; }
.vacation-proof-points span::before { content: "✓"; margin-right: 7px; color: var(--green); }
.showcase { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: center; padding-block: 95px 115px; }
.showcase-copy h2 { font-size: clamp(42px, 4.8vw, 62px); }
.showcase-copy .secondary-note { margin-top: 18px; padding-left: 16px; border-left: 2px solid var(--accent-soft); font-size: 15px; }
.showcase-image { border: 1px solid rgba(103,80,61,.2); border-radius: 17px; box-shadow: 0 24px 55px rgba(65,47,35,.14); transition: transform .25s ease, box-shadow .25s ease; }
.showcase-image:hover { transform: scale(1.012); box-shadow: 0 30px 70px rgba(65,47,35,.18); }
.text-link { display: inline-block; margin-top: 21px; color: var(--accent); font-size: 14px; font-weight: 850; }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }
.threed-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-content: center; }
.threed-visual .showcase-image:first-child { grid-column: 1 / -1; }
.threed-visual .showcase-image { overflow: hidden; }
.threed-visual .showcase-image img { display: block; width: 100%; height: auto; }

.privacy-section { width: min(1240px, calc(100% - 48px)); min-height: 640px; margin-bottom: 115px; padding: 66px; display: grid; grid-template-columns: .78fr 1.22fr; gap: 80px; align-items: center; border: 1px solid var(--line); border-radius: 28px; background: var(--paper-deep); box-shadow: 0 22px 60px rgba(65,47,35,.08); }
.privacy-mark { position: relative; min-height: 420px; display: grid; place-items: center; }
.privacy-mark::before { content: ""; position: absolute; width: 270px; height: 270px; border-radius: 50%; background: rgba(82,108,91,.14); filter: blur(55px); }
.privacy-mark img { position: relative; z-index: 3; border-radius: 32px; box-shadow: var(--shadow); }
.privacy-mark b { position: absolute; z-index: 4; bottom: 79px; padding: 8px 11px; border: 1px solid var(--line); border-radius: 999px; color: var(--green); background: var(--card); font-size: 12px; letter-spacing: .11em; }
.privacy-ring { position: absolute; border: 1px solid rgba(82,108,91,.2); border-radius: 50%; }
.privacy-ring.ring-one { width: 300px; height: 300px; }
.privacy-ring.ring-two { width: 420px; height: 420px; }
.privacy-copy h2 { font-size: clamp(44px, 5vw, 67px); }
.privacy-copy ul { display: grid; gap: 10px; margin: 25px 0 0; padding: 0; list-style: none; }
.privacy-copy li { color: #514842; font-size: 15px; font-weight: 700; }
.privacy-copy li::before { content: "✓"; display: inline-grid; place-items: center; width: 21px; height: 21px; margin-right: 9px; border-radius: 50%; color: var(--green); background: rgba(82,108,91,.12); }
.foundation-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 23px; }
.foundation-pills span { padding: 10px 13px; border: 1px solid rgba(62,43,31,.12); border-radius: 999px; color: #5f4e43; background: rgba(255,250,242,.65); font-size: 12px; font-weight: 780; }

.formats-section { width: min(1240px, calc(100% - 48px)); margin: 0 auto 115px; scroll-margin-top: 90px; }
.formats-heading { max-width: 830px; margin: 0 auto 38px; text-align: center; }
.formats-heading h2 { margin: 13px 0 16px; font-size: clamp(42px, 5.3vw, 68px); }
.formats-heading > p { max-width: 760px; margin-inline: auto; color: var(--muted); font-size: 16px; }
.formats-table-shell { position: relative; overflow: hidden; border: 1px solid rgba(82,108,91,.2); border-radius: 28px; background: rgba(255,253,249,.9); box-shadow: 0 28px 75px rgba(65,47,35,.11); }
.formats-table-shell::before { content: ""; position: absolute; inset: 0 0 auto; z-index: 2; height: 5px; background: linear-gradient(90deg, #526c5b, #d39b39 48%, #8a65bc); }
.formats-total { display: flex; align-items: center; justify-content: center; gap: 14px; min-height: 108px; padding: 21px 32px 15px; color: #f8f1e4; background: radial-gradient(circle at 78% 10%, rgba(211,155,57,.2), transparent 32%), linear-gradient(125deg, #173a32, #112c27 58%, #31283e); }
.formats-total strong { font: 800 clamp(42px, 5vw, 67px)/1 var(--serif); letter-spacing: -.05em; }
.formats-total span { color: #c9d8d2; font-size: 12px; font-weight: 850; letter-spacing: .08em; line-height: 1.3; text-transform: uppercase; }
.formats-table-scroll { overflow-x: auto; }
.formats-table { width: 100%; border-collapse: collapse; table-layout: fixed; }
.formats-table th, .formats-table td { padding: 23px 24px; border-bottom: 1px solid rgba(91,75,65,.11); text-align: left; vertical-align: middle; }
.formats-table thead th { padding-block: 15px; color: #796d65; background: #f2ede5; font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.formats-table thead th:first-child { width: 21%; }
.formats-table thead th:nth-child(2) { width: 57%; }
.formats-table thead th:last-child { width: 22%; }
.formats-table tbody tr { transition: background .2s ease; }
.formats-table tbody tr:hover { background: rgba(82,108,91,.045); }
.formats-table tbody tr:last-child > * { border-bottom: 0; }
.formats-table tbody th { color: var(--ink); }
.formats-table tbody th > span:not(.format-icon) { display: inline-grid; gap: 4px; vertical-align: middle; }
.formats-table tbody th strong { font: 700 18px/1.15 var(--serif); }
.formats-table tbody th small { width: max-content; padding: 3px 7px; border-radius: 999px; color: #71645c; background: #ece4da; font-size: 9px; font-weight: 900; }
.format-icon { display: inline-grid; width: 36px; height: 36px; margin-right: 10px; place-items: center; border: 1px solid rgba(82,108,91,.16); border-radius: 11px; color: var(--green); background: rgba(82,108,91,.08); font-size: 17px; vertical-align: middle; }
.format-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.format-chips code { padding: 5px 7px; border: 1px solid rgba(91,75,65,.11); border-radius: 7px; color: #594e48; background: #f6f1ea; font: 800 10px/1 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; letter-spacing: .025em; }
.preview-mode { display: inline-flex; align-items: center; gap: 7px; padding: 8px 10px; border-radius: 999px; font-size: 10px; font-weight: 900; line-height: 1.25; }
.preview-mode::before { content: ""; width: 7px; height: 7px; flex: 0 0 auto; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 4px rgba(82,108,91,.1); }
.mode-local { color: #2f705c; background: rgba(67,145,118,.1); }
.mode-system { color: #987123; background: rgba(211,155,57,.12); }
.mode-hybrid { color: #73519c; background: rgba(138,101,188,.11); }
.formats-note { margin: 0; padding: 17px 24px 19px; border-top: 1px solid rgba(91,75,65,.1); color: #7a6f68; background: #f7f2eb; font-size: 11px; line-height: 1.55; text-align: center; }

.beta-section { overflow: hidden; width: min(1100px, calc(100% - 42px)); margin-bottom: 105px; padding: 62px; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; border-radius: 28px; color: white; background: radial-gradient(circle at 92% 12%, rgba(213,155,57,.17), transparent 29%), linear-gradient(130deg, #382820, #211713 64%, #30483d); box-shadow: 0 34px 80px rgba(65,47,35,.2); }
.beta-section .eyebrow { color: #e8bda8; }
.beta-section h2 { color: white; font-size: clamp(39px, 4.5vw, 58px); }
.beta-copy p { color: #cec6c0; font-size: 16px; }
.beta-signals { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.beta-signals span { padding: 9px 11px; border: 1px solid rgba(232,189,168,.24); border-radius: 999px; color: #fff4ed; background: rgba(232,189,168,.08); font-size: 12px; font-weight: 800; }
.beta-signals span::before { content: "✓"; margin-right: 6px; color: #e5c380; }
.beta-facts { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.beta-facts span { padding: 9px 11px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; color: #f1e9e3; background: rgba(255,255,255,.055); font-size: 12px; font-weight: 780; }
.beta-copy .beta-thanks { margin-top: 20px; color: #f0c8b5; font-size: 13px; font-weight: 700; line-height: 1.55; }
.testflight-card { position: relative; display: grid; gap: 18px; padding: 34px; overflow: hidden; border: 1px solid rgba(255,241,215,.32); border-radius: 23px; background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.045)); box-shadow: 0 24px 55px rgba(0,0,0,.18); }
.testflight-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: linear-gradient(90deg, #e6baa5, #f3d58b, #77c9ad); }
.testflight-card-kicker { color: #f3d58b; font-size: 12px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.testflight-card > strong { color: #fffaf4; font: 700 clamp(24px, 2.6vw, 34px)/1.24 var(--serif); }
.testflight-card > p { margin: 0; color: #ddd3cc; font-size: 14px; line-height: 1.65; }
.testflight-join { display: grid; gap: 5px; min-height: 92px; padding: 19px 22px; border: 1px solid rgba(255,255,255,.48); border-radius: 15px; color: #17382f; background: linear-gradient(120deg, #fffdf9, #f2d69b 55%, #8bd5bd); box-shadow: 0 18px 34px rgba(0,0,0,.2); transition: transform .2s ease, box-shadow .2s ease; }
.testflight-join:hover, .testflight-join:focus-visible { transform: translateY(-3px); box-shadow: 0 24px 42px rgba(0,0,0,.27); }
.testflight-join > span { font-size: 18px; font-weight: 920; }
.testflight-join > span::after { content: "↗"; margin-left: 9px; }
.testflight-join small { color: rgba(23,56,47,.76); font-size: 11px; font-weight: 800; }
.testflight-steps { display: grid; gap: 10px; margin: 0; padding: 0; counter-reset: testflight-step; list-style: none; }
.testflight-steps li { display: grid; grid-template-columns: 28px 1fr; gap: 10px; align-items: center; color: #f2ebe6; font-size: 13px; line-height: 1.45; }
.testflight-steps li::before { counter-increment: testflight-step; content: counter(testflight-step); display: grid; width: 28px; height: 28px; place-items: center; border: 1px solid rgba(243,213,139,.4); border-radius: 50%; color: #f3d58b; background: rgba(243,213,139,.09); font-size: 11px; font-weight: 900; }
.testflight-card .testflight-privacy { padding-top: 15px; border-top: 1px solid rgba(255,255,255,.12); color: #bcb1aa; font-size: 11px; }
.testflight-ja-priority { display: none; }
html.lang-ja .testflight-card { border-color: rgba(243,213,139,.64); background: radial-gradient(circle at 84% 5%, rgba(243,213,139,.18), transparent 32%), linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.055)); box-shadow: 0 28px 70px rgba(0,0,0,.28), 0 0 0 4px rgba(243,213,139,.07); }
html.lang-ja .testflight-ja-priority { display: inline-flex; width: max-content; max-width: 100%; padding: 7px 11px; border-radius: 999px; color: #2b211c; background: #f3d58b; font-size: 12px; font-weight: 900; letter-spacing: .06em; }
html.lang-ja .testflight-join { min-height: 108px; padding-block: 23px; }
html.lang-ja .testflight-join > span { font-size: 21px; }

footer { border-top: 1px solid var(--line); }
.footer-inner { width: min(1160px, calc(100% - 48px)); min-height: 175px; margin: auto; padding: 28px 0 22px; display: grid; grid-template-columns: auto 1fr; column-gap: 42px; row-gap: 20px; align-items: center; }
.footer-nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; color: var(--muted); font-size: 12px; font-weight: 700; }
.footer-nav a:hover { color: var(--accent); }
.footer-inner > p { grid-column: 1 / -1; width: 100%; margin: 0; padding-top: 18px; border-top: 1px solid rgba(91,75,65,.12); color: var(--muted); font-size: 12px; text-align: center; }

.screenshot-dialog { width: min(1500px, calc(100vw - 42px)); max-width: none; padding: 42px 14px 14px; border: 1px solid rgba(255,255,255,.28); border-radius: 20px; background: #201b18; box-shadow: 0 40px 120px rgba(0,0,0,.48); }
.screenshot-dialog::backdrop { background: rgba(23,18,15,.74); backdrop-filter: blur(12px); }
.dialog-image-stage { position: relative; overflow: hidden; border-radius: 10px; }
.screenshot-dialog img { width: 100%; max-height: calc(100vh - 85px); object-fit: contain; border-radius: 10px; cursor: zoom-out; }
.dialog-blur-overlay { display: none; border-radius: 0; cursor: default; }
.screenshot-dialog.privacy-blur-active .dialog-blur-overlay { display: block; }
.dialog-close { position: absolute; right: 12px; top: 7px; width: 30px; height: 30px; border: 0; border-radius: 50%; color: white; background: rgba(255,255,255,.12); font-size: 20px; cursor: pointer; }
.dialog-close:hover { background: var(--accent); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.ambient-scene { position: fixed; inset: 0; z-index: -1; pointer-events: none; background: radial-gradient(circle at 85% 15%, rgba(203,157,109,.18), transparent 32%), var(--paper); }
.grain { position: absolute; inset: 0; opacity: .035; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' 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"); }
.legal-page { min-height: calc(100vh - 220px); }
.legal-page h1, .legal-page h2 { font-family: var(--serif); }
.legal-page a { color: var(--accent); }
.site-header > .brand { margin: 16px max(24px, calc((100% - 1160px)/2)); }
.site-header > nav { position: absolute; right: max(24px, calc((100% - 1160px)/2)); top: 26px; }
body > footer > p { width: min(1160px, calc(100% - 48px)); margin: auto; padding: 35px 0; color: var(--muted); font-size: 13px; }

@media (max-width: 1200px) {
  .header-inner { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .hero { min-height: 760px; padding: 72px 28px 76px; display: block; }
  .hero-content { position: static; display: block; }
  .hero-copy { isolation: isolate; width: min(650px, calc(100% - 56px)); min-width: 0; max-width: none; }
  .hero-copy::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: -42px -250px -46px -28px;
    background: linear-gradient(
      90deg,
      rgba(6, 45, 37, .99) 0%,
      rgba(6, 45, 37, .98) 66%,
      rgba(6, 45, 37, .86) 78%,
      rgba(6, 45, 37, .42) 90%,
      transparent 100%
    );
    pointer-events: none;
  }
  .hero h1 { font-size: clamp(40px, 5vw, 58px); }
  .hero-collection-claim { max-width: 650px; }
  .hero-lead { max-width: 650px; }
  .hero-product {
    position: absolute;
    top: 135px;
    right: clamp(-430px, calc(65vw - 890px), -110px);
    width: clamp(650px, 65vw, 760px);
    margin: 0;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.2) 11%, #000 35%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.2) 11%, #000 35%);
  }
  .hero-product figcaption { display: none; }
}

@media (max-width: 1080px) {
  .position-card { padding: 48px; gap: 40px; }
  .privacy-section { padding: 50px; gap: 50px; }
  .themes-section { padding: 62px 50px 46px; }
  .themes-inner { grid-template-columns: 1fr; gap: 44px; }
  .themes-copy { max-width: 760px; }
  .theme-choices { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .theme-choice { grid-template-columns: 1fr; align-content: start; }
}

@media (max-width: 900px) {
  .header-inner { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .mobile-beta-section { grid-template-columns: 1fr; padding: 58px; gap: 46px; }
  .mobile-beta-copy { max-width: 720px; }
  .mobile-beta-shot { width: min(330px, 78vw); }
  .position-card, .ai-card { min-height: 0; padding: 48px; grid-template-columns: 1fr; }
  .moments-card .position-copy { order: 1; }
  .moments-card .position-visual { order: 2; }
  .vacation-detail-grid { grid-template-columns: 1fr 1fr; }
  .showcase, .privacy-section, .beta-section { grid-template-columns: 1fr; }
  .showcase { gap: 42px; }
  .privacy-section { gap: 20px; }
  .privacy-mark { order: 2; }
  .beta-section { gap: 35px; }
  .formats-table thead th:first-child { width: 24%; }
  .formats-table thead th:nth-child(2) { width: 51%; }
  .formats-table thead th:last-child { width: 25%; }
  .formats-table th, .formats-table td { padding: 20px 17px; }
  .footer-inner { grid-template-columns: 1fr; gap: 18px; padding: 35px 0 28px; text-align: center; }
  .footer-inner .brand { margin: auto; }
  .footer-inner > p { text-align: center; }
}

@media (max-width: 680px) {
  .hero { min-height: 0; padding: 60px 22px 70px; }
  .hero-content { position: relative; display: grid; grid-template-columns: 1fr; gap: 43px; }
  .hero-copy { width: 100%; max-width: 100%; }
  .hero-copy::before { content: none; }
  .hero h1 { font-size: clamp(38px, 7vw, 48px); }
  .hero-product {
    position: relative;
    top: auto;
    right: auto;
    grid-column: 1;
    width: 100%;
    max-width: none;
    margin: 0;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .hero-product figcaption { display: block; margin-inline: 0; }
}

@media (max-width: 600px) {
  html { scroll-padding-top: 72px; }
  .header-inner { width: calc(100% - 28px); min-height: 64px; }
  .brand { font-size: 18px; }
  .brand img { width: 32px; height: 32px; }
  .hero { padding: 52px 17px 64px; }
  .hero-lockup { gap: 12px; margin-bottom: 31px; }
  .hero-lockup img { width: 52px; height: 52px; border-radius: 14px; }
  .hero-lockup span { font-size: 40px; }
  .hero h1 { font-size: clamp(31px, 8.7vw, 42px); letter-spacing: 0; }
  .hero-collection-claim { font-size: clamp(23px, 7vw, 29px); }
  .hero-lead { font-size: 15px; }
  .hero-assurance { gap: 8px 13px; font-size: 12px; }
  .hero-assurance span + span::before { margin-right: 13px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-media-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; }
  .hero-media-tile { border-radius: 10px; }
  .hero-product figcaption { padding-inline: 8px; font-size: 12px; }
  .zoom-hint { display: none; }
  .trust-strip { justify-content: flex-start; overflow-x: auto; gap: 25px; font-size: 11px; }
  .trust-strip span { flex: 0 0 auto; }
  .mobile-beta-section { width: calc(100% - 20px); margin: 68px auto 78px; padding: 45px 22px 38px; gap: 39px; border-radius: 22px; }
  .mobile-beta-copy h2 { font-size: 42px; }
  .mobile-beta-copy > p { font-size: 14px; }
  .mobile-testflight-link { min-height: 88px; padding: 17px 18px; }
  .mobile-testflight-link > span { font-size: 17px; }
  .mobile-beta-shot { width: min(310px, 84vw); border-radius: 31px; transform: none; }
  .mobile-beta-shot img { border-radius: 23px; }
  .mobile-shot-caption { left: 21px; right: 21px; bottom: 21px; }
  .promise-inner { width: calc(100% - 36px); padding: 72px 0 76px; }
  .promise-band h2 { font-size: 47px; }
  .promise-band p { font-size: 14px; }
  .positioning-section { width: calc(100% - 20px); padding: 82px 0 60px; }
  .section-heading { padding: 0 8px; margin-bottom: 34px; }
  .section-heading h2, .section h2 { font-size: 42px; }
  .position-card, .ai-card { margin-bottom: 16px; padding: 34px 22px; gap: 35px; border-radius: 21px; }
  .position-copy h3 { font-size: 49px; }
  .position-copy > p { font-size: 14px; }
  .position-number { top: -10px; font-size: 40px; }
  .folder-rail span { min-width: 75px; padding-inline: 11px; font-size: 12px; }
  .position-visual { border-radius: 11px; }
  .proof-list li { font-size: 11px; }
  .choice-row { grid-template-columns: 24px 1fr; padding: 16px; }
  .choice-row strong { grid-column: 2; justify-self: start; }
  .choice-row b { font-size: 17px; }
  .local-seal { width: 150px; height: 150px; margin-right: 3px; }
  .local-seal b { font-size: 18px; }
  .themes-section { width: calc(100% - 20px); margin-bottom: 72px; padding: 52px 22px 34px; border-radius: 22px; }
  .themes-inner { gap: 35px; }
  .themes-copy h2 { font-size: 42px; }
  .themes-copy > p { font-size: 14px; }
  .theme-choices { grid-template-columns: 1fr; }
  .theme-choice { grid-template-columns: 61px minmax(0, 1fr); }
  .theme-stage-panel { padding: 8px; border-radius: 15px; }
  .theme-stage-panel::after { inset: 8px; border-radius: 9px; }
  .theme-stage-panel img { border-radius: 9px; }
  .theme-stage-caption { left: 18px; bottom: 18px; max-width: calc(100% - 36px); padding: 9px 11px; border-radius: 9px; }
  .theme-stage-caption strong { font-size: 17px; }
  .theme-stage-hint { font-size: 9px; text-align: left; }
  .threed-visual { grid-template-columns: 1fr; }
  .section { padding: 78px 18px; }
  .vacation-proof { width: calc(100% - 20px); padding: 26px 0 82px; }
  .vacation-proof-heading { padding: 0 8px; margin-bottom: 31px; }
  .vacation-proof-heading > p { font-size: 14px; }
  .profile-capabilities { gap: 7px; }
  .profile-capabilities span { padding: 9px 11px; font-size: 11px; }
  .vacation-stage, .vacation-detail-grid { grid-template-columns: 1fr; gap: 14px; }
  .vacation-shot { border-radius: 13px; }
  .vacation-caption, .vacation-shot-overview .vacation-caption { padding: 14px 15px 16px; }
  .vacation-caption strong, .vacation-shot-overview .vacation-caption strong { font-size: 18px; }
  .vacation-proof-points { padding: 0 5px; }
  .showcase-image { border-radius: 12px; }
  .privacy-section { width: calc(100% - 20px); margin-bottom: 70px; padding: 35px 21px; border-radius: 21px; }
  .privacy-section { max-width: calc(100vw - 20px); }
  .privacy-copy h2 { overflow-wrap: anywhere; }
  .privacy-mark { min-height: 330px; margin: 0; }
  .privacy-mark img { width: 112px; height: 112px; }
  .privacy-mark b { bottom: 62px; }
  .privacy-ring.ring-one { width: 230px; height: 230px; }
  .privacy-ring.ring-two { width: 310px; height: 310px; }
  .formats-section { width: calc(100% - 20px); margin-bottom: 70px; }
  .formats-heading { margin-bottom: 27px; padding-inline: 8px; text-align: left; }
  .formats-heading h2 { font-size: 36px; }
  .formats-heading > p { font-size: 14px; }
  .formats-table-shell { border-radius: 22px; }
  .formats-total { justify-content: flex-start; min-height: 92px; padding-inline: 22px; }
  .formats-table-scroll { overflow: visible; padding: 12px; background: #eee8df; }
  .formats-table, .formats-table tbody, .formats-table tr, .formats-table th, .formats-table td { display: block; width: 100%; }
  .formats-table thead { display: none; }
  .formats-table tbody { display: grid; gap: 10px; }
  .formats-table tbody tr { overflow: hidden; padding: 18px; border: 1px solid rgba(91,75,65,.1); border-radius: 15px; background: #fffdf9; }
  .formats-table th, .formats-table td { padding: 0; border: 0; }
  .formats-table tbody th { margin-bottom: 15px; }
  .formats-table tbody td + td { margin-top: 16px; }
  .format-chips { gap: 5px; }
  .format-chips code { padding: 5px 6px; font-size: 9px; }
  .formats-note { padding: 16px 18px 18px; text-align: left; }
  .beta-section { width: calc(100% - 20px); margin-bottom: 65px; padding: 36px 20px; border-radius: 22px; }
  .beta-section h2 { font-size: 42px; }
  .testflight-card { padding: 27px 20px; }
  .testflight-join { min-height: 86px; padding: 17px 18px; }
  .footer-nav { row-gap: 12px; }
  .site-header > .brand { margin: 13px 16px; }
  .site-header > nav { right: 16px; top: 22px; }
  .legal-page { padding-top: 90px !important; }
}

/* 2026 product story: visual file management, 3D/CAD and safe image editing */
.hero-reframed {
  min-height: 720px;
  padding-block: 68px 76px;
}
.hero-reframed .hero-content {
  max-width: 1440px;
  margin: auto;
  gap: clamp(38px, 5vw, 84px);
  align-items: center;
}
.hero-reframed .hero-copy {
  flex: 0 0 min(510px, 39vw);
  width: min(510px, 39vw);
  min-width: 0;
  max-width: 510px;
}
.hero-reframed .hero-lockup { margin-bottom: 22px; }
.hero-kicker {
  margin: 0 0 15px;
  color: #8fc5b3;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero-reframed h1 { font-size: clamp(39px, 3.45vw, 57px); }
.hero-reframed .hero-collection-claim { margin-top: 22px; }
.hero-product-single {
  flex: 1 1 780px;
  width: auto;
  max-width: 900px;
  margin: 26px -86px 0 0;
}
.hero-product-matrix {
  flex: 1 1 800px;
  width: auto;
  max-width: 920px;
  margin: 25px -88px 0 0;
}
.hero-local-first-seal {
  position: absolute;
  z-index: 7;
  top: 74px;
  left: calc(min(510px, 39vw) + 10px);
  width: 132px;
  height: 132px;
  filter: drop-shadow(0 16px 22px rgba(0, 0, 0, .32));
  pointer-events: none;
  transform: rotate(-7deg);
}
.hero-product-matrix .hero-media-grid { gap: 9px; }
.hero-product-matrix .hero-media-tile { aspect-ratio: 1 / .93; }
.hero-product-matrix figcaption { margin-inline: 4px; }
.hero-product-matrix .tile-photos img { object-position: 52% 46%; }
.hero-product-matrix .tile-editor img {
  object-fit: contain;
  object-position: center;
  background: #020508;
}
.hero-product-matrix .tile-documents img { object-position: 62% 44%; }
.hero-product-matrix .tile-models img { object-position: 55% 46%; }
.hero-product-matrix .tile-cad img { object-position: 52% 48%; }
.hero-product-matrix .tile-ai img { object-position: 53% 47%; }
.hero-product-matrix .tile-ai .ai-scan-effect { z-index: 2; }
.hero-product-matrix .tile-ai.is-active .ai-scan-effect { opacity: .9; }
.hero-product-matrix .tile-ai .ai-scan-blob { filter: blur(25px) saturate(155%); }
.hero-product-matrix .tile-ai > span:not(.ai-scan-effect) { z-index: 4; }
.hero-screenshot {
  overflow: hidden;
  border: 1px solid rgba(210, 234, 223, .32);
  border-radius: 19px;
  background: #112a26;
  box-shadow: 0 34px 90px rgba(0,0,0,.42);
}
.hero-screenshot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
  pointer-events: none;
}
.hero-screenshot img { transition: transform .35s ease; }
.hero-screenshot:hover img { transform: scale(1.008); }
.hero-shot-label {
  position: absolute;
  right: 15px;
  bottom: 15px;
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: #fff7e8;
  background: rgba(9, 32, 28, .76);
  backdrop-filter: blur(12px);
  font-size: 10px;
  font-weight: 800;
}
.hero-product-single figcaption {
  display: flex;
  gap: 6px;
  margin: 15px 4px 0;
  color: #a9c2b8;
  font-size: 12px;
}
.hero-product-single figcaption strong { color: #fff1d7; }

.audience-journeys {
  scroll-margin-top: 72px;
  overflow: clip;
  background: #f5ecdf;
}
.audience-journey {
  --journey-accent: #f2a7cc;
  --journey-ink: #fff4ea;
  --journey-muted: rgba(255,244,234,.78);
  position: relative;
  color: var(--journey-ink);
  isolation: isolate;
}
.audience-journey::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at 82% 16%, color-mix(in srgb, var(--journey-accent) 22%, transparent), transparent 38%);
}
.journey-food { background: linear-gradient(122deg, #4b1f39 0%, #743455 50%, #a2587a 100%); }
.journey-3d {
  --journey-accent: #77c1cf;
  background: linear-gradient(122deg, #0b1d29 0%, #17323d 54%, #4a483f 100%);
}
.journey-photo {
  --journey-accent: #d8bd6f;
  background: linear-gradient(122deg, #09392f 0%, #124b3c 52%, #445936 100%);
}
.audience-journey-inner {
  width: min(1380px, calc(100% - 56px));
  min-height: 690px;
  margin: 0 auto;
  padding: 86px 0 94px;
  display: grid;
  grid-template-columns: minmax(340px, .78fr) minmax(560px, 1.22fr);
  gap: clamp(58px, 7vw, 108px);
  align-items: center;
}
.audience-journey-reversed { grid-template-columns: minmax(560px, 1.22fr) minmax(340px, .78fr); }
.audience-journey-reversed .audience-journey-copy { order: 2; }
.audience-journey-reversed .audience-journey-visual { order: 1; }
.audience-journey .eyebrow { color: var(--journey-accent); }
.audience-journey-copy h2 {
  margin: 17px 0 24px;
  font: 820 clamp(43px, 4.7vw, 68px)/.99 var(--display-sans);
  letter-spacing: -.05em;
}
.audience-journey-copy h2 span,
.audience-journey-copy h2 em { display: block; }
.audience-journey-copy h2 em { color: var(--journey-accent); font-weight: 500; }
.audience-journey-copy > p { margin: 0; color: var(--journey-muted); font-size: 16px; }
.audience-proof-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 27px 0;
}
.audience-proof-pills span {
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: var(--journey-ink);
  background: rgba(255,255,255,.075);
  font-size: 11px;
  font-weight: 800;
}
.audience-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--journey-accent);
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}
.audience-link::after { content: "→"; font-size: 17px; transition: transform .2s ease; }
.audience-link:hover::after { transform: translateX(4px); }
.audience-journey-visual {
  position: relative;
  min-width: 0;
  padding: 0 72px 56px 0;
}
.journey-shot {
  position: relative;
  z-index: 1;
  width: 100%;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  box-shadow: 0 30px 78px rgba(0,0,0,.3);
}
.journey-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
  pointer-events: none;
}
.journey-shot img { transition: transform .3s ease; }
.journey-shot:hover img { transform: scale(1.008); }
.journey-persona {
  position: absolute;
  z-index: 3;
  right: -22px;
  bottom: -58px;
  width: clamp(205px, 19vw, 280px);
  aspect-ratio: 2 / 3;
  pointer-events: none;
}
.journey-persona::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 5%;
  top: 14%;
  width: 94%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: color-mix(in srgb, var(--journey-accent) 47%, transparent);
  box-shadow: 0 0 62px color-mix(in srgb, var(--journey-accent) 20%, transparent);
  pointer-events: none;
}
.journey-persona > img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 20px 24px rgba(0,0,0,.32));
}
.journey-persona-copy {
  position: absolute;
  z-index: 2;
  left: -152px;
  bottom: 30px;
  width: 245px;
  padding: 15px 16px;
  border: 1px solid rgba(255,255,255,.23);
  border-radius: 15px;
  color: #fff7ee;
  background: rgba(24,20,22,.83);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 38px rgba(0,0,0,.25);
}
.journey-persona-copy span {
  display: block;
  margin-bottom: 5px;
  color: var(--journey-accent);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.journey-persona-copy strong { display: block; font: 720 18px/1.08 var(--serif); }
.journey-persona-copy q {
  display: block;
  margin-top: 8px;
  color: rgba(255,247,238,.82);
  font-size: 10px;
  line-height: 1.42;
}
.journey-persona-copy q::before,
.journey-persona-copy q::after { content: none; }

.journey-3d .audience-journey-inner { padding-bottom: 66px; }
.model-preview-proof {
  width: min(1380px, calc(100% - 56px));
  margin: 0 auto;
  padding: 48px 0 72px;
  display: grid;
  grid-template-columns: minmax(350px, .78fr) minmax(560px, 1.22fr);
  gap: clamp(48px, 6vw, 88px);
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.16);
  scroll-margin-top: 82px;
}
.model-preview-copy .eyebrow { color: var(--journey-accent); }
.model-preview-copy h3 {
  margin: 13px 0 17px;
  font: 760 clamp(30px, 3vw, 43px)/1.02 var(--serif);
  letter-spacing: -.035em;
}
.model-preview-copy h3 span,
.model-preview-copy h3 em { display: block; }
.model-preview-copy h3 em { color: var(--journey-accent); font-weight: 500; }
.model-preview-copy > p {
  margin: 0;
  color: var(--journey-muted);
  font-size: 13px;
  line-height: 1.65;
}
.model-preview-formats {
  display: grid;
  gap: 7px;
  margin: 20px 0 18px;
}
.model-preview-formats > div {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 10px;
  align-items: baseline;
}
.model-preview-formats dt {
  color: var(--journey-accent);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.model-preview-formats dd {
  margin: 0;
  color: var(--journey-ink);
  font-size: 11px;
  font-weight: 760;
}
.model-preview-link {
  color: var(--journey-accent);
  font-size: 11px;
  font-weight: 850;
  text-decoration: none;
}
.model-preview-link::after { content: " →"; }
.model-preview-shots {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.model-preview-shot {
  position: relative;
  aspect-ratio: 1.38;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 15px;
  background: rgba(255,255,255,.07);
  box-shadow: 0 20px 46px rgba(0,0,0,.25);
}
.model-preview-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}
.model-preview-shot:hover img { transform: scale(1.01); }
.model-preview-shot > span {
  position: absolute;
  left: 9px;
  bottom: 9px;
  padding: 6px 8px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: #fff7ee;
  background: rgba(9,20,25,.78);
  backdrop-filter: blur(10px);
  font-size: 8px;
  font-weight: 820;
}

.editor-copy h2 {
  margin: 17px 0 24px;
  font: 820 clamp(43px, 4.7vw, 68px)/.99 var(--display-sans);
  letter-spacing: -.05em;
}

.editor-story {
  padding: 112px max(30px, calc((100% - 1340px) / 2));
  scroll-margin-top: 72px;
  background: #e8dccb;
}
.editor-story-inner {
  max-width: 1340px;
  margin: auto;
  display: grid;
  grid-template-columns: minmax(560px, 1.25fr) minmax(360px, .75fr);
  gap: clamp(52px, 7vw, 100px);
  align-items: center;
}
.editor-shot {
  border: 1px solid rgba(61,44,34,.2);
  border-radius: 18px;
  background: #cfc3b4;
  box-shadow: 0 32px 75px rgba(65,47,35,.22);
}
.editor-shot img { transition: transform .32s ease; }
.editor-shot:hover img { transform: scale(1.008); }
.editor-copy > p { color: #65564d; }
.editor-features { display: flex; flex-wrap: wrap; gap: 8px; margin: 27px 0; }
.editor-features span {
  padding: 9px 12px;
  border: 1px solid rgba(61,44,34,.15);
  border-radius: 999px;
  background: rgba(255,250,243,.57);
  font-size: 11px;
  font-weight: 800;
}
.original-promise {
  display: grid;
  gap: 3px;
  margin-top: 24px;
  padding: 17px 19px;
  border-left: 4px solid var(--accent);
  border-radius: 0 13px 13px 0;
  background: rgba(255,250,243,.64);
}
.original-promise strong { font-size: 14px; }
.original-promise span { color: var(--muted); font-size: 12px; }

.ai-story {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 118px max(30px, calc((100% - 1380px) / 2));
  scroll-margin-top: 72px;
  color: #f9f1e5;
  background:
    radial-gradient(circle at 8% 2%, rgba(107,92,255,.2), transparent 28%),
    radial-gradient(circle at 92% 82%, rgba(34,211,238,.13), transparent 31%),
    linear-gradient(135deg, #121326 0%, #19172d 48%, #082c2d 100%);
}
.ai-story::before {
  content: "LOCAL AI";
  position: absolute;
  right: -18px;
  top: 9px;
  z-index: -1;
  color: rgba(255,255,255,.026);
  font-size: clamp(90px, 14vw, 210px);
  font-weight: 950;
  letter-spacing: -.08em;
  white-space: nowrap;
}
.ai-story-inner {
  max-width: 1380px;
  margin: auto;
}
.ai-story-heading { max-width: 970px; }
.ai-story-heading .eyebrow { color: #8de9eb; }
.ai-story-heading h2 {
  margin: 17px 0 24px;
  font: 820 clamp(47px, 5.5vw, 78px)/.96 var(--display-sans);
  letter-spacing: -.05em;
}
.ai-story-heading h2 em { color: #8de9eb; }
.ai-story-heading > p { max-width: 880px; margin: 0; color: #c9c8d9; font-size: 16px; }
.ai-capabilities { display: flex; flex-wrap: wrap; gap: 8px; margin: 27px 0; }
.ai-capabilities span {
  padding: 9px 12px;
  border: 1px solid rgba(141,233,235,.22);
  border-radius: 999px;
  color: #e5fbfb;
  background: rgba(255,255,255,.055);
  font-size: 11px;
  font-weight: 820;
}
.ai-scan-stage {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: 57px 0 24px;
  border: 1px solid rgba(162,218,223,.25);
  border-radius: 24px;
  background: #080b17;
  box-shadow: 0 45px 110px rgba(0,0,0,.48), 0 0 75px rgba(76,112,255,.12);
}
.ai-scan-image { border-radius: 0; }
.ai-scan-image img { opacity: .9; transition: transform .4s ease, opacity .4s ease; }
.ai-scan-stage:hover .ai-scan-image img { transform: scale(1.006); opacity: 1; }
.ai-scan-effect {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity .6s ease;
}
.ai-scan-stage.is-active .ai-scan-effect { opacity: 1; }
.ai-scan-field,
.ai-scan-blob,
.ai-scan-line { position: absolute; pointer-events: none; will-change: transform, opacity; }
.ai-scan-field {
  inset: -18%;
  opacity: .82;
  background:
    radial-gradient(ellipse at 18% 24%, rgba(111,92,255,.42) 0%, rgba(111,92,255,.14) 28%, transparent 58%),
    radial-gradient(ellipse at 78% 28%, rgba(34,211,238,.34) 0%, rgba(34,211,238,.11) 30%, transparent 60%),
    radial-gradient(ellipse at 52% 82%, rgba(244,114,182,.3) 0%, rgba(244,114,182,.09) 31%, transparent 62%);
  filter: blur(18px) saturate(145%);
  mix-blend-mode: screen;
}
.ai-scan-blob {
  border-radius: 48% 52% 61% 39% / 42% 38% 62% 58%;
  filter: blur(46px) saturate(155%);
  mix-blend-mode: screen;
}
.ai-scan-blob-a {
  top: -32%; left: -13%; width: 58%; height: 72%;
  background: radial-gradient(ellipse at 55% 55%, rgba(126,97,255,.68) 0%, rgba(92,72,238,.3) 38%, transparent 70%);
}
.ai-scan-blob-b {
  top: 3%; right: -17%; width: 61%; height: 79%;
  background: radial-gradient(ellipse at 42% 48%, rgba(28,215,226,.61) 0%, rgba(22,168,214,.25) 40%, transparent 72%);
}
.ai-scan-blob-c {
  left: 18%; bottom: -39%; width: 68%; height: 83%;
  background: radial-gradient(ellipse at 50% 38%, rgba(244,105,180,.52) 0%, rgba(245,158,94,.2) 40%, transparent 72%);
}
.ai-scan-line {
  left: -8%;
  top: -3%;
  width: 116%;
  height: 2px;
  opacity: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(127,111,255,.15) 12%, rgba(108,244,255,.96) 42%, rgba(255,190,231,.96) 58%, rgba(127,111,255,.15) 88%, transparent 100%);
  box-shadow: 0 0 10px rgba(126,228,255,.8), 0 0 30px rgba(142,111,255,.58), 0 22px 75px rgba(244,114,182,.28);
}
.ai-scan-stage.is-active .ai-scan-field,
.hero-media-tile.tile-ai.is-active .ai-scan-field { animation: landing-ai-field 9s ease-in-out infinite alternate; }
.ai-scan-stage.is-active .ai-scan-blob-a,
.hero-media-tile.tile-ai.is-active .ai-scan-blob-a { animation: landing-ai-blob-a 7.5s ease-in-out infinite alternate; }
.ai-scan-stage.is-active .ai-scan-blob-b,
.hero-media-tile.tile-ai.is-active .ai-scan-blob-b { animation: landing-ai-blob-b 8.5s ease-in-out infinite alternate; }
.ai-scan-stage.is-active .ai-scan-blob-c,
.hero-media-tile.tile-ai.is-active .ai-scan-blob-c { animation: landing-ai-blob-c 9.5s ease-in-out infinite alternate; }
.ai-scan-stage.is-active .ai-scan-line,
.hero-media-tile.tile-ai.is-active .ai-scan-line { animation: landing-ai-scan-line 4.2s cubic-bezier(.45,0,.55,1) infinite; }
.ai-scan-status,
.ai-scan-legend {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.18);
  color: #f3fcff;
  background: rgba(8,12,27,.69);
  backdrop-filter: blur(15px);
  pointer-events: none;
}
.ai-scan-status { left: 18px; top: 18px; padding: 9px 12px; border-radius: 999px; font-size: 10px; font-weight: 850; letter-spacing: .055em; text-transform: uppercase; }
.ai-scan-status i { width: 7px; height: 7px; border-radius: 50%; background: #8de9eb; box-shadow: 0 0 0 5px rgba(141,233,235,.13), 0 0 14px #8de9eb; }
.ai-scan-stage.is-active .ai-scan-status i { animation: landing-ai-pulse 1.35s ease-in-out infinite; }
.ai-scan-legend { right: 18px; bottom: 18px; padding: 8px; border-radius: 12px; font-size: 9px; font-weight: 800; }
.ai-scan-legend span { padding: 4px 7px; border-radius: 7px; background: rgba(255,255,255,.07); }
.ai-process-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 25px; }
.ai-process-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 18px;
  color: #f8f0e5;
  background: rgba(255,255,255,.055);
  box-shadow: 0 22px 54px rgba(0,0,0,.22);
  text-align: left;
}
.ai-process-card img { border-bottom: 1px solid rgba(255,255,255,.1); transition: transform .3s ease; }
.ai-process-card:hover img { transform: scale(1.012); }
.ai-process-number { position: absolute; top: 12px; left: 12px; z-index: 2; padding: 6px 8px; border-radius: 999px; color: #0b1820; background: #8de9eb; font-size: 9px; font-weight: 950; letter-spacing: .08em; box-shadow: 0 8px 20px rgba(0,0,0,.24); }
.ai-process-caption { position: relative; display: grid; gap: 5px; padding: 19px 20px 21px; }
.ai-process-caption strong { color: white; font: 700 20px/1.15 var(--serif); }
.ai-process-caption small { color: #bdbdca; font-size: 11px; line-height: 1.45; }
.ai-control-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .68fr); gap: 18px; margin-top: 22px; align-items: stretch; }
.ai-choice-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px;
  background: rgba(255,255,255,.055);
}
.ai-choice-row {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 16px 17px;
}
.ai-choice-row + .ai-choice-row { border-top: 1px solid rgba(255,255,255,.12); }
.ai-choice-row > i {
  width: 15px;
  height: 15px;
  border: 2px solid #86879a;
  border-radius: 50%;
}
.ai-choice-row-accent { background: rgba(141,233,235,.075); }
.ai-choice-row-accent > i { border: 4px solid #8de9eb; }
.ai-choice-row > span { display: grid; gap: 2px; }
.ai-choice-row strong { color: #f7f1e9; font-size: 13px; }
.ai-choice-row small { color: #aeadbd; font-size: 10px; }
.ai-choice-row > b { color: #8de9eb; font-size: 10px; text-transform: uppercase; letter-spacing: .06em; }
.ai-draft-note {
  display: grid;
  align-content: center;
  gap: 5px;
  margin: 0;
  padding: 22px 23px;
  border: 1px solid rgba(255,190,231,.17);
  border-left: 4px solid #f39bd0;
  border-radius: 0 16px 16px 0;
  background: rgba(244,114,182,.07);
  font-size: 12px;
}
.ai-draft-note strong { color: #ffd8ef; }
.ai-draft-note span { color: #bab9c7; }

@keyframes landing-ai-field {
  0% { transform: translate3d(-3%,-2%,0) scale(1.02) rotate(-2deg); }
  45% { transform: translate3d(3%,2%,0) scale(1.09) rotate(2deg); }
  100% { transform: translate3d(-1%,4%,0) scale(1.04) rotate(-1deg); }
}
@keyframes landing-ai-blob-a {
  0% { transform: translate3d(-5%,-4%,0) scale(.9) rotate(-8deg); opacity: .62; }
  55% { transform: translate3d(38%,20%,0) scale(1.12) rotate(10deg); opacity: .92; }
  100% { transform: translate3d(18%,44%,0) scale(1.02) rotate(3deg); opacity: .72; }
}
@keyframes landing-ai-blob-b {
  0% { transform: translate3d(10%,-4%,0) scale(1.08) rotate(9deg); opacity: .58; }
  50% { transform: translate3d(-38%,22%,0) scale(.9) rotate(-7deg); opacity: .9; }
  100% { transform: translate3d(-17%,43%,0) scale(1.14) rotate(5deg); opacity: .68; }
}
@keyframes landing-ai-blob-c {
  0% { transform: translate3d(-14%,10%,0) scale(1.02) rotate(-4deg); opacity: .54; }
  48% { transform: translate3d(20%,-31%,0) scale(1.17) rotate(8deg); opacity: .86; }
  100% { transform: translate3d(-3%,-48%,0) scale(.94) rotate(-6deg); opacity: .66; }
}
@keyframes landing-ai-scan-line {
  0% { top: -3%; transform: scaleX(.78); opacity: 0; }
  12% { opacity: .72; }
  48% { top: 48%; transform: scaleX(1); opacity: .96; }
  88% { opacity: .62; }
  100% { top: 103%; transform: scaleX(.82); opacity: 0; }
}
@keyframes landing-ai-pulse {
  0%, 100% { opacity: .55; transform: scale(.82); }
  50% { opacity: 1; transform: scale(1.18); }
}

.collection-section { width: min(1250px, 100%); }
.documents-shot {
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 24px 64px rgba(65,47,35,.15);
}
.feature-card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px; }
.collection-feature-grid {
  margin-top: 38px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.feature-card {
  min-height: 190px;
  padding: 25px 23px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255,250,243,.72);
}
.feature-card strong { display: block; margin-bottom: 11px; font: 700 21px/1.15 var(--serif); }
.feature-card p { margin: 0; color: var(--muted); font-size: 13px; }

.documents-story {
  width: min(1240px, calc(100% - 48px));
  margin-bottom: 110px;
  padding: 70px;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 70px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fffaf3;
  box-shadow: 0 22px 60px rgba(65,47,35,.08);
}
.documents-copy > p { color: var(--muted); }
.documents-copy .proof-list { margin-top: 26px; }

@media (max-width: 1180px) {
  .site-header nav { gap: 17px; }
  .site-header nav a { font-size: 12px; }
  .hero-product-single { margin-right: -30px; }
  .hero-product-matrix { margin-right: -30px; }
  .hero-local-first-seal {
    top: 182px;
    left: calc(34px + min(510px, 39vw));
    width: 116px;
    height: 116px;
  }
  .audience-journey-inner,
  .audience-journey-reversed { grid-template-columns: minmax(310px, .72fr) minmax(500px, 1.28fr); gap: 46px; }
  .audience-journey-reversed { grid-template-columns: minmax(500px, 1.28fr) minmax(310px, .72fr); }
  .audience-journey-visual { padding-right: 42px; }
  .journey-persona { right: -18px; width: 220px; }
  .journey-persona-copy { left: -125px; width: 220px; }
  .model-preview-proof { grid-template-columns: minmax(310px, .72fr) minmax(500px, 1.28fr); gap: 46px; }
  .editor-story-inner { grid-template-columns: 1fr; }
  .editor-shot { order: 2; max-width: 940px; }
  .editor-copy { max-width: 830px; }
  .feature-card-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .feature-card { min-height: 180px; }
}

@media (max-width: 900px) {
  .hero-reframed { padding-inline: 28px; }
  .hero-reframed .hero-content { display: grid; grid-template-columns: 1fr; }
  .hero-reframed .hero-copy { width: 100%; max-width: 660px; }
  .hero-product-single { width: 100%; max-width: 900px; margin: 0; }
  .hero-product-matrix { width: 100%; max-width: 920px; margin: 0; }
  .hero-local-first-seal { top: 72px; right: 24px; left: auto; width: 104px; height: 104px; }
  .audience-journey-inner,
  .audience-journey-reversed { width: min(760px, calc(100% - 48px)); min-height: 0; grid-template-columns: 1fr; gap: 56px; }
  .audience-journey-reversed .audience-journey-copy,
  .audience-journey-reversed .audience-journey-visual { order: initial; }
  .audience-journey-visual { padding: 0 70px 72px 0; }
  .journey-persona { right: -10px; bottom: -48px; width: 235px; }
  .model-preview-proof { width: min(760px, calc(100% - 48px)); grid-template-columns: 1fr; gap: 34px; }
  .model-preview-copy { max-width: 650px; }
  .editor-story,
  .ai-story { padding: 88px 28px; }
  .ai-process-grid { grid-template-columns: 1fr; }
  .ai-process-card { display: grid; grid-template-columns: minmax(250px, .85fr) 1fr; align-items: center; }
  .ai-process-card img { height: 100% !important; object-fit: cover; border-right: 1px solid rgba(255,255,255,.1); border-bottom: 0; }
  .ai-control-row { grid-template-columns: 1fr; }
  .documents-story { padding: 50px; grid-template-columns: 1fr; gap: 40px; }
  .feature-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .hero-reframed { padding: 51px 17px 66px; }
  .hero-reframed .hero-content { gap: 42px; }
  .hero-reframed h1 { font-size: clamp(29px, 8.3vw, 33px); letter-spacing: -.01em; }
  .hero-kicker { font-size: 10px; }
  .hero-product-single figcaption { display: grid; }
  .hero-product-matrix { grid-row: 2; }
  .hero-product-matrix figcaption { display: grid; }
  .hero-local-first-seal {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    justify-self: end;
    width: 92px;
    height: 92px;
    margin: -45px 5px 0 0;
  }
  .hero-shot-label { right: 8px; bottom: 8px; max-width: calc(100% - 16px); font-size: 8px; }
  .audience-journey-inner,
  .audience-journey-reversed { width: calc(100% - 34px); padding: 68px 0 78px; gap: 44px; }
  .audience-journey-copy h2 { font-size: 40px; }
  .audience-journey-copy > p { font-size: 14px; }
  .audience-journey-visual { padding: 0 0 124px; }
  .journey-shot { border-radius: 15px; }
  .journey-persona { right: 0; bottom: -66px; width: 174px; }
  .journey-persona-copy { left: -145px; bottom: 20px; width: 190px; padding: 12px; }
  .journey-persona-copy strong { font-size: 15px; }
  .journey-persona-copy q { font-size: 9px; }
  .journey-3d .audience-journey-inner { padding-bottom: 54px; }
  .model-preview-proof { width: calc(100% - 34px); padding: 42px 0 58px; gap: 28px; }
  .model-preview-copy h3 { font-size: 33px; }
  .model-preview-formats > div { grid-template-columns: 1fr; gap: 2px; }
  .model-preview-shot { border-radius: 11px; }
  .model-preview-shot > span { left: 6px; bottom: 6px; max-width: calc(100% - 12px); padding: 5px 6px; font-size: 7px; }
  .editor-story,
  .ai-story { padding: 74px 17px; }
  .editor-story-inner { gap: 42px; }
  .editor-copy h2,
  .ai-story-heading h2 { font-size: 40px; }
  .collection-section { padding-inline: 17px; }
  .feature-card-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 0; }
  .ai-scan-stage { margin-top: 38px; border-radius: 15px; }
  .ai-scan-status { left: 9px; top: 9px; padding: 7px 9px; font-size: 8px; }
  .ai-scan-legend { display: none; }
  .ai-process-card { display: block; }
  .ai-process-card img { height: auto !important; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .ai-process-caption { padding: 17px; }
  .ai-choice-row { grid-template-columns: 18px minmax(0, 1fr); }
  .ai-choice-row > b { grid-column: 2; }
  .documents-story { width: calc(100% - 20px); margin-bottom: 72px; padding: 37px 22px; border-radius: 21px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .ai-scan-stage.is-active .ai-scan-effect { opacity: .72; }
  .ai-scan-stage.is-active .ai-scan-line { top: 50%; opacity: .72; }
}
