/* ==========================================================
   UTILMATIC — Editorial Studio design system
   ========================================================== */

/* ---------- 1. TOKENS ---------- */
:root {
  /* palette — "Sorbet Modern": peppy but subtle */
  --paper:      #FCF9F0;
  --paper-2:    #F6EFDE;
  --cream:      #FFFDF6;
  --ink:        #15151E;
  --ink-soft:   #302D3F;
  --smoke:      #6E6A78;
  --line:       rgba(21, 21, 30, 0.10);
  --line-soft:  rgba(21, 21, 30, 0.06);

  /* Names kept semantic-neutral so every existing reference updates
     automatically. --forest is now indigo, --vermilion is now coral,
     --gold is now sunshine, --slate is now sky, --rose is now blush. */
  --forest:     #5B4FE9;   /* indigo — new peppy cool primary */
  --forest-2:   #4338CA;
  --vermilion:  #FF5A5F;   /* coral — new peppy hot accent */
  --slate:      #7AC6E8;   /* sky */
  --gold:       #FFCA4D;   /* sunshine */
  --rose:       #FFDDD8;   /* blush */

  /* type */
  --serif: "Fraunces", ui-serif, Georgia, serif;
  --sans:  "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* sizing */
  --container: 1240px;
  /* Fluid gutter: ~18px on narrow phones, ~28px on desktop, smooth in between.
     Replaces the old fixed 28px that cliffed to 20px only at 420px. */
  --gutter: clamp(18px, 5.2vw, 28px);

  /* motion */
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);

  /* shadows */
  --shadow-sm: 0 1px 2px rgba(13, 13, 14, 0.04), 0 2px 8px rgba(13, 13, 14, 0.04);
  --shadow-md: 0 8px 24px rgba(13, 13, 14, 0.06), 0 2px 8px rgba(13, 13, 14, 0.04);
  --shadow-lg: 0 24px 64px rgba(13, 13, 14, 0.10), 0 8px 24px rgba(13, 13, 14, 0.06);
  --shadow-xl: 0 40px 100px rgba(13, 13, 14, 0.16), 0 12px 32px rgba(13, 13, 14, 0.08);
}

/* ---------- 2. RESET + BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--vermilion); color: var(--cream); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* subtle paper texture baseline */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  background-image:
    radial-gradient(rgba(13,13,14,0.025) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: multiply;
  opacity: 0.6;
}

/* ---------- 3. TYPOGRAPHY PRIMITIVES ---------- */
.serif-italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.01em;
}
.strike {
  position: relative;
  white-space: nowrap;
}
.strike::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%; top: 50%;
  height: 3px;
  background: var(--vermilion);
  transform: rotate(-2deg);
  border-radius: 2px;
}
.underline-swoop {
  position: relative;
  display: inline-block;
}
.underline-swoop::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0.08em;
  height: 0.18em;
  background: var(--gold);
  z-index: -1;
  transform: skewY(-1deg);
  opacity: 0.6;
}

