@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Mulish:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=JetBrains+Mono:wght@400;500&display=swap');

/* =====================================================================
   ECHOED MOMENTS — Colors & Type Foundations
   "Capture life beyond the image"
   ---------------------------------------------------------------------
   Primary  : Echo Blue   #158aff
   Accent   : Moment Gold #f9c00b
   ---------------------------------------------------------------------
   Fonts are loaded from Google Fonts as the nearest match to the custom
   logo wordmark (see README → Typography). Swap the @import for self-
   hosted files in fonts/ if you have the licensed originals.
   ===================================================================== */

/* cyrillic-ext */
/* cyrillic */
/* greek */
/* vietnamese */
/* latin-ext */
/* latin */
/* cyrillic-ext */
/* cyrillic */
/* greek */
/* vietnamese */
/* latin-ext */
/* latin */
/* cyrillic-ext */
/* cyrillic */
/* vietnamese */
/* latin-ext */
/* latin */
/* cyrillic-ext */
/* cyrillic */
/* vietnamese */
/* latin-ext */
/* latin */
/* cyrillic-ext */
/* cyrillic */
/* vietnamese */
/* latin-ext */
/* latin */
/* cyrillic-ext */
/* cyrillic */
/* vietnamese */
/* latin-ext */
/* latin */
/* cyrillic-ext */
/* cyrillic */
/* vietnamese */
/* latin-ext */
/* latin */
/* cyrillic-ext */
/* cyrillic */
/* vietnamese */
/* latin-ext */
/* latin */
/* devanagari */
/* latin-ext */
/* latin */
/* devanagari */
/* latin-ext */
/* latin */
/* devanagari */
/* latin-ext */
/* latin */
/* devanagari */
/* latin-ext */
/* latin */
/* devanagari */
/* latin-ext */
/* latin */
:root {
  /* ---- Brand core ---------------------------------------------------- */
  --echo-blue:    #158aff;   /* primary — links, primary actions, the mark */
  --moment-gold:  #f9c00b;   /* accent — the "echo" spark, highlights, never large fills */

  /* ---- Blue scale (primary) ----------------------------------------- */
  --blue-50:  #ecf5ff;
  --blue-100: #d6e9ff;
  --blue-200: #aed3ff;
  --blue-300: #7bb8ff;
  --blue-400: #44a0ff;
  --blue-500: #158aff;   /* = --echo-blue */
  --blue-600: #0b6fe0;
  --blue-700: #0a59b4;
  --blue-800: #0d4889;
  --blue-900: #103c6e;

  /* ---- Gold scale (accent) ------------------------------------------ */
  --gold-50:  #fff8e1;
  --gold-100: #ffedb3;
  --gold-200: #ffdf73;
  --gold-300: #ffd23d;
  --gold-400: #f9c00b;   /* = --moment-gold */
  --gold-500: #e0a800;
  --gold-600: #b98700;
  --gold-700: #8f6800;

  /* ---- Ink / neutral scale (cool navy-leaning) ---------------------- */
  --ink-900: #0e1726;   /* deepest — dark surfaces */
  --ink-800: #15212e;   /* brand ink — primary text, logo dark */
  --ink-700: #28323f;
  --ink-600: #3d4855;
  --ink-500: #5a6675;
  --ink-400: #808b99;
  --ink-300: #a8b1bd;
  --ink-200: #ccd3db;
  --ink-100: #e6eaef;
  --ink-50:  #f3f5f8;

  /* ---- Warm paper backgrounds (the "memory" warmth) ----------------- */
  --paper:       #fbfaf7;   /* app canvas — barely-warm off-white */
  --paper-sunk:  #f5f3ee;   /* recessed wells, alt rows */
  --surface:     #ffffff;   /* cards, sheets */

  /* ---- Semantic foreground ------------------------------------------ */
  --fg1: var(--ink-800);    /* primary text */
  --fg2: var(--ink-500);    /* secondary text */
  --fg3: var(--ink-400);    /* tertiary / captions / placeholder */
  --fg-on-blue: #ffffff;
  --fg-on-ink:  #f3f5f8;
  --fg-link:    var(--blue-600);

  /* ---- Semantic background ------------------------------------------ */
  --bg-canvas:  var(--paper);
  --bg-surface: var(--surface);
  --bg-sunk:    var(--paper-sunk);
  --bg-brand:   var(--echo-blue);
  --bg-ink:     var(--ink-800);

  /* ---- Borders ------------------------------------------------------ */
  --border:        var(--ink-100);
  --border-strong: var(--ink-200);
  --border-focus:  var(--echo-blue);

  /* ---- Status ------------------------------------------------------- */
  --success: #1c9d6a;
  --success-bg: #e6f6ef;
  --warning: var(--gold-500);
  --warning-bg: var(--gold-50);
  --danger:  #e2503f;
  --danger-bg: #fdecea;

  /* ---- Tint washes (soft, for section bands & illustrations) -------- */
  --wash-blue: #eef6ff;
  --wash-gold: #fff8e6;

  /* =================================================================== */
  /*  TYPOGRAPHY                                                         */
  /* =================================================================== */
  --font-display: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body:    'Mulish', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Type scale (1.250 major-third, 16px base) ------------------------- */
  --text-xs:   0.75rem;   /* 12 */
  --text-sm:   0.875rem;  /* 14 */
  --text-base: 1rem;      /* 16 */
  --text-md:   1.125rem;  /* 18 */
  --text-lg:   1.375rem;  /* 22 */
  --text-xl:   1.75rem;   /* 28 */
  --text-2xl:  2.25rem;   /* 36 */
  --text-3xl:  2.875rem;  /* 46 */
  --text-4xl:  3.75rem;   /* 60 */
  --text-5xl:  4.75rem;   /* 76 */

  --leading-tight: 1.08;
  --leading-snug:  1.25;
  --leading-normal:1.55;
  --leading-loose: 1.7;

  --tracking-tight: -0.02em;
  --tracking-snug:  -0.01em;
  --tracking-normal: 0;
  --tracking-wide:   0.04em;
  --tracking-caps:   0.12em;   /* eyebrow / overline */

  /* ---- Radii -------------------------------------------------------- */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  /* ---- Spacing (4px base) ------------------------------------------- */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;

  /* ---- Elevation (soft, warm-tinted — never harsh black) ------------ */
  --shadow-xs: 0 1px 2px rgba(21, 33, 46, 0.06);
  --shadow-sm: 0 2px 6px rgba(21, 33, 46, 0.07);
  --shadow-md: 0 8px 24px rgba(21, 33, 46, 0.09);
  --shadow-lg: 0 18px 48px rgba(21, 33, 46, 0.12);
  --shadow-blue: 0 8px 22px rgba(21, 138, 255, 0.30);   /* blue button glow */
  --shadow-gold: 0 6px 18px rgba(249, 192, 11, 0.32);

  /* ---- Motion ------------------------------------------------------- */
  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft:  cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring:cubic-bezier(0.34, 1.56, 0.64, 1);  /* gentle overshoot */
  --dur-fast: 140ms;
  --dur-base: 240ms;
  --dur-slow: 420ms;
}

/* =====================================================================
   SEMANTIC ELEMENT STYLES — apply by adding the brand classes, or copy
   into your own resets. These are intentionally lightweight.
   ===================================================================== */

.em-display,
.em-h1, .em-h2, .em-h3 {
  font-family: var(--font-display);
  color: var(--fg1);
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-tight);
  font-weight: 600;
  margin: 0;
  text-wrap: balance;
}
.em-display { font-size: var(--text-5xl); font-weight: 700; }
.em-h1 { font-size: var(--text-4xl); font-weight: 700; }
.em-h2 { font-size: var(--text-2xl); }
.em-h3 { font-size: var(--text-xl); letter-spacing: var(--tracking-snug); }

.em-eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--blue-600);
}

.em-lead {
  font-family: var(--font-body);
  font-size: var(--text-md);
  line-height: var(--leading-normal);
  color: var(--fg2);
  margin: 0;
  text-wrap: pretty;
}

.em-body, body.em {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--fg1);
  text-wrap: pretty;
}

.em-caption {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--fg3);
  line-height: var(--leading-snug);
}

.em-mono, code, kbd {
  font-family: var(--font-mono);
  font-size: 0.92em;
}

a.em-link { color: var(--fg-link); text-decoration: none; }
a.em-link:hover { text-decoration: underline; }


/* =====================================================================
   Echoed Moments — Landing page styles
   Built on the Echoed Moments design system (assets/colors_and_type.css)
   ===================================================================== */