/* ---------- 4. REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 900ms var(--ease-out), transform 900ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: 0s !important; animation-iteration-count: 1 !important; transition-duration: 0s !important; }
}

/* ---------- 5. NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(252, 249, 240, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: baseline;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}
.brand-dot {
  color: var(--vermilion);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  margin-left: 1px;
}
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: 40px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  transition: color 200ms var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 20px;
}
.status {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--smoke);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.status .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
  animation: pulse 2.5s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.06); }
}
.nav-cta {
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 220ms var(--ease), transform 220ms var(--ease);
}
.nav-cta:hover { background: var(--forest); transform: translateY(-1px); }
.nav-cta .arrow { transition: transform 220ms var(--ease); }
.nav-cta:hover .arrow { transform: translateX(3px); }

/* ---------- 6. BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.005em;
  transition: transform 280ms var(--ease), background 280ms var(--ease), box-shadow 280ms var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: var(--shadow-md);
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--forest);
  transform: translateY(100%);
  transition: transform 420ms var(--ease);
  z-index: 0;
}
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-primary:hover::before { transform: translateY(0); }
.btn .arrow { transition: transform 320ms var(--ease); display: inline-block; }
.btn:hover .arrow { transform: translateX(6px); }
.btn-hero {
  background: var(--vermilion);
  color: var(--cream);
  font-size: 17px;
  padding: 20px 36px;
  box-shadow: 0 12px 32px rgba(255, 90, 95, 0.32);
}
.btn-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--ink);
  transform: translateY(100%);
  transition: transform 420ms var(--ease);
  z-index: 0;
}
.btn-hero > * { position: relative; z-index: 1; }
.btn-hero:hover { transform: translateY(-2px); box-shadow: 0 16px 48px rgba(255, 90, 95, 0.4); }
.btn-hero:hover::before { transform: translateY(0); }

/* ---------- 7. SECTION LABELS ---------- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--smoke);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}
.section-label.light { color: rgba(255, 252, 243, 0.7); }
.label-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 14px;
  color: var(--vermilion);
  text-transform: none;
  letter-spacing: 0;
}
.label-num sup { font-size: 0.6em; vertical-align: super; }
.label-dash { opacity: 0.5; }

.section-head {
  margin-bottom: 72px;
}
.section-head.center {
  text-align: center;
}
.section-head.center .section-label {
  justify-content: center;
}
.section-h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5.2vw, 72px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
  max-width: 15ch;
  padding-bottom: 0.06em;
}
.section-head.center .section-h2 { margin-left: auto; margin-right: auto; }
.section-h2.light { color: var(--cream); }
.section-intro {
  max-width: 560px;
  margin-top: 24px;
  color: var(--smoke);
  font-size: 18px;
  line-height: 1.55;
}

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative;
  padding: 60px 0 40px;
  overflow: hidden;
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.12;
  pointer-events: none;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.45;
  pointer-events: none;
  animation: float-blob 18s var(--ease) infinite alternate;
}
.hero-blob-1 {
  width: 520px; height: 520px;
  background: var(--rose);
  top: -120px; left: -160px;
}
.hero-blob-2 {
  width: 460px; height: 460px;
  background: #DDE3FD;
  bottom: -140px; right: -140px;
  animation-delay: -6s;
}
@keyframes float-blob {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, -30px) scale(1.08); }
}

.hero-inner {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
  gap: 60px;
  align-items: start;
  min-height: 78vh;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--smoke);
  padding: 10px 18px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 100px;
  margin-bottom: 36px;
}
.eyebrow-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 14px;
  color: var(--vermilion);
  text-transform: none;
  letter-spacing: 0;
}
.eyebrow-num sup { font-size: 0.6em; vertical-align: super; }
.eyebrow-sep { opacity: 0.4; }

.hero-h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(48px, 7.4vw, 108px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
  max-width: 12ch;
  padding-bottom: 0.08em;
}
.hero-h1 .serif-italic { color: var(--forest); font-weight: 500; }
.hero-h1-tail {
  display: inline-block;
  position: relative;
}
.hero-h1-tail::before {
  content: "";
  position: absolute;
  left: -6px; right: -6px; top: 10%; bottom: 16%;
  background: var(--gold);
  z-index: -1;
  opacity: 0.25;
  border-radius: 6px;
  transform: rotate(-1deg);
}

.hero-sub {
  margin-top: 32px;
  max-width: 52ch;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.trust {
  font-size: 13px;
  line-height: 1.45;
  color: var(--smoke);
  font-family: var(--mono);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.trust-tick {
  color: var(--forest);
  font-weight: 700;
  margin-top: 2px;
}

.hero-meta {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  gap: 36px;
  max-width: 640px;
}
.meta-cell { flex: 1; }
.meta-num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}
.meta-label {
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--smoke);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.5;
}
.meta-div {
  width: 1px;
  align-self: stretch;
  background: var(--line);
}

/* Hero right — floating post stack */
.hero-right {
  position: relative;
  height: 640px;
}
.post-stack {
  position: absolute;
  inset: 0;
}
.post {
  position: absolute;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  padding: 16px;
  transition: transform 420ms var(--ease), box-shadow 420ms var(--ease);
  will-change: transform;
}
.post:hover {
  transform: translateY(-4px) rotate(var(--r, 0deg)) !important;
  box-shadow: var(--shadow-xl);
  z-index: 10;
}
.post-ig {
  --r: -4deg;
  width: 300px;
  top: 0;
  right: 40px;
  transform: rotate(-4deg);
  z-index: 3;
}
.post-li {
  --r: 3deg;
  width: 320px;
  top: 230px;
  right: 0;
  transform: rotate(3deg);
  z-index: 2;
}
.post-fb {
  --r: -2deg;
  width: 280px;
  top: 430px;
  right: 80px;
  transform: rotate(-2deg);
  z-index: 1;
}

.float-a { animation: float-a 8s ease-in-out infinite; }
.float-b { animation: float-b 9s ease-in-out infinite; }
.float-c { animation: float-c 10s ease-in-out infinite; }
@keyframes float-a {
  0%,100% { transform: rotate(-4deg) translateY(0); }
  50%     { transform: rotate(-4deg) translateY(-10px); }
}
@keyframes float-b {
  0%,100% { transform: rotate(3deg) translateY(0); }
  50%     { transform: rotate(3deg) translateY(-8px); }
}
@keyframes float-c {
  0%,100% { transform: rotate(-2deg) translateY(0); }
  50%     { transform: rotate(-2deg) translateY(-12px); }
}

.post-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
}
.post-name {
  flex: 1;
  display: flex;
  flex-direction: column;
  font-size: 13px;
  line-height: 1.3;
}
.post-name strong { font-weight: 600; color: var(--ink); }
.post-name span { font-size: 11px; color: var(--smoke); }
.post-dots { color: var(--smoke); font-size: 14px; letter-spacing: 1px; }

.post-image {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  background: linear-gradient(135deg, #FFDDD8 0%, #FFCA4D 50%, #FF5A5F 100%);
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}
.post-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(255,255,255,0.35) 0%, transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(91, 79, 233, 0.28) 0%, transparent 50%);
  pointer-events: none;
}
.post-image:has(.post-illo)::before { display: none; }
.post-illo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.img-tag {
  position: absolute;
  bottom: 10px; left: 10px;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 9px;
  border-radius: 100px;
  font-weight: 500;
}
.post-actions {
  display: flex;
  gap: 14px;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--ink);
}
.post-actions .saved { margin-left: auto; }
.post-likes { font-size: 13px; margin-bottom: 4px; }
.post-caption { font-size: 12px; line-height: 1.4; color: var(--ink-soft); }
.post-caption strong { font-weight: 600; margin-right: 4px; }
.muted { color: var(--slate); }