:root {
  /* tweakable surface — overridden by the Tweaks island */
  --canvas: var(--paper);
  --canvas-sunk: var(--paper-sunk);
  --spark: var(--moment-gold);
  --spark-soft: rgba(249, 192, 11, 0.18);
  --head-scale: 1;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--canvas);
  color: var(--fg1);
  font-family: var(--font-body);
  font-size: var(--text-md);
  line-height: var(--leading-normal);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }

/* ---- shared layout ------------------------------------------------- */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 760px; margin: 0 auto; padding: 0 32px; }
section { position: relative; }

/* ---- type ---------------------------------------------------------- */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--blue-600);
  margin: 0;
}
.eyebrow.on-dark { color: var(--blue-300); }

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--fg1);
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-tight);
  font-weight: 600;
  margin: 0;
  text-wrap: balance;
}
.display {
  font-weight: 700;
  font-size: calc(clamp(2.7rem, 6vw, 4.4rem) * var(--head-scale));
  letter-spacing: -0.03em;
  line-height: 1.02;
}
.h2 { font-size: calc(clamp(2rem, 3.6vw, 2.95rem) * var(--head-scale)); font-weight: 700; }
.h3 { font-size: var(--text-xl); letter-spacing: var(--tracking-snug); }

.lead {
  font-size: var(--text-md);
  line-height: var(--leading-normal);
  color: var(--fg2);
  margin: 0;
  text-wrap: pretty;
}
.lead.lg { font-size: var(--text-lg); line-height: 1.5; }
p { text-wrap: pretty; }

/* gold underline swoosh on a word */
.swoosh { position: relative; white-space: nowrap; }
.swoosh svg { position: absolute; left: 0; right: 0; bottom: -0.18em; width: 100%; height: 0.32em; }
.swoosh svg path { stroke: var(--spark); }

/* ---- echo spark divider -------------------------------------------- */
.spark {
  width: 16px; height: 16px;
  background: var(--spark);
  transform: rotate(45deg);
  border-radius: 4px;
  box-shadow: 0 0 0 7px var(--spark-soft);
}
/* Spark-row dividers use a gold lock instead of the diamond. */
.spark-row .spark-lock {
  width: 22px; height: 22px;
  background: none;
  transform: none;
  border-radius: 0;
  box-shadow: none;
  color: var(--moment-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.spark-row .spark-lock svg { width: 22px; height: 22px; }
.spark-row {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  padding: 8px 0;
}
.spark-row .line { height: 1px; width: 64px; background: var(--border-strong); opacity: 0.7; }

/* ---- buttons ------------------------------------------------------- */
.btn {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-base);
  border-radius: var(--radius-pill);
  padding: 15px 30px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  transition: transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              background var(--dur-base) var(--ease-out);
}
.btn .ic { width: 18px; height: 18px; }
.btn-sm { padding: 9px 18px; font-size: var(--text-sm); gap: 7px; }
.btn-sm .ic { width: 16px; height: 16px; }

.btn-primary { background: var(--echo-blue); color: var(--fg-on-blue); box-shadow: var(--shadow-blue); }
.btn-primary:hover { background: var(--blue-600); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(21,138,255,.36); }
.btn-primary:active { transform: scale(.97); }
.btn-ghost { background: var(--surface); color: var(--ink-800); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-on-dark { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.24); }
.btn-on-dark:hover { background: rgba(255,255,255,.18); }
.btn-ghost.is-danger { color: var(--danger); }
.btn-ghost.is-danger:hover { background: var(--danger-bg); }
.btn-primary.is-danger { background: var(--danger); box-shadow: 0 8px 22px rgba(226,80,63,.3); }
.btn-primary.is-danger:hover { background: #c8442f; }

/* =====================================================================
   ANNOUNCEMENT BAR
   ===================================================================== */
.announce-bar {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--bg-ink);
  color: rgba(255,255,255,.84);
  font-family: var(--font-body); font-weight: 600;
  font-size: var(--text-xs); letter-spacing: .02em;
  padding: 11px 24px; text-align: center;
}
.announce-bar .announce-dot {
  flex: none;
  width: 7px; height: 7px; border-radius: 999px; background: var(--moment-gold);
  box-shadow: 0 0 0 4px rgba(249,192,11,.24);
  animation: pulse 3.2s var(--ease-soft) infinite;
}

/* =====================================================================
   HEADER
   ===================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--canvas) 80%, transparent);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-base), background var(--dur-base);
}
.site-header.scrolled { border-bottom-color: var(--border); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 32px;
  max-width: 1180px; margin: 0 auto;
}
.site-header .logo { height: 28px; }
.header-nav { display: flex; gap: 30px; align-items: center; }
.header-nav a {
  font-family: var(--font-body); font-weight: 600; font-size: var(--text-sm);
  color: var(--fg2); text-decoration: none; transition: color var(--dur-fast);
}
.header-nav a:hover { color: var(--ink-800); }
.header-cta { display: flex; gap: 14px; align-items: center; }
.header-cta .signin {
  font-family: var(--font-display); font-weight: 600; font-size: var(--text-sm);
  color: var(--ink-800); text-decoration: none;
}
.header-cta .signin:hover { color: var(--blue-600); }
.header-cta .btn { padding: 11px 22px; font-size: var(--text-sm); }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  background-color: var(--ink-900);
  background-image:
    linear-gradient(to top, rgba(10,15,24,.92) 2%, rgba(10,15,24,.45) 38%, rgba(10,15,24,.28) 70%, rgba(10,15,24,.5)),
    url("../images/design/hero.801735669bbb.jpg");
  background-size: cover, cover;
  background-position: center, center 42%;
  transform: scale(1.04);
}
body[data-hero="type"] .hero-media {
  background-image:
    radial-gradient(120% 90% at 70% 10%, rgba(21,138,255,.22), transparent 60%),
    linear-gradient(to top, var(--ink-900), var(--ink-800));
}
.hero-mark {
  position: absolute; right: -90px; top: 8%;
  width: min(540px, 48vw); opacity: 0.10; pointer-events: none;
  filter: brightness(0) invert(1);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1180px; margin: 0 auto; width: 100%;
  padding: 120px 32px 96px;
}
.hero-content { max-width: 760px; }
.badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
  padding: 8px 16px 8px 12px;
  margin-bottom: 26px;
}
.badge .dot {
  width: 8px; height: 8px; border-radius: 999px; background: var(--moment-gold);
  box-shadow: 0 0 0 4px rgba(249,192,11,.28);
  animation: pulse 3.2s var(--ease-soft) infinite;
}
.badge span {
  font-family: var(--font-body); font-weight: 700; font-size: var(--text-sm);
  letter-spacing: .02em; color: rgba(255,255,255,.92);
}
.hero h1 { color: #fff; margin-bottom: 24px; }
.hero .lead { color: rgba(255,255,255,.86); max-width: 620px; }
.hero .lead + .lead { margin-top: 16px; color: rgba(255,255,255,.72); font-size: var(--text-md); }
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-top: 38px; }
.scroll-hint {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,.6);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-family: var(--font-body); font-size: var(--text-xs); letter-spacing: .14em; text-transform: uppercase;
}
.scroll-hint .ic { width: 18px; height: 18px; animation: nudge 2.4s var(--ease-soft) infinite; }

@keyframes pulse { 0%,100%{ box-shadow: 0 0 0 4px rgba(249,192,11,.28);} 50%{ box-shadow: 0 0 0 8px rgba(249,192,11,0);} }
@keyframes nudge { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(5px);} }

/* =====================================================================
   GENERIC SECTION SHELL
   ===================================================================== */
.section { padding: clamp(72px, 9vw, 128px) 0; }
.section.wash { background: var(--wash-blue); }
.section.sunk { background: var(--canvas-sunk); }
.section.ink { background: var(--ink-900); color: var(--fg-on-ink); }

/* split: text + image */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.split.flip .split-media { order: -1; }
.split-text .eyebrow { margin-bottom: 18px; }
.split-text h2 { margin-bottom: 20px; }
.split-text .lead + .lead { margin-top: 18px; }
.split.flip .split-text .lead + .lead { margin-top: 10px; }
.split-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background-color: var(--ink-800);
  background-size: cover;
  background-position: center;
  position: relative;
}
.split-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(150deg, rgba(14,23,38,.16), transparent 55%);
}

/* triad refrain — "Something personal. Something lasting. Something real." */
.refrain {
  margin-top: 30px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-lg);
  line-height: 1.5;
  color: var(--ink-800);
}
.refrain span { display: block; }
.refrain span + span { color: var(--ink-600); }
.refrain span:last-child { color: var(--blue-600); }
.section.ink .refrain { color: #fff; }
.section.ink .refrain span + span { color: rgba(243,245,248,.7); }
.section.ink .refrain span:last-child { color: var(--blue-300); }

/* =====================================================================
   "MORE THAN A MEMORY" — centered narrative
   ===================================================================== */
.narrative { text-align: center; }
.narrative .eyebrow { margin-bottom: 20px; }
.narrative h2 { margin: 0 auto 28px; max-width: 26ch; }
.narrative h2 em { font-style: italic; color: var(--blue-600); font-weight: 600; }
.narrative .lead { max-width: 62ch; margin: 0 auto; }
.narrative .lead + .lead { margin-top: 20px; }

/* Wider body container for "More than a memory" — fewer line breaks, cleaner balance */
.sunk .wrap-narrow.narrative { max-width: 1180px; }
.sunk .narrative .lead { max-width: none; }

/* =====================================================================
   3-STEP — how it works
   ===================================================================== */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  margin-top: 60px;
}
.step {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
  text-align: left;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.step .step-kicker {
  font-family: var(--font-body); font-weight: 700; font-size: var(--text-xs);
  letter-spacing: var(--tracking-caps); text-transform: uppercase; color: var(--blue-600);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
}
.step .step-ic {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  background: var(--wash-blue); color: var(--echo-blue);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.step .step-ic .ic { width: 22px; height: 22px; }
.step h3 { margin-bottom: 12px; }
.step p { margin: 0; font-size: var(--text-base); color: var(--fg2); line-height: var(--leading-normal); }
.step .thread { display: none; }

/* =====================================================================
   USE CASES — numbered list
   ===================================================================== */
.usecases {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(5, auto);
  grid-auto-flow: column;
  column-gap: 56px;
}
.usecase {
  break-inside: avoid;
  display: flex; gap: 22px; align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.usecase .num {
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--text-lg); color: var(--gold-500);
  font-variant-numeric: tabular-nums; flex-shrink: 0; min-width: 1.6em;
  letter-spacing: -0.01em;
}
.usecase p { margin: 0; font-size: var(--text-md); color: var(--ink-700); line-height: 1.45; }
.usecase:hover .num { color: var(--moment-gold); }
.usecases-foot {
  text-align: center; margin-top: 52px;
  font-family: var(--font-display); font-weight: 600;
  font-size: var(--text-xl); color: var(--ink-800);
}

/* =====================================================================
   QUOTE BAND
   ===================================================================== */
.quote-band {
  position: relative; overflow: hidden;
  background-color: var(--ink-900);
  background-image:
    linear-gradient(to bottom, rgba(10,15,24,.84), rgba(10,15,24,.74) 45%, rgba(10,15,24,.9)),
    url("../images/design/quote-bg.8acca6366562.jpg");
  background-size: cover; background-position: center;
  color: #fff; text-align: center;
  padding: clamp(96px, 12vw, 160px) 0;
}
.quote-band .wrap-narrow { max-width: 1180px; }
.quote-band .spark { margin: 0 auto 32px; }
/* standalone centered lock in the quote band (replaces the diamond) */
.quote-band .quote-lock {
  display: block;
  width: 30px; height: 30px;
  margin: 0 auto 28px;
  background: none;
  transform: none;
  border-radius: 0;
  box-shadow: none;
  color: var(--moment-gold);
}
.quote-band .quote-lock svg { width: 30px; height: 30px; display: block; margin: 0 auto; }
.quote-band blockquote {
  margin: 0 auto; max-width: 34ch;
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.8rem, 3.6vw, 2.9rem); line-height: 1.28; letter-spacing: -0.02em;
  color: #fff; text-wrap: balance;
}
.quote-band .quote-foot {
  margin: 34px auto 0; max-width: 56ch;
  font-family: var(--font-body); font-size: var(--text-md);
  line-height: var(--leading-normal); color: rgba(243,245,248,.74);
}

/* =====================================================================
   CLOSING
   ===================================================================== */
.closing { text-align: center; }
.closing .eyebrow { margin-bottom: 20px; }
.closing h2 { max-width: 22ch; margin: 0 auto 26px; }
.closing .lead { max-width: 60ch; margin: 0 auto; text-wrap: balance; }
.closing .lead.lg { max-width: 52ch; }
.closing .lead + .lead { margin-top: 18px; }

/* Wider closing container for "Capturing presence" — better balance on desktop */
#presence .wrap-narrow.closing { max-width: 1000px; }
#presence .closing h2 { max-width: 18ch; }
#presence .closing .lead { max-width: none; }
#presence .closing .lead.lg { max-width: none; }

/* final CTA card */
.cta-card {
  margin: 64px auto 0; max-width: 920px;
  background: var(--wash-blue);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-xl);
  padding: clamp(48px, 6vw, 72px) clamp(32px, 5vw, 56px);
  text-align: center; position: relative; overflow: hidden;
}
.cta-card .cta-mark {
  position: absolute; right: -50px; top: -50px; width: 260px; opacity: 0.10; pointer-events: none;
}
.cta-card h2 { margin-bottom: 16px; }
.cta-card .lead { max-width: 46ch; margin: 0 auto 32px; }
.cta-card .hero-actions { justify-content: center; margin-top: 0; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { background: var(--ink-800); color: #fff; }
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px;
  padding: 72px 32px 44px; max-width: 1180px; margin: 0 auto;
}
.footer-brand .logo { height: 28px; margin-bottom: 18px; }
.footer-brand p { font-size: var(--text-base); line-height: var(--leading-normal); color: rgba(243,245,248,.6); max-width: 30ch; margin: 0; }
.footer-col h4 {
  font-family: var(--font-body); font-weight: 700; font-size: var(--text-xs);
  letter-spacing: .1em; text-transform: uppercase; color: rgba(243,245,248,.5); margin: 0 0 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-family: var(--font-body); font-size: var(--text-base); color: rgba(243,245,248,.82); text-decoration: none; }
.footer-col a:hover { color: #fff; }
.footer-bar {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 32px; max-width: 1180px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bar span { font-family: var(--font-body); font-size: var(--text-sm); color: rgba(243,245,248,.5); }
.footer-bar .ds-note { color: rgba(243,245,248,.4); }

/* =====================================================================
   SCROLL REVEAL
   ===================================================================== */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
body[data-motion="off"] [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .badge .dot, .scroll-hint .ic { animation: none !important; }
}

/* =====================================================================
   WHO IS IT FOR — audience cards
   ===================================================================== */
.audience-grid {
  margin-top: 56px;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 24px;
}
.aud-card {
  flex: 1 1 300px; max-width: 364px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 36px 32px;
  text-align: left;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.aud-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.aud-ic {
  width: 54px; height: 54px; border-radius: var(--radius-md);
  background: var(--wash-blue); color: var(--echo-blue);
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
}
.aud-ic .ic { width: 26px; height: 26px; }
.aud-card h3 { margin-bottom: 10px; }
.aud-card p { margin: 0; color: var(--fg2); font-size: var(--text-base); line-height: var(--leading-normal); }

/* =====================================================================
   REAL-WORLD EXAMPLES — horizontal carousels
   ===================================================================== */
/* control bar (swipe hint + arrows) */
.ex-controls {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin: 44px 0 18px;
}
.ex-controls--end { justify-content: flex-end; }
.ex-hint {
  display: inline-flex; align-items: center; gap: 9px; margin: 0;
  font-family: var(--font-body); font-weight: 700; font-size: var(--text-xs);
  letter-spacing: var(--tracking-caps); text-transform: uppercase; color: var(--fg3);
}
.ex-hint .ic { width: 16px; height: 16px; color: var(--echo-blue); }
.ex-arrows { display: flex; gap: 10px; flex: none; }
.ex-arrow {
  width: 46px; height: 46px; border-radius: var(--radius-pill);
  border: 1px solid var(--border-strong); background: var(--surface);
  color: var(--ink-700); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out), opacity var(--dur-fast) var(--ease-out);
}
.ex-arrow:hover:not(:disabled) { color: var(--echo-blue); border-color: var(--echo-blue); box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.ex-arrow:active:not(:disabled) { transform: scale(.94); }
.ex-arrow:disabled { opacity: .34; cursor: not-allowed; }
.ex-arrow .ic { width: 20px; height: 20px; }

/* scrolling track */
.ex-carousel { position: relative; }
.ex-track {
  display: flex; gap: 22px; align-items: stretch;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding: 8px 4px 26px; margin: -8px -4px 0;
  scrollbar-width: none; -ms-overflow-style: none;
}
.ex-track::-webkit-scrollbar { display: none; }
.ex-track.dragging { scroll-behavior: auto; scroll-snap-type: none; cursor: grabbing; }
.ex-track.dragging * { cursor: grabbing; }

/* example card */
.ex-card {
  scroll-snap-align: start; flex: 0 0 auto;
  width: clamp(286px, 80vw, 342px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 30px 28px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.ex-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue-100); }
/* NOTE: for the landing page these are overridden by `#examples .ex-watermark`
   (the gold wax-seal disc) further down, since every .ex-card lives inside
   #examples. This base rule is the fallback if .ex-card is used elsewhere. */
.ex-card .ex-watermark {
  position: absolute; right: -20px; bottom: -24px; width: 124px; height: 124px;
  color: var(--moment-gold); opacity: .09; pointer-events: none;
}
.ex-card .ex-watermark .ic { width: 100%; height: 100%; }
.ex-head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
  margin-bottom: 22px; position: relative; z-index: 1;
}
.ex-cat {
  display: flex; align-items: center; gap: 12px; min-width: 0;
  font-family: var(--font-display); font-weight: 600; font-size: var(--text-base);
  color: var(--ink-800); line-height: 1.2;
}
.ex-cat .cat-ic {
  width: 42px; height: 42px; border-radius: var(--radius-md); flex: none;
  background: var(--wash-blue); color: var(--echo-blue);
  display: flex; align-items: center; justify-content: center;
}
.ex-cat .cat-ic .ic { width: 21px; height: 21px; }
.ex-status {
  display: inline-flex; align-items: center; gap: 6px; flex: none;
  font-family: var(--font-body); font-weight: 700; font-size: var(--text-xs);
  letter-spacing: var(--tracking-caps); text-transform: uppercase;
  color: var(--gold-700); background: var(--wash-gold);
  padding: 6px 11px; border-radius: var(--radius-pill);
}
.ex-status .ic { width: 13px; height: 13px; }
.ex-quote {
  margin: 0 0 24px; position: relative; padding-top: 20px; z-index: 1;
  font-family: var(--font-display); font-weight: 500; font-style: italic;
  font-size: var(--text-lg); line-height: 1.42; color: var(--ink-700);
}
.ex-quote::before {
  content: "\201C"; position: absolute; top: -12px; left: -4px;
  font-family: var(--font-display); font-size: 3.2rem; line-height: 1; color: var(--gold-400);
}
.ex-unlock {
  margin-top: auto; padding-top: 18px; border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px; position: relative; z-index: 1;
  font-family: var(--font-body); font-weight: 700; font-size: var(--text-sm);
  color: var(--blue-600);
}
.ex-unlock .ic { width: 18px; height: 18px; flex: none; color: var(--echo-blue); }

/* =====================================================================
   WEDDING VAULT — standalone feature section (after examples)
   ===================================================================== */
.vault-feature {
  max-width: 980px; margin: 0 auto;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-xl); box-shadow: var(--shadow-md);
  display: grid; grid-template-columns: 1.2fr .82fr; gap: clamp(32px, 5vw, 56px);
  align-items: center; padding: clamp(36px, 5vw, 56px); overflow: hidden;
  position: relative;
}
.vault-feature .vf-text h2 { margin: 16px 0 14px; max-width: 16ch; }
.vault-feature .vf-text p { margin: 0; color: var(--fg2); font-size: var(--text-md); line-height: var(--leading-normal); max-width: 46ch; }
.vault-feature .vf-cat {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 600; font-size: var(--text-base); color: var(--ink-800);
}
.vault-feature .vf-cat .cat-ic {
  width: 42px; height: 42px; border-radius: var(--radius-md); flex: none;
  background: var(--wash-blue); color: var(--echo-blue);
  display: flex; align-items: center; justify-content: center;
}
.vault-feature .vf-cat .cat-ic .ic { width: 21px; height: 21px; }
.vf-panel {
  background: var(--wash-blue); border: 1px solid var(--blue-100);
  border-radius: var(--radius-lg); padding: 38px 28px; text-align: center;
  display: flex; flex-direction: column; justify-content: center; align-self: stretch;
}
.vf-keyhole {
  width: 62px; height: 62px; margin: 0 auto 18px; border-radius: var(--radius-pill);
  background: var(--surface); color: var(--echo-blue);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm); position: relative;
}
.vf-keyhole::after { content: ""; position: absolute; inset: -7px; border-radius: var(--radius-pill); border: 2px solid var(--spark-soft); }
.vf-keyhole .ic { width: 28px; height: 28px; }
.vf-when { font-family: var(--font-display); font-weight: 600; font-size: var(--text-md); color: var(--ink-800); margin: 0 0 8px; line-height: 1.3; }
.vf-note { margin: 0; font-family: var(--font-body); font-size: var(--text-base); color: var(--fg2); line-height: var(--leading-normal); }
.vault-cta { display: flex; justify-content: center; margin-top: 40px; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 880px) {
  .vault-feature { grid-template-columns: 1fr; gap: 28px; }
  .header-nav { display: none; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.flip.people-split { grid-template-columns: 1fr; }
  .split.flip.people-split .split-media-wrap,
  .split.flip.people-split .split-media { min-height: 0; height: auto; }
  .split.flip .split-media { order: 0; }
  .split-media { aspect-ratio: 5 / 4; }
  .steps { grid-template-columns: 1fr; gap: 18px; }
  .usecases { grid-template-columns: 1fr; grid-template-rows: none; grid-auto-flow: row; }
  .hero { min-height: 88vh; }
}
@media (max-width: 560px) {
  .wrap, .header-inner, .hero-inner { padding-left: 22px; padding-right: 22px; }
  .hero-actions .btn, .cta-card .btn { width: 100%; }
}

/* =====================================================================
   ░░  REDESIGN LAYER  ░░
   Premium, editorial pass — stronger section contrast, photographic
   atmosphere, fewer white cards, layered compositions.
   ===================================================================== */

/* ---- shared: dark-section type ------------------------------------- */
.on-dark h2, .on-dark .h2, .narrative.on-dark h2 { color: #fff; }
.narrative.on-dark .lead { color: rgba(255,255,255,.80); }
.narrative.on-dark h2 em { color: var(--gold-300); }
.narrative.on-dark .spark-row .line { background: rgba(255,255,255,.34); opacity: 1; }
.narrative.on-dark .refrain { color: #fff; }
.narrative.on-dark .refrain span + span { color: rgba(255,255,255,.66); }
.narrative.on-dark .refrain span:last-child { color: var(--blue-300); }

/* =====================================================================
   MORE THAN A MEMORY → dark, atmospheric emotive moment
   ===================================================================== */
.section.emotive {
  position: relative; overflow: hidden;
  background-color: #0c1320;
  color: #fff;
}
.emotive-media {
  position: absolute; inset: 0;
  background-color: var(--ink-900);
  background-image:
    linear-gradient(to bottom, rgba(10,15,26,.84), rgba(10,15,26,.76) 48%, rgba(10,15,26,.92)),
    url("../images/design/emotive-bg.a3b8345f9f03.jpg");
  background-size: cover; background-position: center;
  transform: scale(1.03);
}
.emotive-loop {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: min(760px, 84vw); opacity: .05; pointer-events: none;
  filter: brightness(0) invert(1);
}
.section.emotive .narrative { position: relative; z-index: 2; }

/* =====================================================================
   SPLITS → layered photographic composition (offset frame + tag chip)
   ===================================================================== */
.split-media-wrap { position: relative; }
.split.flip .split-media-wrap { order: -1; }
.split.flip .split-media { order: 0; }
.split-media-wrap .split-media { position: relative; z-index: 1; }
.split-accent {
  position: absolute; z-index: 0;
  inset: 26px -26px -26px 26px;
  border-radius: var(--radius-xl);
  background: var(--wash-blue);
  border: 1px solid var(--blue-100);
}
.split.flip .split-accent { inset: 26px 26px -26px -26px; }
.split-tag {
  position: absolute; z-index: 3; left: 18px; bottom: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.92);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  color: var(--ink-800);
  font-family: var(--font-body); font-weight: 700; font-size: var(--text-xs);
  letter-spacing: .02em;
  padding: 9px 15px; border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
}
.split-tag .ic { width: 15px; height: 15px; color: var(--echo-blue); }

/* =====================================================================
   WHO IS IT FOR → editorial, borderless (no white-card repetition)
   ===================================================================== */
.audience-sec { background: var(--canvas); }
.audience-sec .audience-grid { gap: 30px 40px; }
.audience-sec .aud-card {
  position: relative;
  background: transparent;
  border: none;
  border-top: 1px solid var(--border);
  border-radius: 0;
  box-shadow: none;
  padding: 28px 6px 6px;
  max-width: 300px;
}
.audience-sec .aud-card::before {
  content: ""; position: absolute; top: -1px; left: 0;
  width: 42px; height: 2px; background: var(--moment-gold);
}
.audience-sec .aud-card:hover { transform: none; box-shadow: none; }
.audience-sec .aud-card:hover .aud-ic { transform: translateY(-3px); }
.audience-sec .aud-ic {
  width: 50px; height: 50px;
  background: transparent;
  border: 1.5px solid var(--blue-200);
  color: var(--echo-blue);
  transition: transform var(--dur-base) var(--ease-spring);
}

/* =====================================================================
   HOW IT WORKS → numbered storyline (ghost numerals, airier cards)
   ===================================================================== */
.section.wash .steps { counter-reset: step; }
.section.wash .step {
  border: none;
  box-shadow: var(--shadow-md);
  padding-top: 60px;
  overflow: hidden;
}
.section.wash .step::before {
  counter-increment: step; content: "0" counter(step);
  position: absolute; top: 20px; right: 26px;
  font-family: var(--font-display); font-weight: 700; font-size: 3rem;
  line-height: 1; color: var(--blue-100);
}
.section.wash .step .step-ic {
  width: 50px; height: 50px; border-radius: var(--radius-pill);
  position: relative;
}
.section.wash .step .step-ic::after {
  content: ""; position: absolute; inset: -5px; border-radius: var(--radius-pill);
  border: 1.5px solid var(--blue-100);
}

/* =====================================================================
   REAL-WORLD EXAMPLES → immersive photographic "sealed" cards
   on a deep gallery band
   ===================================================================== */
.section.examples-gallery {
  position: relative; overflow: hidden; color: #fff;
  background-color: #0a1019;
  background-image:
    radial-gradient(130% 90% at 50% -20%, rgba(21,138,255,.22), transparent 58%),
    linear-gradient(to bottom, #0e1828, #0a1019 70%);
}
.section.examples-gallery .narrative { position: relative; z-index: 2; }
.section.examples-gallery .narrative .lead { color: rgba(255,255,255,.74); }
.section.examples-gallery .ex-hint { color: rgba(255,255,255,.58); }
.section.examples-gallery .ex-hint .ic { color: var(--blue-300); }
.section.examples-gallery .ex-arrow {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.22);
  color: #fff;
}
.section.examples-gallery .ex-arrow:hover:not(:disabled) {
  color: #fff; border-color: var(--blue-300);
  background: rgba(255,255,255,.18); box-shadow: none; transform: translateY(-1px);
}
.section.examples-gallery .ex-arrow:disabled { opacity: .28; }

.section.examples-gallery .ex-card {
  width: clamp(290px, 82vw, 358px);
  min-height: 460px;
  padding: 26px 26px 28px;
  background: var(--ink-800);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 22px 50px rgba(0,0,0,.45);
  justify-content: flex-end;
  color: #fff;
}
.section.examples-gallery .ex-card::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-color: var(--ink-700);
  background-size: cover; background-position: center;
  transition: transform var(--dur-slow) var(--ease-out);
}
.section.examples-gallery .ex-card::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top,
    rgba(7,11,18,.95) 6%, rgba(7,11,18,.58) 46%, rgba(7,11,18,.30) 74%, rgba(7,11,18,.46));
}
.section.examples-gallery .ex-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,.26);
  box-shadow: 0 30px 64px rgba(0,0,0,.6);
}
.section.examples-gallery .ex-card:hover::before { transform: scale(1.06); }
.section.examples-gallery .ex-watermark { display: none; }
.section.examples-gallery .ex-head,
.section.examples-gallery .ex-quote,
.section.examples-gallery .ex-unlock { position: relative; z-index: 2; }
.section.examples-gallery .ex-head { margin-bottom: 0; }
.section.examples-gallery .ex-cat { color: #fff; }
.section.examples-gallery .ex-cat .cat-ic {
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.24);
  color: #fff;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.section.examples-gallery .ex-status {
  color: var(--ink-900); background: var(--moment-gold);
  box-shadow: 0 4px 12px rgba(249,192,11,.35);
}
.section.examples-gallery .ex-quote {
  margin-top: auto;
  color: rgba(255,255,255,.94);
  font-size: var(--text-md);
}
.section.examples-gallery .ex-quote::before { color: var(--gold-300); opacity: .9; }
.section.examples-gallery .ex-unlock {
  border-top-color: rgba(255,255,255,.18);
  color: var(--blue-200);
}
.section.examples-gallery .ex-unlock .ic { color: var(--gold-300); }