.post-text {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.post-stats {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--smoke);
}
.post-stats .stat-count { margin-left: auto; }
.post-image-sm {
  margin-top: 8px;
  height: 88px;
  border-radius: 8px;
  background: linear-gradient(135deg, #5B4FE9 0%, #7AC6E8 100%);
  position: relative;
  overflow: hidden;
}
.fb-illo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.day-badge {
  position: absolute;
  top: -18px;
  left: -20px;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  z-index: 5;
  transform: rotate(-8deg);
  animation: spin-slow 40s linear infinite;
}
@keyframes spin-slow {
  from { transform: rotate(-8deg); }
  to   { transform: rotate(352deg); }
}
.day-badge-label {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.7;
}
.day-badge-num {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 500;
  line-height: 1;
  margin: 2px 0 2px;
  font-variation-settings: "opsz" 144;
}
.day-badge-sub {
  font-family: var(--mono);
  font-size: 10px;
  opacity: 0.7;
  letter-spacing: 0.1em;
}

/* Hero marquee */
.marquee {
  margin-top: 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
  background: var(--cream);
}
.marquee-track {
  display: flex;
  gap: 36px;
  width: max-content;
  animation: marquee 50s linear infinite;
  white-space: nowrap;
  align-items: center;
}
.marquee-track > span {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}
.marquee-track > span:nth-child(even) {
  font-size: 14px;
  color: var(--vermilion);
}
.marquee-track > span:nth-child(4n+1) {
  font-style: italic;
  color: var(--forest);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-track.big > span {
  font-size: 64px;
  font-weight: 400;
}

/* ==========================================================
   PROBLEM
   ========================================================== */
.problem {
  padding: 140px 0 120px;
  position: relative;
}
.problem-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
}
.problem-h2 {
  grid-column: 1 / -1;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5.6vw, 84px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 64px;
  font-variation-settings: "opsz" 144;
  max-width: 20ch;
  padding-bottom: 0.08em;
}
.problem-h2 .serif-italic { color: var(--forest); }
.problem-body {
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 52ch;
}
.problem-body p { margin-bottom: 20px; }
.problem-body p.emph {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.35;
  color: var(--ink);
  border-left: 3px solid var(--vermilion);
  padding-left: 24px;
  margin-top: 32px;
  font-variation-settings: "opsz" 144;
}
.problem-stats {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 36px 32px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 120px;
}
.stat {
  padding-bottom: 24px;
  border-bottom: 1px dashed var(--line);
}
.stat:last-child { border-bottom: 0; padding-bottom: 0; }
.stat-num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 64px;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}
.stat-num span {
  color: var(--vermilion);
  font-style: italic;
  font-size: 0.55em;
  margin-left: 4px;
}
.stat-label {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--smoke);
}

/* ==========================================================
   EDITOR'S NOTE
   ========================================================== */
.editor-note {
  padding: 96px 0 108px;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(255, 202, 77, 0.18), transparent 60%),
    radial-gradient(ellipse at 85% 90%, rgba(255, 90, 95, 0.12), transparent 55%),
    var(--paper);
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.editor-note::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 36px;
  background: var(--ink);
  opacity: 0.25;
}
.editor-note::after {
  content: "¶";
  position: absolute;
  top: 46px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: var(--vermilion);
  opacity: 0.8;
}

.en-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px 80px;
  align-items: start;
  max-width: 1060px;
  margin: 0 auto;
  padding-top: 52px;
}

.en-label {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--smoke);
  margin-bottom: 8px;
}
.en-label .label-num { color: var(--ink); }
.en-label .label-num sup { font-size: 0.7em; top: -0.5em; position: relative; }
.en-label .en-half { font-size: 0.85em; color: var(--vermilion); margin-left: 2px; }
.en-label .label-dash { color: var(--line); }

.en-quote {
  margin: 0;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 5.2vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--ink);
  padding-bottom: 0.12em;
  position: relative;
}
.en-quote .en-mark {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 1.1em;
  line-height: 0;
  position: relative;
  top: 0.18em;
  padding: 0 0.04em;
}
.en-quote .serif-italic {
  color: var(--vermilion);
  font-style: italic;
  font-weight: 400;
  position: relative;
}
.en-quote .serif-italic::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.08em;
  height: 6px;
  background: var(--gold);
  opacity: 0.35;
  z-index: -1;
  border-radius: 2px;
}

.en-body {
  padding-top: 20px;
  border-top: 1px solid var(--line);
  max-width: 420px;
}
.en-body p {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 16px;
}
.en-body p:last-of-type { margin-bottom: 0; }
.en-body em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
  font-size: 1.05em;
}

.en-sign {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--smoke);
}
.en-sign-dash {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--ink);
  opacity: 0.4;
}

@media (max-width: 900px) {
  .editor-note { padding: 72px 0 80px; }
  .en-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 40px;
  }
  .en-quote { font-size: clamp(32px, 8vw, 48px); }
  .en-body { max-width: 100%; }
}

/* ==========================================================
   KINETIC
   ========================================================== */