/* per-card photography */
.section.examples-gallery .ex-card:nth-child(1)::before { background-image: url("../images/design/misc-03cf8f80.fe311c37bb90.jpg"); }
.section.examples-gallery .ex-card:nth-child(2)::before { background-image: url("../images/design/misc-fab7dc22.eb512bbfc0a3.jpg"); }
.section.examples-gallery .ex-card:nth-child(3)::before { background-image: url("../images/design/ex-03.22e5b2e6f7c1.jpg"); }
.section.examples-gallery .ex-card:nth-child(4)::before { background-image: url("../images/design/misc-32b2707e.e3f8a855badd.jpg"); }
.section.examples-gallery .ex-card:nth-child(5)::before { background-image: url("../images/design/ex-05.37232152c4d7.jpg"); }
.section.examples-gallery .ex-card:nth-child(6)::before { background-image: url("../images/design/ex-06.2b5e10af2e20.jpg"); }
.section.examples-gallery .ex-card:nth-child(7)::before { background-image: url("../images/design/ex-07.08e01f6ea7ff.jpg"); }
.section.examples-gallery .ex-card:nth-child(8)::before { background-image: url("../images/design/ex-08.05f7694e01af.jpg"); }
.section.examples-gallery .ex-card:nth-child(9)::before { background-image: url("../images/design/ex-09.f825c521ff46.jpg"); }
.section.examples-gallery .ex-card:nth-child(10)::before { background-image: url("../images/design/ex-10.94ca6b557d04.jpg"); }
.section.examples-gallery .ex-card:nth-child(11)::before { background-image: url("../images/design/ex-11.d7c0d2237f55.jpg"); }

/* =====================================================================
   WEDDING → "From yes to I do" premium full-bleed feature moment
   ===================================================================== */
.wedding {
  background: var(--canvas);
  padding: clamp(72px, 9vw, 128px) 0;
}
.wedding-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 32px;
}
.wedding-panel {
  display: grid; grid-template-columns: 1.02fr 1.1fr;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--ink-900);
  min-height: 460px;
}

/* photo side */
.wedding-figure {
  position: relative;
  background-color: var(--ink-800);
  background-image: url("../images/design/wedding.b950604f0319.jpg");
  background-size: cover; background-position: center 28%;
  min-height: 320px;
}
.wedding-figure::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,12,16,.7) 0%, rgba(12,12,16,.1) 34%, transparent 60%);
}
.wf-tag {
  position: absolute; z-index: 1; left: 26px; bottom: 26px;
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.94);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  color: var(--ink-800);
  font-family: var(--font-body); font-weight: 700; font-size: var(--text-sm);
  letter-spacing: .01em;
  padding: 11px 18px; border-radius: var(--radius-pill);
  box-shadow: 0 12px 30px rgba(0,0,0,.3);
}
.wf-tag .ic { width: 15px; height: 15px; color: var(--gold-600); }

/* content side (dark, solid — fully readable) */
.wedding-body {
  position: relative;
  padding: clamp(34px, 3.4vw, 52px);
  display: flex; flex-direction: column; justify-content: center;
  color: #fff;
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(21,138,255,.14), transparent 58%),
    linear-gradient(180deg, var(--ink-900), #0f1a28);
}
.wedding-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-body); font-weight: 700;
  font-size: var(--text-sm); letter-spacing: var(--tracking-caps);
  text-transform: uppercase; color: var(--gold-300); margin: 0 0 16px;
}
.wedding-eyebrow .we-rule { width: 36px; height: 1px; background: var(--gold-400); }
.wedding-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: calc(clamp(1.9rem, 2.8vw, 2.5rem) * var(--head-scale));
  line-height: 1.08; letter-spacing: -0.025em; color: #fff;
  margin: 0 0 14px; max-width: 17ch; text-wrap: balance;
}
.wedding-lead {
  font-family: var(--font-body); font-size: var(--text-md); line-height: 1.55;
  color: rgba(255,255,255,.78); max-width: 42ch; margin: 0 0 26px;
}
.wedding-journey {
  list-style: none; margin: 0 0 28px; padding: 0;
  display: flex; flex-direction: column;
}
.wj-step { display: flex; align-items: center; gap: 16px; padding: 6px 0; position: relative; }
.wj-ic {
  width: 42px; height: 42px; border-radius: var(--radius-pill); flex: none;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.18);
  color: var(--gold-300);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.wj-ic .ic { width: 19px; height: 19px; }