.kinetic {
  padding: 56px 0 64px;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
}
.kinetic-track {
  display: flex;
  overflow: hidden;
}
.kinetic-row {
  display: flex;
  gap: 44px;
  align-items: center;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.kinetic-row > span {
  font-family: var(--serif);
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 400;
  line-height: 1.2;
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.02em;
  padding-bottom: 0.12em;
}
.kinetic-row > span.ital {
  font-style: italic;
  color: var(--gold);
}
.kinetic-row .sep {
  color: var(--vermilion);
  font-size: 0.6em;
  opacity: 0.8;
}

/* ==========================================================
   FEATURES — BENTO
   ========================================================== */
.features {
  padding: 140px 0;
  background: var(--paper);
}
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(280px, auto);
  gap: 20px;
}
.bento-card {
  grid-column: span 2;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 380ms var(--ease), box-shadow 380ms var(--ease), border-color 380ms var(--ease);
  overflow: hidden;
}
.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(13, 13, 14, 0.18);
}
.bento-card .card-icon {
  width: 56px; height: 56px;
  color: var(--forest);
  margin-bottom: auto;
}
.bento-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-top: 24px;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}
.bento-card h3 em {
  font-style: italic;
  color: var(--vermilion);
  font-weight: 500;
}
.bento-card p {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--smoke);
}
.card-tag {
  position: absolute;
  top: 24px; right: 24px;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--smoke);
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 100px;
}

/* Bento layout — asymmetric magic */
.card-a { grid-column: span 3; grid-row: span 2; }
.card-a .card-icon { width: 72px; height: 72px; margin-bottom: 0; }
.card-a h3 { font-size: 38px; max-width: 12ch; margin-top: auto; }

/* Week strip visual inside card-a */
.week-strip {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-top: 28px;
  margin-bottom: 32px;
  max-width: 360px;
}
.d-cell {
  aspect-ratio: 1 / 1.15;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: relative;
  background: var(--paper);
  transition: transform 220ms var(--ease), border-color 220ms var(--ease);
}
.d-cell:hover { transform: translateY(-2px); }
.d-cell span {
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--smoke);
  line-height: 1;
}
.d-cell i {
  font-size: 14px;
  color: var(--forest);
  font-style: normal;
  line-height: 1;
  font-weight: 600;
}
.d-cell.done {
  background: var(--cream);
  border-color: rgba(91, 79, 233, 0.18);
}
.d-cell.today {
  background: var(--forest);
  border-color: var(--forest);
  box-shadow: 0 8px 20px rgba(91, 79, 233, 0.28);
}
.d-cell.today span { color: rgba(255, 252, 243, 0.7); }
.d-cell.today i.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(255, 202, 77, 0.28);
  animation: today-pulse 1.8s var(--ease) infinite;
}
@keyframes today-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255, 202, 77, 0.28); }
  50%      { box-shadow: 0 0 0 8px rgba(255, 202, 77, 0.08); }
}
.card-b { grid-column: span 3; }
.card-c { grid-column: span 3; }
.card-d { grid-column: span 2; }
.card-e { grid-column: span 2; }
.card-g { grid-column: span 2; }
.card-f { grid-column: span 6; min-height: 180px; flex-direction: row; align-items: center; gap: 40px; margin-top: 20px; }
.card-f .card-icon { margin-bottom: 0; flex-shrink: 0; }
.card-f h3 { margin-top: 0; }
.card-f p { margin-top: 8px; max-width: 60ch; }
.card-f .card-tag { top: 50%; transform: translateY(-50%); }

.bento-card.dark {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.bento-card.dark h3 { color: var(--cream); }
.bento-card.dark p { color: rgba(255,252,243, 0.65); }
.bento-card.dark .card-icon { color: var(--cream); }
.bento-card.dark .card-tag { color: rgba(255,252,243, 0.5); border-color: rgba(255,252,243, 0.16); }

/* Card-G — festivals & world-days (bonus) */
.card-g {
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 90, 95, 0.14), transparent 55%),
    radial-gradient(circle at 15% 100%, rgba(91, 79, 233, 0.10), transparent 55%),
    linear-gradient(180deg, #FFF5D6 0%, #FFE9B0 100%);
  border-color: rgba(255, 202, 77, 0.55);
  position: relative;
  overflow: visible;
}
.card-g::before {
  content: "+ bonus";
  position: absolute;
  top: 0;
  left: 24px;
  transform: translateY(-50%);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink);
  background: var(--gold);
  padding: 6px 12px;
  border-radius: 100px;
  border: 1.5px solid var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
  z-index: 2;
}
.card-g h3 .serif-italic {
  color: var(--vermilion);
}
.card-g .festival-list {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
}
.card-g .festival-list span {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 9px;
  background: rgba(252, 249, 240, 0.7);
  border: 1px solid rgba(21, 21, 30, 0.18);
  border-radius: 100px;
  color: var(--ink);
  white-space: nowrap;
}
.card-g .card-tag {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.bento-card.accent {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}
.bento-card.accent h3 { color: var(--cream); }
.bento-card.accent p { color: rgba(255,252,243, 0.7); }
.bento-card.accent .card-icon { color: var(--cream); }
.bento-card.accent .card-tag { color: rgba(255,252,243, 0.6); border-color: rgba(255,252,243, 0.2); }

/* ==========================================================
   CONTRAST (what we don't do)
   ========================================================== */
.contrast {
  padding: 140px 0;
  background: var(--paper-2);
  position: relative;
}
.contrast-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contrast-left .section-label { margin-bottom: 24px; }
.contrast-intro {
  margin-top: 32px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--smoke);
  max-width: 42ch;
}
.contrast-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.deny-list {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 40px 44px;
}
.deny-head {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}
.deny-head em {
  font-style: italic;
  color: var(--vermilion);
  font-weight: 500;
}
.deny-list ul {
  display: flex;
  flex-direction: column;
}
.deny-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--smoke);
  text-decoration: line-through;
  text-decoration-color: var(--vermilion);
  text-decoration-thickness: 2px;
  font-variation-settings: "opsz" 144;
}
.deny-list li:last-child { border-bottom: 0; }
.deny-list li .dash {
  width: 16px; height: 2px;
  background: var(--vermilion);
  flex-shrink: 0;
}