.wj-step:not(:last-child) .wj-ic::after {
  content: ""; position: absolute; left: 50%; top: 100%; transform: translateX(-50%);
  width: 1px; height: 16px; background: rgba(255,255,255,.2);
}
.wj-label {
  font-family: var(--font-display); font-weight: 600; font-size: var(--text-base);
  color: rgba(255,255,255,.94); line-height: 1.3;
}
.wedding-foot {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
}
.wedding .vault-cta { display: contents; }
.wedding-note {
  margin: 0; font-family: var(--font-body); font-style: italic;
  font-size: var(--text-base); color: rgba(255,255,255,.6);
}

/* =====================================================================
   CLOSING CTA → rich blue band finish
   ===================================================================== */
.cta-card {
  background: linear-gradient(135deg, var(--blue-700) 0%, var(--echo-blue) 52%, var(--blue-500) 100%);
  border: none;
  color: #fff;
  box-shadow: 0 32px 72px rgba(21,138,255,.36);
}
.cta-card h2 { color: #fff; }
.cta-card .lead { color: rgba(255,255,255,.9); }
.cta-card .cta-mark { opacity: .18; }
.cta-card .cta-spark {
  position: absolute; left: -40px; bottom: -40px;
  width: 200px; height: 200px; border-radius: 999px;
  background: radial-gradient(circle, rgba(249,192,11,.3), transparent 65%);
  pointer-events: none;
}
.btn-on-blue { background: #fff; color: var(--blue-700); box-shadow: var(--shadow-md); }
.btn-on-blue:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); background: #fff; }
.btn-on-blue:active { transform: scale(.97); }

/* =====================================================================
   WHO IT'S FOR → dark section, 3+2 card grid (reference design)
   ===================================================================== */
.audience-bento {
  background: #0d1522;
  padding-bottom: clamp(72px, 9vw, 120px);
}
.audience-bento .narrative { color: #fff; }
.audience-bento .narrative .eyebrow { color: var(--blue-300); }
.audience-bento .narrative .h2 { color: #fff; }
.audience-bento .narrative .spark-row .line { background: rgba(255,255,255,.28); opacity: 1; }
.audience-bento .narrative .spark-row .spark:not(.spark-lock) { background: var(--moment-gold); }
.audience-bento .narrative .spark-row .spark-lock { background: none; color: var(--moment-gold); }

/* 6-col grid: 3 equal top, 2 centred bottom */
.audience-bento .audience-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  max-width: none;
}
.audience-bento .aud-card:nth-child(1),
.audience-bento .aud-card:nth-child(2),
.audience-bento .aud-card:nth-child(3) { grid-column: span 2; }
.audience-bento .aud-card:nth-child(4) { grid-column: 2 / 4; }
.audience-bento .aud-card:nth-child(5) { grid-column: 4 / 6; }

/* card — solid dark navy surface */
.audience-bento .aud-card {
  position: relative; overflow: visible;
  background: #1a2338;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 18px;
  box-shadow: none; max-width: none; flex: none;
  padding: 28px 28px 30px;
  display: flex; flex-direction: column; justify-content: flex-start; gap: 0;
  transition: border-color var(--dur-base) var(--ease-out),
              background var(--dur-base) var(--ease-out);
}
.audience-bento .aud-card::before,
.audience-bento .aud-card::after { display: none; }
.audience-bento .aud-card:hover {
  background: #1f2a42;
  border-color: rgba(255,255,255,.14);
  transform: none; box-shadow: none;
}

/* icon box */
.audience-bento .aud-card .aud-ic {
  width: 48px; height: 48px; border-radius: 12px; flex: none;
  background: rgba(21,138,255,.16);
  border: none;
  color: var(--echo-blue);
  display: flex; align-items: center; justify-content: center;
  margin: 0 0 18px;
  transition: background var(--dur-base) var(--ease-out);
}
.audience-bento .aud-card:hover .aud-ic { background: rgba(21,138,255,.22); transform: none; }
.audience-bento .aud-card .aud-ic .ic { width: 22px; height: 22px; }

/* gold rule */
.audience-bento .aud-card .aud-ic + *::before,
.audience-bento .aud-card h3::before {
  content: ""; display: block;
  width: 24px; height: 3px; border-radius: 2px;
  background: var(--moment-gold);
  margin-bottom: 14px;
}

/* title */
.audience-bento .aud-card h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--text-lg); color: #fff;
  margin: 0 0 10px; line-height: 1.2;
}
.audience-bento .aud-card:nth-child(1) h3,
.audience-bento .aud-card:nth-child(4) h3,
.audience-bento .aud-card:nth-child(5) h3 { font-size: var(--text-xl); }

/* body */
.audience-bento .aud-card p {
  color: rgba(255,255,255,.58); font-size: var(--text-sm);
  line-height: 1.55; margin: 0; max-width: 36ch;
}

/* =====================================================================
   REDESIGN — responsive
   ===================================================================== */
@media (max-width: 880px) {
  .wedding-panel { grid-template-columns: 1fr; min-height: 0; }
  .wedding-figure { min-height: 260px; order: -1; }
  .split-accent { inset: 18px -18px -18px 18px; }
  .split.flip .split-accent { inset: 18px 18px -18px -18px; }
  .audience-bento .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-bento .aud-card:nth-child(n) { grid-column: span 1; }
}
@media (max-width: 560px) {
  .wedding-inner { padding-left: 22px; padding-right: 22px; }
  .wedding-foot { gap: 16px; }
  .audience-bento .audience-grid { grid-template-columns: 1fr; }
  .audience-bento .aud-card:nth-child(n) { grid-column: 1; }
}

/* =====================================================================
   ░░  REAL MOMENTS → "sealed keepsake" cards  ░░  (scoped to #examples)
   Photographic window + gold wax-seal spark + readable content beneath.
   ===================================================================== */
#examples { position: relative; overflow: hidden; }
#examples .ex-track { padding-top: 6px; }

#examples .ex-card {
  width: clamp(300px, 82vw, 350px);
  min-height: 466px;
  padding: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
#examples .ex-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-100);
}

/* photographic window */
#examples .ex-card::before {
  content: ""; display: block; flex: none; height: 196px;
  background-color: var(--ink-700);
  background-size: cover; background-position: center;
}
/* cohesive brand-toned wash over the photo */
#examples .ex-card::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 196px;
  z-index: 2; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(13,22,36,.04) 0%, rgba(13,22,36,.10) 55%, rgba(13,22,36,.34) 100%),
    linear-gradient(125deg, rgba(21,138,255,.12), rgba(249,192,11,.06) 70%);
}

/* gold wax seal (repurposed watermark) overlapping the window edge */
#examples .ex-watermark {
  inset: auto 24px auto auto; top: 168px; z-index: 4;
  width: 52px; height: 52px; opacity: 1;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, var(--gold-300), var(--gold-500));
  color: var(--ink-900);
  border: 3px solid var(--surface);
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 18px rgba(249,192,11,.42);
}
#examples .ex-watermark .ic { width: 22px; height: 22px; }

/* content — clean, readable, strong hierarchy */
#examples .ex-head { padding: 24px 26px 0; margin: 0 0 10px; }
#examples .ex-cat .cat-ic { display: none; }
#examples .ex-status { display: none; }
#examples .ex-cat {
  display: block;
  font-family: var(--font-display); font-weight: 700;
  font-size: calc(var(--text-xl) * 1.08); line-height: 1.18;
  letter-spacing: var(--tracking-snug); color: var(--ink-800);
  max-width: 22ch;
}
#examples .ex-quote {
  position: relative; padding: 6px 26px 0; margin: 0 0 14px;
  font-size: var(--text-md); line-height: 1.46; color: var(--ink-600);
}
#examples .ex-quote::before {
  top: -8px; left: 20px; font-size: 2.8rem; color: var(--gold-300);
}
#examples .ex-unlock {
  margin-top: auto;
  padding: 16px 26px 22px;
  border-top: 1px solid var(--border);
}

/* per-card photography */
#examples .ex-card:nth-child(1)::before  { background-image: url("../images/design/ex-01.d99023d5d1ab.jpg"); }
#examples .ex-card:nth-child(2)::before  { background-image: url("../images/design/ex-02.1555fc79cd36.jpg"); }
#examples .ex-card:nth-child(3)::before  { background-image: url("../images/design/ex-03.22e5b2e6f7c1.jpg"); }
#examples .ex-card:nth-child(4)::before  { background-image: url("../images/design/ex-04.f9724a50553e.jpg"); }
#examples .ex-card:nth-child(5)::before  { background-image: url("../images/design/ex-05.37232152c4d7.jpg"); }
#examples .ex-card:nth-child(6)::before  { background-image: url("../images/design/ex-06.2b5e10af2e20.jpg"); }
#examples .ex-card:nth-child(7)::before  { background-image: url("../images/design/ex-07.08e01f6ea7ff.jpg"); }
#examples .ex-card:nth-child(8)::before  { background-image: url("../images/design/ex-08.05f7694e01af.jpg"); }
#examples .ex-card:nth-child(9)::before  { background-image: url("../images/design/ex-09.f825c521ff46.jpg"); }
#examples .ex-card:nth-child(10)::before { background-image: url("../images/design/ex-10.94ca6b557d04.jpg"); }
#examples .ex-card:nth-child(11)::before { background-image: url("../images/design/ex-11.d7c0d2237f55.jpg"); }

/* "Welcome to the world" & "From yes to I do" — featured keepsakes */
#examples .ex-card:nth-child(1),
#examples .ex-card:nth-child(2) {
  box-shadow: 0 10px 30px rgba(249,192,11,.12), var(--shadow-sm);
}
/* all images now uniform 196px — no per-card height override needed */


/* =====================================================================
   LANDING REDESIGN — synced from docs/design/demo_design/landing
   Additive + override rules for the updated landing page only.
   Appended last so updated rules win over the originals above.
   (No app-wide selectors changed; safe for other base.html consumers.)
   ===================================================================== */