.do-card {
  background: var(--forest);
  color: var(--cream);
  border-radius: 22px;
  padding: 44px;
  position: relative;
  overflow: hidden;
}
.do-card::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 240px; height: 240px;
  background: var(--gold);
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.2;
}
.do-card > * { position: relative; }
.pill {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 8px 14px;
  background: rgba(255, 252, 243, 0.14);
  border: 1px solid rgba(255, 252, 243, 0.2);
  border-radius: 100px;
  color: var(--cream);
}
.do-card p {
  margin-top: 24px;
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.35;
  color: var(--cream);
  font-variation-settings: "opsz" 144;
  max-width: 32ch;
}
.do-foot {
  margin-top: 24px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ==========================================================
   PROCESS
   ========================================================== */
.process {
  padding: 140px 0;
  background: var(--paper);
}
.steps {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.step {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 48px;
  align-items: flex-start;
  padding: 48px 0 48px 0;
  position: relative;
}
.step > .step-num { grid-column: 1; }
.step > .step-body { grid-column: 2; }
.step:nth-child(even) {
  grid-template-columns: 1fr 180px;
  text-align: right;
}
.step:nth-child(even) > .step-num { grid-column: 2; }
.step:nth-child(even) > .step-body { grid-column: 1; }
.step:nth-child(even) .step-body p { margin-left: auto; }
.step-num {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: 140px;
  line-height: 0.9;
  color: var(--vermilion);
  letter-spacing: -0.04em;
  font-variation-settings: "opsz" 144;
  padding-bottom: 0.08em;
}
.step-body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 38px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}
.step-body p {
  margin-top: 14px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--smoke);
  max-width: 52ch;
}
.step-meta {
  margin-top: 20px;
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--forest);
  padding: 6px 12px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 100px;
}
.step-line {
  position: absolute;
  left: 90px;
  top: 60%;
  bottom: -48px;
  width: 1px;
  background: linear-gradient(var(--line), transparent);
}
.step:nth-child(even) .step-line {
  left: auto;
  right: 90px;
}

/* ==========================================================
   PRICING
   ========================================================== */
.pricing {
  padding: 160px 0;
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.pricing-bg { position: absolute; inset: 0; pointer-events: none; }
.pricing-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.28;
}
.orb-1 { width: 500px; height: 500px; background: var(--forest); top: -100px; left: -100px; }
.orb-2 { width: 460px; height: 460px; background: var(--vermilion); bottom: -120px; right: -80px; opacity: 0.18; }
.orb-3 { width: 300px; height: 300px; background: var(--gold); top: 40%; left: 60%; opacity: 0.12; }

.price-card {
  position: relative;
  max-width: 560px;
  margin: 72px auto 0;
  background: var(--cream);
  color: var(--ink);
  border-radius: 28px;
  padding: 56px 56px 48px;
  box-shadow: var(--shadow-xl);
}
.price-stamp {
  position: absolute;
  top: -28px; right: -28px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--vermilion);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-12deg);
  box-shadow: var(--shadow-md);
  animation: spin-slow 40s linear infinite;
}
.stamp-text {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  font-variation-settings: "opsz" 144;
  text-align: center;
  line-height: 1.1;
}
.price-head {
  padding-bottom: 32px;
  border-bottom: 1px dashed var(--line);
  margin-bottom: 32px;
}
.price-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 12px;
  color: var(--forest);
  background: #E8E5FD;
  border-radius: 100px;
  margin-bottom: 20px;
}
.price-big {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--serif);
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}
.price-big .currency {
  font-size: 48px;
  font-weight: 400;
  color: var(--smoke);
}
.price-big .amount {
  font-size: 128px;
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.04em;
}
.price-big .per {
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  color: var(--smoke);
}
.price-sub {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--smoke);
}
.price-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.price-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.tick {
  color: var(--forest);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.price-card .btn-hero { width: 100%; justify-content: center; }
.price-trust {
  margin-top: 24px;
  text-align: center;
  font-size: 13px;
  color: var(--smoke);
  line-height: 1.55;
}

/* ==========================================================
   FAQ
   ========================================================== */
.faq {
  padding: 140px 0;
  background: var(--paper);
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 100px;
  align-items: start;
}
.faq-side {
  position: sticky;
  top: 120px;
}
.faq-aside-text {
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--smoke);
  max-width: 38ch;
}
.faq-chat {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  margin-top: 28px;
}
.faq-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--forest);
  padding-bottom: 3px;
  border-bottom: 1px solid var(--forest);
  transition: gap 260ms var(--ease), color 260ms var(--ease), border-color 260ms var(--ease);
}
.faq-wa:hover { gap: 14px; }
.faq-wa .arrow { display: inline-block; }
.faq-tg {
  color: var(--vermilion);
  border-bottom-color: var(--vermilion);
}

.faq-list { display: flex; flex-direction: column; gap: 4px; }
.faq-item {
  border-bottom: 1px solid var(--line);
  transition: background 240ms var(--ease);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 0;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  transition: color 240ms var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.q-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--vermilion);
  padding-top: 6px;
  letter-spacing: 0.08em;
  flex-shrink: 0;
  width: 32px;
}
.q-text {
  flex: 1;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 144;
}
.q-text em { font-style: italic; color: var(--vermilion); font-weight: 500; }
.q-plus {
  flex-shrink: 0;
  width: 22px; height: 22px;
  position: relative;
  margin-top: 8px;
  transition: transform 320ms var(--ease);
}
.q-plus::before, .q-plus::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  background: var(--ink);
  border-radius: 2px;
}
.q-plus::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.q-plus::after { width: 2px; height: 14px; transform: translate(-50%, -50%); transition: transform 320ms var(--ease); }
.faq-item[open] .q-plus::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-item[open] { background: transparent; }

.faq-answer {
  overflow: hidden;
  padding: 0 0 28px 56px;
  animation: faq-open 420ms var(--ease-out);
}
.faq-answer p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--smoke);
  max-width: 64ch;
}
@keyframes faq-open {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}

/* ==========================================================
   CTA / FORM
   ========================================================== */
.cta {
  padding: 160px 0 140px;
  background: var(--paper-2);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  top: -200px; left: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: var(--rose);
  filter: blur(140px);
  opacity: 0.5;
  pointer-events: none;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
  position: relative;
}
.cta-left {
  position: sticky;
  top: 120px;
}
.cta-lede {
  margin-top: 28px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 46ch;
}
.cta-bullets {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 46ch;
}
.cta-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
}
/* CTA seal — Utilmatic Independent Studio badge */
.cta-seal {
  margin-top: 44px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 12px 20px 12px 12px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease);
}
.cta-seal::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 100px;
  background: conic-gradient(from 0deg, var(--forest), var(--vermilion), var(--gold), var(--slate), var(--forest));
  z-index: -1;
  opacity: 0;
  filter: blur(14px);
  transition: opacity 420ms var(--ease);
}
.cta-seal:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.cta-seal:hover::before { opacity: 0.5; }

.seal-core {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.seal-core::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 202, 77, 0.35), transparent 55%);
}
.seal-u {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 28px;
  line-height: 1;
  font-variation-settings: "opsz" 144;
  position: relative;
  z-index: 1;
}

.seal-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1.2;
}
.seal-text strong {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: -0.005em;
  font-variation-settings: "opsz" 144;
}
.seal-text strong .serif-italic {
  font-weight: 500;
  color: var(--forest);
}
.seal-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--smoke);
}
.seal-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18);
  animation: pulse 2.5s var(--ease) infinite;
}

/* FORM */
.form-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px 30px 28px;
  box-shadow: var(--shadow-md);
}
.hp {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0; pointer-events: none;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
  position: relative;
}
.field-row .field { margin-bottom: 14px; }
.field label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--smoke);
  margin-bottom: 6px;
}
.field label .opt {
  font-family: var(--sans);
  text-transform: none;
  letter-spacing: 0;
  font-size: 11px;
  opacity: 0.7;
  margin-left: 4px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 12px 14px;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 11px;
  font-size: 15px;
  color: var(--ink);
  font-family: var(--sans);
  transition: border-color 220ms var(--ease), background 220ms var(--ease), box-shadow 220ms var(--ease);
  /* touch target minimum */
  min-height: 44px;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(13, 13, 14, 0.35); }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--forest);
  background: var(--cream);
  box-shadow: 0 0 0 4px rgba(91, 79, 233, 0.14);
}
.field textarea { resize: vertical; min-height: 64px; }
.field.invalid input,
.field.invalid textarea {
  border-color: var(--vermilion);
  background: #FFEEED;
}
.error-msg {
  display: block;
  min-height: 14px;
  margin-top: 4px;
  font-size: 11px;
  color: var(--vermilion);
  font-family: var(--mono);
  letter-spacing: 0.02em;
}
.field.invalid .error-msg { animation: shake 400ms var(--ease); }
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-4px); }
  40%, 80% { transform: translateX(4px); }
}

.select-wrap { position: relative; }
.field select {
  appearance: none;
  padding-right: 40px;
}
.select-arrow {
  position: absolute;
  right: 16px; top: 50%;
  transform: translateY(-50%);
  color: var(--smoke);
  pointer-events: none;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
  padding: 16px 24px;
  min-height: 52px;
}
.btn-spinner {
  position: absolute;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 252, 243, 0.35);
  border-top-color: var(--cream);
  animation: spin 0.8s linear infinite;
  opacity: 0;
  z-index: 2;
}
@keyframes spin { to { transform: rotate(360deg); } }
.btn-submit.loading .btn-label,
.btn-submit.loading .arrow { opacity: 0; }
.btn-submit.loading .btn-spinner { opacity: 1; }
.btn-submit:disabled { cursor: wait; }