.people-split {
  grid-template-columns: 0.85fr 1.15fr;
  align-items: stretch;
}
.people-split .split-media-wrap,
.people-split .split-media {
  height: 100%;
  min-height: 520px;
}
.people-split .split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 0;
}
.people-split .split-text h2 {
  max-width: 26ch;
}
.people-split .split-text .lead {
  max-width: 54ch;
}
.spark-row-left {
  justify-content: flex-start;
  margin-bottom: 20px;
  padding: 0;
}
.spark-row-left .line:first-child {
  display: none;
}
.spark-row-left .line:last-child {
  flex: 0 0 32px;
  max-width: 32px;
}
.presence-sec {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #0c1828 0%, #0e1f34 50%, #0a1420 100%);
  padding: clamp(96px, 12vw, 160px) 0;
  color: #fff;
  text-align: center;
}
.presence-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 9999px;
}
.presence-glow-1 {
  width: 900px;
  height: 500px;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(21,138,255,.22), transparent 68%);
}
.presence-glow-2 {
  width: 600px;
  height: 400px;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(249,192,11,.10), transparent 65%);
}
.presence-loop {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(860px, 94vw);
  transform: translate(-50%, -50%) rotate(-5deg);
  opacity: .04;
  pointer-events: none;
  filter: brightness(0) invert(1);
}
.presence-inner {
  position: relative;
  z-index: 1;
  max-width: 840px;
}
.presence-h2 {
  color: #fff;
  font-size: calc(clamp(2.2rem, 4.2vw, 3.4rem) * var(--head-scale));
  margin: 0 auto 52px;
}
.presence-quote {
  margin: 0 auto 52px;
  padding: 0;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.presence-quote p {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,.94);
  margin: 0;
  text-wrap: balance;
}
.presence-quote p:last-of-type {
  color: rgba(255,255,255,.74);
}
.presence-quote em {
  font-style: italic;
  color: var(--gold-300);
}
.pq-rule {
  display: block;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
  margin: 18px 0;
  flex: none;
}
.presence-body {
  max-width: 58ch;
  margin: 0 auto;
  text-align: center;
}
.presence-body .lead {
  color: rgba(255,255,255,.68);
  font-size: var(--text-md);
  max-width: none;
  margin: 0 auto;
}
.presence-body .lead + .lead {
  margin-top: 16px;
}
.presence-refrain {
  margin-top: 52px;
  padding-top: 40px;
  position: relative;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xl);
  line-height: 1.3;
  color: rgba(255,255,255,.88);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.presence-refrain::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-300), var(--gold-500));
  box-shadow: 0 0 18px rgba(249,192,11,.6);
}
.presence-refrain span:last-child {
  color: var(--blue-300);
  font-size: calc(var(--text-xl) * 1.1);
}
.presence-plain {
  position: relative;
  overflow: hidden;
}
.presence-side-mark {
  position: absolute;
  left: -120px;
  top: 0;
  bottom: 0;
  margin: auto;
  height: fit-content;
  transform: translateY(-10%) rotate(-10deg);
  width: clamp(280px, 26vw, 340px);
  opacity: .08;
  pointer-events: none;
}
.presence-top-mark {
  display: none;
}
.presence-side-glow {
  position: absolute;
  left: -180px;
  top: 50%;
  width: 620px;
  height: 620px;
  transform: translateY(-50%);
  border-radius: 9999px;
  background: radial-gradient(ellipse, rgba(21,138,255,.10), transparent 68%);
  pointer-events: none;
  z-index: 0;
}
.presence-plain .wrap-narrow {
  position: relative;
  z-index: 1;
}
.presence-plain .wrap {
  position: relative;
  z-index: 1;
}
.section.wash.journey {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(90% 70% at 88% 0%, rgba(249,192,11,.10), transparent 55%),
    linear-gradient(170deg, var(--wash-blue) 0%, #fdfcf8 78%);
}
.journey-loop {
  position: absolute;
  right: -180px;
  bottom: -160px;
  width: 620px;
  opacity: .055;
  transform: rotate(10deg);
  pointer-events: none;
}
.journey .wrap {
  position: relative;
  z-index: 1;
}
.journey .steps {
  counter-reset: step;
  position: relative;
  margin-top: 72px;
  gap: 44px;
}
.journey .steps::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 11%;
  right: 11%;
  border-top: 2px dashed var(--blue-200);
}
.section.wash.journey .step {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0 8px;
  padding-top: 0;
  overflow: visible;
  position: relative;
}
.section.wash.journey .step:hover {
  transform: none;
  box-shadow: none;
}
.section.wash.journey .step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: -34px;
  right: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 4.4rem;
  line-height: 1;
  color: rgba(21,138,255,.10);
  pointer-events: none;
}
.section.wash.journey .step .step-ic {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--blue-400), var(--blue-700));
  color: #fff;
  box-shadow: var(--shadow-blue);
  position: relative;
  z-index: 1;
  margin-bottom: 22px;
}
.section.wash.journey .step .step-ic .ic {
  width: 24px;
  height: 24px;
}
.section.wash.journey .step .step-ic::after {
  content: "";
  position: absolute;
  top: -3px;
  right: -3px;
  width: 12px;
  height: 12px;
  border-radius: 2px;
  background: var(--moment-gold);
  transform: rotate(45deg);
  box-shadow: 0 0 0 3px rgba(249,192,11,.22);
}
.section.wash.journey .step .step-kicker {
  color: var(--gold-600);
}
.audience-bento::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(720px, 80vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(21,138,255,.55), rgba(249,192,11,.45), rgba(21,138,255,.55), transparent);
  pointer-events: none;
}
.audience-bento .aud-card::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  background-color: #1a2338;
  background-size: cover;
  background-position: center;
  transition: transform var(--dur-slow) var(--ease-out);
  z-index: 0;
}
.audience-bento .aud-card:nth-child(1)::before {
  background-image: url("../images/design/aud-parents.25bf4ea18e3c.jpg");
}
.audience-bento .aud-card:nth-child(2)::before {
  background-image: url("../images/design/aud-future.90454b3e80d8.jpg");
}
.audience-bento .aud-card:nth-child(3)::before {
  background-image: url("../images/design/aud-families.3860a259166e.jpg");
}
.audience-bento .aud-card:nth-child(4)::before {
  background-image: url("../images/design/aud-moments.21a6360fd295.jpg");
}
.audience-bento .aud-card:nth-child(5)::before {
  background-image: url("../images/design/aud-loved.b8e4ab72540f.jpg");
}
.audience-bento .aud-card::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top,
      rgba(9,14,23,.96) 8%, rgba(9,14,23,.60) 44%, rgba(13,21,34,.22) 72%, rgba(13,21,34,.30)),
    radial-gradient(80% 50% at 50% 110%, rgba(21,138,255,.18), transparent 65%);
}
.audience-bento .aud-card > * {
  position: relative;
  z-index: 2;
}
.audience-bento .aud-card:hover::before {
  transform: scale(1.05);
}
.audience-bento .aud-card .aud-ic::after {
  display: none;
}
.vault-sec {
  position: relative;
  overflow: hidden;
}
.vault-sec .wrap {
  position: relative;
  z-index: 1;
}
.vault-loop {
  position: absolute;
  left: -150px;
  top: -130px;
  width: 540px;
  opacity: .06;
  transform: rotate(-12deg);
  pointer-events: none;
}
.vault-loop-2 {
  left: auto;
  right: -180px;
  top: auto;
  bottom: -170px;
  width: 660px;
  opacity: .045;
  transform: rotate(9deg);
}
.section.sunk.keepsake {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(80% 90% at 85% 100%, rgba(249,192,11,.03), transparent 55%),
    radial-gradient(90% 80% at 10% 0%, rgba(21,138,255,.10), transparent 55%),
    linear-gradient(165deg, var(--wash-blue) 0%, var(--paper-sunk) 55%, var(--paper-sunk) 120%);
}
.keepsake-loop {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(880px, 96vw);
  transform: translate(-50%, -50%) rotate(-6deg);
  opacity: .05;
  pointer-events: none;
}
.keepsake .narrative {
  position: relative;
  z-index: 1;
}
.keepsake h2 em {
  font-style: normal;
  background: linear-gradient(transparent 68%, rgba(249,192,11,.45) 68%, rgba(249,192,11,.45) 92%, transparent 92%);
  padding: 0 .08em;
}
.keepsake .refrain {
  margin-top: 38px;
}
.keepsake .refrain span {
  position: relative;
  padding-top: 2px;
}
.keepsake .refrain span::before {
  content: "";
  display: block;
  margin: 0 auto 10px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--moment-gold);
  transform: rotate(45deg);
  opacity: .85;
}
.keepsake .refrain span:first-child::before {
  background: var(--blue-300);
}
.keepsake .refrain span:last-child::before {
  background: var(--echo-blue);
}
.uses-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(75% 70% at 95% 8%, rgba(21,138,255,.08), transparent 55%),
    linear-gradient(172deg, var(--paper) 0%, var(--wash-blue) 58%, #ffffff 100%);
}
.uses-loop {
  position: absolute;
  left: -140px;
  bottom: -130px;
  width: 440px;
  opacity: .05;
  transform: rotate(-7deg);
  pointer-events: none;
}
.uses-band .wrap {
  position: relative;
  z-index: 1;
}
.uses-composition {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr clamp(260px, 26vw, 330px) 1fr;
  gap: 0 clamp(32px, 4.5vw, 64px);
  align-items: stretch;
}
.uses-composition .usecases {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  column-gap: 0;
}
.uses-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(to top, rgba(13,21,34,.62) 0%, rgba(13,21,34,.08) 45%, rgba(13,21,34,.12) 100%),
    url("../images/design/uses-photo.cb3d94d8858e.jpg") center / cover no-repeat;
  box-shadow: 0 26px 56px rgba(120,86,10,.22);
  min-height: 480px;
  display: flex;
  align-items: flex-end;
}
.uses-photo .up-mark {
  position: absolute;
  top: -36px;
  right: -42px;
  width: 190px;
  opacity: .16;
  transform: rotate(10deg);
  pointer-events: none;
}
.uses-photo figcaption {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px 22px;
  background: rgba(255,255,255,.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--ink-800);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: .02em;
  padding: 9px 15px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
}
.uses-photo .up-dot {
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--moment-gold);
  transform: rotate(45deg);
}
.uses-band .usecase {
  border-bottom-color: rgba(216,170,30,.28);
  padding: 18px 0;
  align-items: center;
  transition: transform var(--dur-base) var(--ease-out);
}
.uses-band .usecase .num {
  line-height: 1;
}
.uses-band .uses-col .usecase:last-child {
  border-bottom: none;
}
.uses-band .usecase:hover {
  transform: translateX(4px);
}
.uses-band .usecase:hover .num {
  color: transparent;
}
.uses-band .usecase:hover p {
  color: var(--ink-900);
}
.uses-band .usecases-foot {
  color: var(--echo-blue);
}
.split.flip .split-media {
  order: -1;
}
#presence .wrap-narrow.closing {
  max-width: 1180px;
}
.cta-card {
  margin: 64px auto 0;
  max-width: 920px;
  background: linear-gradient(135deg, var(--blue-700) 0%, var(--echo-blue) 52%, var(--blue-500) 100%);
  border: none;
  border-radius: var(--radius-xl);
  padding: clamp(48px, 6vw, 72px) clamp(32px, 5vw, 56px);
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
  box-shadow: 0 32px 72px rgba(21,138,255,.36);
}
.cta-card .cta-mark {
  position: absolute;
  right: -50px;
  top: -50px;
  width: 260px;
  opacity: 0.18;
  pointer-events: none;
}
.cta-card h2 {
  margin-bottom: 16px;
  color: #fff;
}
.cta-card .lead {
  max-width: 46ch;
  margin: 0 auto 32px;
  color: rgba(255,255,255,.9);
}
.cta-card .cta-spark {
  display: none;
}
.audience-bento {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(60% 46% at 50% 0%, rgba(21,138,255,.28), transparent 65%),
    radial-gradient(50% 40% at 12% 92%, rgba(249,192,11,.07), transparent 60%),
    radial-gradient(46% 38% at 92% 78%, rgba(21,138,255,.10), transparent 60%),
    linear-gradient(180deg, #0a111d 0%, #0e1726 48%, #0a111d 100%);
  padding-bottom: clamp(72px, 9vw, 120px);
}
.audience-bento .aud-card {
  position: relative;
  overflow: hidden;
  background: #1a2338;
  border: 1px solid transparent;
  border-radius: 18px;
  background-clip: padding-box;
  box-shadow:
    0 0 0 1px rgba(120,170,255,.16),
    0 1px 0 rgba(255,255,255,.10) inset,
    0 24px 54px rgba(2,6,12,.62);
  max-width: none;
  flex: none;
  min-height: 340px;
  padding: 26px 28px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0;
  transition: box-shadow var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out);
}
.audience-bento .aud-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 0 0 1px rgba(120,170,255,.38),
    0 1px 0 rgba(255,255,255,.14) inset,
    0 18px 40px rgba(21,138,255,.20),
    0 30px 64px rgba(2,6,12,.7);
}
.audience-bento .aud-card .aud-ic {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  flex: none;
  background: linear-gradient(135deg, var(--blue-400), var(--blue-700));
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 16px;
  box-shadow:
    0 1px 0 rgba(255,255,255,.35) inset,
    0 8px 24px rgba(21,138,255,.55);
  position: relative;
}
.audience-bento .aud-card:hover .aud-ic {
  transform: none;
  background: linear-gradient(135deg, var(--blue-300), var(--blue-600));
}
.audience-bento .aud-card .aud-ic + *::before,
.audience-bento .aud-card h3::before {
  content: "";
  display: block;
  width: 24px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-300), var(--gold-500));
  box-shadow: 0 0 12px rgba(249,192,11,.55);
  margin-bottom: 14px;
}
.audience-bento .aud-card p {
  color: rgba(255,255,255,.78);
  font-size: var(--text-sm);
  line-height: 1.55;
  margin: 0;
  max-width: 36ch;
}

@media (max-width: 960px) {
  .uses-composition {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .uses-photo {
    min-height: 300px;
    order: -1;
  }
}

@media (max-width: 880px) {
  .journey .steps::before {
    display: none;
  }
  .section.wash.journey .step {
    padding: 0;
  }
  .section.wash.journey .step::before {
    top: -10px;
    right: 0;
    font-size: 3.2rem;
  }
  .audience-bento .aud-card {
    min-height: 280px;
  }
  .vault-loop, .vault-loop-2, .keepsake-loop, .journey-loop, .uses-loop {
    width: 420px;
  }
}