.form-foot {
  margin-top: 12px;
  font-size: 11px;
  text-align: center;
  color: var(--smoke);
  line-height: 1.5;
}
.form-error {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  background: #FFEEED;
  border: 1px solid var(--vermilion);
  border-radius: 10px;
  color: var(--vermilion);
  font-size: 14px;
}
.form-error.show { display: block; }

/* success */
.form-success {
  display: none;
  background: var(--forest);
  color: var(--cream);
  border-radius: 24px;
  padding: 56px 44px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.form-success.show { display: block; animation: success-in 600ms var(--ease); }
@keyframes success-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
.success-mark {
  width: 84px; height: 84px;
  margin: 0 auto 24px;
  color: var(--gold);
}
.form-success h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 32px;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144;
}
.form-success p {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 252, 243, 0.75);
  max-width: 36ch;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================
   FOOTER
   ========================================================== */
.site-foot {
  background: var(--ink);
  color: var(--cream);
  padding: 0 0 40px;
  position: relative;
}
.foot-marquee {
  padding: 48px 0;
  border-bottom: 1px solid rgba(255, 252, 243, 0.1);
  overflow: hidden;
}
.foot-marquee .marquee-track { gap: 48px; }
.foot-marquee .marquee-track > span {
  font-family: var(--serif);
  color: var(--cream);
  font-weight: 400;
  font-size: clamp(56px, 9vw, 128px);
  line-height: 1;
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 144;
}
.foot-marquee .marquee-track > span.ital {
  font-style: italic;
  color: var(--gold);
}
.foot-marquee .marquee-track > span:nth-child(even) {
  color: var(--vermilion);
  font-size: 0.6em;
}
.foot-inner {
  padding-top: 72px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 48px;
  align-items: start;
}
.foot-logo {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 42px;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144;
}
.foot-logo span {
  color: var(--vermilion);
  font-style: italic;
}
.foot-brand p {
  margin-top: 14px;
  color: rgba(255, 252, 243, 0.6);
  max-width: 32ch;
  font-size: 15px;
  line-height: 1.55;
}
.foot-contact {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.foot-contact-label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 252, 243, 0.45);
  margin-bottom: 4px;
}
.foot-channels {
  display: flex;
  flex-direction: column;
}
.foot-channels li {
  border-top: 1px solid rgba(255, 252, 243, 0.08);
}
.foot-channels li:last-child {
  border-bottom: 1px solid rgba(255, 252, 243, 0.08);
}
.foot-channels a {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: baseline;
  gap: 14px;
  padding: 18px 0;
  color: var(--cream);
  transition: padding 260ms var(--ease);
}
.foot-channels .ch-name {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 252, 243, 0.55);
  transition: color 260ms var(--ease);
}
.foot-channels .ch-line {
  height: 1px;
  background: rgba(255, 252, 243, 0.12);
  transform-origin: left;
  transform: scaleX(1);
  transition: background 260ms var(--ease);
}
.foot-channels .ch-val {
  font-family: var(--serif);
  font-size: 22px;
  font-variation-settings: "opsz" 144;
  color: var(--cream);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.foot-channels .ch-arrow {
  font-size: 20px;
  color: rgba(255, 252, 243, 0.45);
  display: inline-block;
  transition: transform 320ms var(--ease), color 260ms var(--ease);
}
.foot-channels a:hover { padding-left: 8px; }
.foot-channels a:hover .ch-name { color: var(--gold); }
.foot-channels a:hover .ch-line { background: rgba(255, 252, 243, 0.3); }
.foot-channels a:hover .ch-arrow { transform: translateX(6px); color: var(--cream); }
.foot-meta {
  justify-self: end;
  text-align: right;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 252, 243, 0.5);
  line-height: 1.8;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 80px; }
  .hero-right { height: 560px; max-width: 420px; margin: 0 auto; }
  .problem-grid { grid-template-columns: 1fr; gap: 40px; }
  .problem-stats { position: static; }
  .contrast-grid { grid-template-columns: 1fr; gap: 48px; }
  .faq-grid { grid-template-columns: 1fr; gap: 56px; }
  .faq-side { position: static; }
  .cta-grid { grid-template-columns: 1fr; gap: 56px; }
  .cta-left { position: static; }
  .bento { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 260px; }
  .card-a { grid-column: span 4; grid-row: span 2; }
  .card-b, .card-c, .card-d, .card-e { grid-column: span 2; }
  .card-g { grid-column: span 4; }
  .card-f { grid-column: span 4; }
  .foot-inner { grid-template-columns: 1fr 1fr; }
  .foot-meta { grid-column: 1 / -1; justify-self: start; text-align: left; }
}

@media (max-width: 780px) {
  body { font-size: 16px; }
  .nav { padding: 14px 0; }
  .nav-links { display: none; }
  .nav-right .status { display: none; }
  .nav-cta { padding: 9px 14px; font-size: 13px; }
  .brand { font-size: 22px; }

  .hero { padding: 32px 0 16px; }
  .hero-inner { gap: 48px; min-height: 0; }
  .hero-meta { flex-wrap: wrap; gap: 20px; margin-top: 40px; padding-top: 24px; }
  .meta-cell { min-width: 44%; }
  .meta-div { display: none; }
  .meta-num { font-size: 40px; }
  .hero-cta-row { gap: 18px; margin-top: 28px; }
  .hero-cta-row .btn { width: 100%; justify-content: center; }
  .trust { width: 100%; }
  /* Hero mockup: switch from absolute-overlap stack to vertical flow
     so nothing clips on narrow viewports. */
  .hero-right {
    height: auto;
    max-width: 360px;
    margin: 0 auto;
    padding: 44px 8px 8px;
  }
  .post-stack {
    position: relative;
    inset: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
  }
  .post-ig, .post-li, .post-fb {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
  }
  .post-ig { --r: -1.8deg; transform: rotate(-1.8deg); }
  .post-li { --r: 1.5deg;  transform: rotate(1.5deg); }
  .post-fb { --r: -1deg;   transform: rotate(-1deg); }
  /* Kill the old floating animations — they baked in the desktop rotations
     and would override the mobile ones above. */
  .float-a, .float-b, .float-c { animation: none; }
  .day-badge {
    width: 84px; height: 84px;
    top: 4px; left: 4px;
  }
  .day-badge-num { font-size: 30px; }
  .marquee-track > span { font-size: 22px; }

  .problem { padding: 100px 0 80px; }
  .problem-h2 { margin-bottom: 40px; }
  .problem-stats { padding: 28px 24px; }
  .stat-num { font-size: 48px; }

  .kinetic { padding: 28px 0; }

  .features { padding: 100px 0; }
  .section-head { margin-bottom: 48px; }
  .bento { grid-template-columns: 1fr; grid-auto-rows: auto; gap: 16px; }
  .bento-card { grid-column: span 1 !important; grid-row: span 1 !important; padding: 28px; min-height: 240px; }
  .card-a h3 { font-size: 28px; }
  .card-a .card-icon { width: 56px; height: 56px; }
  .week-strip { gap: 6px; margin-top: 20px; margin-bottom: 24px; max-width: 320px; }
  .d-cell { border-radius: 10px; gap: 4px; }
  .d-cell span { font-size: 8px; }
  .d-cell i { font-size: 12px; }
  .card-f { flex-direction: column; align-items: flex-start; gap: 20px; }
  .card-f .card-tag { position: absolute; top: 24px; right: 24px; transform: none; }

  .contrast { padding: 100px 0; }
  .deny-list { padding: 28px 24px; }
  .deny-list li { font-size: 18px; }
  .do-card { padding: 32px 28px; }
  .do-card p { font-size: 22px; }

  .process { padding: 100px 0; }
  .step { grid-template-columns: 1fr !important; direction: ltr !important; text-align: left !important; gap: 20px; padding: 32px 0; }
  .step-body p { margin-left: 0 !important; }
  .step-num { font-size: 100px; }
  .step-body h3 { font-size: 30px; }
  .step-line { display: none; }

  .pricing { padding: 100px 0; }
  .price-card { padding: 40px 28px 32px; margin: 56px 16px 0; }
  .price-big .amount { font-size: 88px; }
  .price-big .currency { font-size: 36px; }
  .price-stamp { width: 92px; height: 92px; top: -20px; right: -10px; }
  .stamp-text { font-size: 16px; }

  .faq { padding: 100px 0; }
  .q-text { font-size: 18px; }
  .faq-answer { padding-left: 44px; }

  .cta { padding: 100px 0; }
  .form-card { padding: 24px 20px 22px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .field { margin-bottom: 12px; }
  .field input, .field textarea, .field select { font-size: 16px; /* prevent iOS zoom */ }
  .cta-seal { margin-top: 32px; padding: 10px 16px 10px 10px; gap: 12px; }
  .seal-core { width: 42px; height: 42px; }
  .seal-u { font-size: 24px; }
  .seal-text strong { font-size: 14px; }
  .seal-meta { font-size: 9px; }

  .foot-inner { grid-template-columns: 1fr; gap: 32px; }
  .foot-logo { font-size: 34px; }
  .foot-channels a { grid-template-columns: auto 1fr auto; padding: 16px 0; gap: 12px; }
  .foot-channels .ch-line { display: none; }
  .foot-channels .ch-val { font-size: 18px; }
}

/* Very small phones */
@media (max-width: 420px) {
  /* --gutter is now fluid via clamp() at :root — no override needed here */
  .nav-cta { padding: 8px 12px; font-size: 12px; }
  .brand { font-size: 20px; }
  .hero-h1 { font-size: 44px; }
  .hero-sub { font-size: 16px; margin-top: 24px; }
  .meta-num { font-size: 34px; }
  /* hero-right is now flow-based (see 780px block) — only badge tweaks here */
  .hero-right { max-width: 300px; padding-top: 40px; }
  .day-badge { width: 76px; height: 76px; }
  .day-badge-num { font-size: 26px; }
  .problem-h2 { font-size: 38px; }
  .section-h2 { font-size: 34px; }
  .bento-card { padding: 24px; min-height: 220px; }
  .card-a h3 { font-size: 24px; }
  .step-num { font-size: 84px; }
  .step-body h3 { font-size: 26px; }
  .price-card { padding: 32px 22px 26px; margin: 48px 8px 0; }
  .price-big .amount { font-size: 72px; }
  .price-big .currency { font-size: 30px; }
  .price-stamp { width: 82px; height: 82px; top: -16px; right: -4px; }
  .stamp-text { font-size: 14px; }
  .q-text { font-size: 17px; }
  .faq-answer { padding-left: 40px; }
  .form-card { padding: 20px 16px 18px; border-radius: 18px; }
  .btn-submit { padding: 14px 20px; min-height: 50px; }
}
