/* ==========================================================================
   The Purpose Arc — a signature masterclass by Tony A. Gaskins, Jr.

   Theme: "book jacket." The palette is lifted straight off the cover —
   paper white stock, deep navy ink, gold foil, warm stone rules. Sections
   alternate between paper (default) and .jacket (full-bleed navy), the way
   a jacket wraps a white book block.
   ========================================================================== */

:root {
  /* Brand palette */
  --navy: #081D3D;
  --navy-deep: #05142B;
  --navy-lift: #0E2A55;
  --gold: #CF9E33;
  --gold-bright: #E3B855;
  --stone: #C6C0B8;
  --taupe: #5E5653;
  --paper: #FDFDFD;

  /* Text-safe gold variants for light surfaces (contrast-checked) */
  --gold-ink: #8F6A16;
  --gold-deep: #B0801B;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", -apple-system, sans-serif;
}

/* Surface tokens — every component reads these, so a section only has to
   declare which surface it is. */
body {
  --surface: var(--paper);
  --fg: var(--navy);
  --fg-muted: var(--taupe);
  --fg-soft: rgba(94, 86, 83, 0.82);
  /* --fg-faint drives 11–12px meta labels, so it stays above 4.5:1 on paper */
  --fg-faint: #6B6462;
  --rule: rgba(94, 86, 83, 0.2);
  --rule-strong: rgba(8, 29, 61, 0.16);
  --accent: var(--gold-ink);
  --accent-lg: var(--gold-deep);
}

.jacket {
  --surface: var(--navy);
  --fg: var(--paper);
  --fg-muted: rgba(253, 253, 253, 0.74);
  --fg-soft: rgba(253, 253, 253, 0.62);
  --fg-faint: rgba(253, 253, 253, 0.6);
  --rule: rgba(253, 253, 253, 0.16);
  --rule-strong: rgba(253, 253, 253, 0.2);
  --accent: var(--gold);
  --accent-lg: var(--gold);
  background: var(--navy);
  color: var(--fg);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--navy);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Paper fiber — keeps flat white from looking like a screen */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--accent); }

::selection { background: var(--gold); color: var(--navy); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 200;
  background: var(--gold);
  color: var(--navy);
  padding: 12px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

/* ---------- Shared primitives ---------- */

.container {
  max-width: 1600px;
  margin: 0 auto;
}

.section {
  padding: 140px 4vw;
  border-top: 1px solid var(--rule);
  background: var(--surface);
  color: var(--fg);
}

.eyebrow {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-weight: 600;
  color: var(--accent);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  flex: none;
  background: var(--gold);
}

.display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  color: var(--fg);
}

/* Trademark mark. Neither Anton nor Inter draws U+2122 high enough on its own,
   so it needs raising — `super` rather than a fixed offset, because it adapts
   to whichever face it lands in. */
.tm {
  /* proportional to its surroundings, but never below ~10px — a flat ratio
     shrinks to a few pixels inside 11px eyebrows and legal type */
  font-size: max(0.62em, 10px);
  vertical-align: super;
  /* the raised glyph would otherwise stretch the line box it sits in */
  line-height: 0;
  letter-spacing: 0;
  margin-left: 0.02em;
}

.footer-legal.footer-tm {
  margin: 8px 0 0;
  border-top: 0;
  padding-top: 0;
}


/* Gold foil — the cover's ARC treatment, reusable on any display text */
.foil {
  background: linear-gradient(168deg, #F0D28C 0%, var(--gold) 40%, #B5821F 68%, #E6C177 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  max-width: 34rem;
  font-size: 17px;
  line-height: 1.8;
  color: var(--fg-muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 32px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-family: var(--font-body);
  cursor: pointer;
  border-radius: 1px;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border: none;
  transition: background 0.2s, transform 0.2s var(--ease-out), box-shadow 0.2s;
  box-shadow: 0 2px 0 rgba(8, 29, 61, 0.18);
}
.btn-gold:hover {
  background: var(--gold-bright);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(207, 158, 51, 0.28);
}

.btn-ghost {
  border: 1px solid var(--rule-strong);
  color: var(--fg);
  font-weight: 500;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover {
  border-color: var(--fg);
  color: var(--fg);
}

.arr {
  display: inline-block;
  transition: transform 0.25s var(--ease-out);
}
.btn:hover .arr,
a:hover .arr { transform: translateX(5px); }

/* ---------- Navigation ---------- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  color: var(--paper);
  transition: background 0.35s, border-color 0.35s, backdrop-filter 0.35s, color 0.35s;
}

.nav.is-scrolled {
  background: rgba(253, 253, 253, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(94, 86, 83, 0.18);
  color: var(--navy);
}

.nav-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 16px 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.brand-mark {
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  color: currentColor;
}
.brand-name em {
  font-style: normal;
  color: var(--gold);
}

.brand-swoosh {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 6px;
  color: var(--gold);
}

.brand-sub {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.65;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover { opacity: 1; color: inherit; }

.nav-cta {
  background: none;
  font-family: var(--font-body);
  cursor: pointer;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 10px 22px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  white-space: nowrap;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--gold); color: var(--navy); }
.nav.is-scrolled .nav-cta { border-color: var(--gold-ink); color: var(--gold-ink); }
.nav.is-scrolled .nav-cta:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 1px solid currentColor;
  border-radius: 1px;
  cursor: pointer;
  color: inherit;
}
.nav-toggle span {
  display: block;
  height: 1px;
  background: currentColor;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.menu-open .nav-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-open .nav-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }
.menu-open .nav { color: var(--paper); background: transparent; border-bottom-color: transparent; }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 8vw 60px;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease-out), visibility 0.35s;
}
.menu-open .mobile-menu { opacity: 1; visibility: visible; }

.mobile-menu a,
.mobile-menu button {
  font-family: var(--font-display);
  font-size: clamp(34px, 9vw, 56px);
  text-transform: uppercase;
  line-height: 1.25;
  color: var(--paper);
  border-bottom: 1px solid rgba(253, 253, 253, 0.16);
  padding: 14px 0;
}
.mobile-menu button {
  background: none;
  border: 0;
  border-bottom: 1px solid rgba(253, 253, 253, 0.16);
  text-align: left;
  cursor: pointer;
  color: var(--gold);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

/* Depth: a warm vignette lifts the navy off flat */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 78% 45%, rgba(207, 158, 51, 0.13), transparent 70%),
    radial-gradient(ellipse 90% 70% at 20% 100%, rgba(14, 42, 85, 0.9), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
}

.hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 150px 0 100px 4vw;
  width: min(52%, 760px);
}

.hero-title {
  margin: 0;
  font-size: clamp(54px, 8.4vw, 132px);
  line-height: 0.94;
}
.hero-title .line {
  display: block;
  overflow: hidden;
}
.hero-title .line > span { display: block; }

/* The signature arc, sweeping under the headline like the cover */
.hero-arc {
  display: block;
  width: min(100%, 620px);
  height: 34px;
  margin: 10px 0 0;
  color: var(--gold);
}

.hero-lede { margin: 34px 0 0; line-height: 1.75; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

.hero-micro {
  margin: 26px 0 0;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-faint);
}

/* --- Hero media ---
   The photograph keeps its own rooftop setting. It is desaturated and graded
   to the brand navy, then masked so it dissolves left-to-right into the
   section colour, leaving a clean dark field for the headline. */

.hero-media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(70%, 1180px);
  z-index: 1;
  pointer-events: none;
}

.hero-media-inner {
  position: absolute;
  inset: 0;
  /* isolate so the tint's blend mode only reaches the photo, not the page */
  isolation: isolate;
  /* Reaches full opacity well before the subject, so the blend stays in the
     empty rooftop area and never veils his face. */
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.42) 16%, #000 42%),
    linear-gradient(to bottom, #000 0%, #000 84%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.42) 16%, #000 42%),
    linear-gradient(to bottom, #000 0%, #000 84%, transparent 100%);
  mask-composite: intersect;
}

.hero-media-inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 16%;
  filter: contrast(1.03) saturate(1) brightness(1.07);
}

/* Barely-there navy grade: just enough to tie the photo to the section.
   `color` keeps the photo's own luminance, so his exposure is untouched. */
.hero-media-tint {
  position: absolute;
  inset: 0;
  background: #16386B;
  mix-blend-mode: color;
  opacity: 0.12;
}

/* The left ramp is what actually blends photo into section; the radial is a
   light corner falloff only, so the photo keeps its true colour. */
.hero-media-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    /* keeps the fixed nav legible where it crosses bright sky */
    linear-gradient(to bottom, rgba(6, 20, 43, 0.72) 0%, rgba(6, 20, 43, 0.22) 9%, transparent 18%),
    radial-gradient(ellipse 80% 72% at 62% 30%, transparent 0%, rgba(6, 20, 43, 0.04) 68%, rgba(6, 20, 43, 0.32) 100%),
    linear-gradient(to right, rgba(8, 29, 61, 0.95) 0%, rgba(8, 29, 61, 0.28) 20%, transparent 42%);
  pointer-events: none;
}

/* ---------- Authority marquee ---------- */

.authority {
  background: var(--navy-deep);
  border-top: 1px solid rgba(253, 253, 253, 0.1);
  border-bottom: 1px solid rgba(253, 253, 253, 0.1);
  padding: 44px 0;
  overflow: hidden;
}

.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.marquee:hover .marquee-track { animation-play-state: paused; }

.marquee-track {
  display: flex;
  width: max-content;
  align-items: baseline;
}

.marquee-track.names {
  gap: 80px;
  animation: marq-l 40s linear infinite;
}
.marquee-track.names span {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(253, 253, 253, 0.82);
  white-space: nowrap;
}

@keyframes marq-l { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Legacy numbers ---------- */

.legacy { padding: 140px 4vw 130px; border-top: 0; }

.legacy-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(44px, 6vw, 96px);
  align-items: start;
}

/* The intro holds position while the longer card column scrolls past it. */
.legacy-intro { position: sticky; top: 112px; }

.legacy-intro h2 {
  margin: 24px 0 0;
  font-size: clamp(38px, 4.4vw, 76px);
  line-height: 1;
}
.legacy-intro .lede { margin: 28px 0 0; max-width: 24rem; }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.stat-card {
  display: flex;
  flex-direction: column;
  min-height: 186px;
  padding: 26px 28px 24px;
  border: 1px solid var(--rule);
  border-radius: 3px;
  background: linear-gradient(180deg, rgba(198, 192, 184, 0.16), rgba(253, 253, 253, 0) 64%);
  transition: border-color 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.stat-card:hover {
  border-color: rgba(207, 158, 51, 0.55);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(8, 29, 61, 0.07);
}

.stat-card--wide { grid-column: 1 / -1; }

.stat-card-label {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--fg-faint);
}

.stat-card-num {
  margin: auto 0 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(54px, 5.4vw, 96px);
  letter-spacing: -0.04em;
  line-height: 0.88;
  color: var(--fg);
}

.stat-card--hero { min-height: 250px; }
.stat-card--hero .stat-card-num { font-size: clamp(72px, 8.4vw, 148px); }

/* Continents card: copy left, arc right */
.stat-card--reach {
  flex-direction: row;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  min-height: 224px;
}
.reach-copy {
  display: flex;
  flex-direction: column;
  flex: none;
}
.reach-copy .stat-card-num {
  margin: 16px 0 0;
  color: var(--accent-lg);
}
.reach-viz {
  flex: none;
  width: clamp(150px, 36%, 242px);
  margin-left: auto;
  color: var(--gold);
}
.reach-viz svg {
  display: block;
  width: 100%;
  height: auto;
}
/* Globe: gold land dots, navy markers. Far-side land and the one marker that
   falls behind the sphere are drawn faintly, which is what makes it read as a
   sphere rather than a flat disc. */
.globe-edge { opacity: 0.3; }
.globe-land { opacity: 0.85; }
.globe-land-back { opacity: 0.17; }
.globe-pt { fill: var(--navy); }

.globe-pt circle {
  transform-box: fill-box;
  transform-origin: center;
  animation: globe-pulse 4s var(--ease-out) infinite;
}
.globe-pt circle:nth-child(2) { animation-delay: 0.8s; }
.globe-pt circle:nth-child(3) { animation-delay: 1.6s; }
.globe-pt circle:nth-child(4) { animation-delay: 2.4s; }
.globe-pt circle:nth-child(5) { animation-delay: 3.2s; }

@keyframes globe-pulse {
  0%, 72%, 100% { opacity: 1; transform: scale(1); }
  36% { opacity: 0.6; transform: scale(1.3); }
}

/* ---------- Origin story ---------- */

.story { padding: 120px 4vw; }

.story h2 {
  margin: 24px 0 0;
  font-size: clamp(48px, 8vw, 130px);
  line-height: 0.96;
  max-width: 10em;
}
.story .lede { margin: 32px 0 0; }

.story-steps {
  margin-top: 110px;
  display: flex;
  flex-direction: column;
  gap: 110px;
}

.story-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.story-note {
  border-left: 2px solid var(--gold);
  padding-left: 36px;
}
.story-note .tag {
  margin: 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent);
}
.story-note .year {
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-size: clamp(80px, 10vw, 170px);
  line-height: 0.9;
  color: var(--fg);
}
.story-note.gold .year { color: var(--accent-lg); }
.story-note p:last-child {
  max-width: 26rem;
  margin: 26px 0 0;
  font-size: 17px;
  line-height: 1.75;
  color: var(--fg-muted);
}

.story-photo {
  margin: 0;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: rgba(198, 192, 184, 0.2);
}

.story-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.9s var(--ease-out);
}
.story-step:hover .story-photo img { transform: scale(1.035); }

/* Per-image crop anchors: the meaningful content in these two frames is not
   centred, so a default centre crop clips the part that carries the story. */
.story-photo--marquee img { object-position: center top; }   /* keep the billing */
.story-photo--broadcast img { object-position: center 62%; } /* keep the lower third */

.story-quote {
  margin: 150px auto 30px;
  max-width: 20em;
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(32px, 4.4vw, 64px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--fg);
}

/* ---------- The book (jacket) ---------- */

.bookshelf { padding: 130px 4vw; }

.book-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(40px, 6vw, 92px);
  align-items: center;
}

.bookshot-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

.book-glow {
  position: absolute;
  width: 88%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(207, 158, 51, 0.28) 0%, rgba(207, 158, 51, 0.08) 45%, transparent 70%);
  filter: blur(12px);
  pointer-events: none;
}

.bookshot {
  position: relative;
  margin: 0;
  width: min(88%, 400px);
  transform: perspective(1600px) rotateY(-10deg) rotateX(1.5deg);
  transition: transform 0.8s var(--ease-out);
  will-change: transform;
}
.bookshot:hover { transform: perspective(1600px) rotateY(-4deg) rotateX(0.5deg) translateY(-8px); }

.bookshot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px 6px 6px 2px;
  box-shadow:
    0 2px 4px rgba(3, 10, 22, 0.4),
    0 18px 36px rgba(3, 10, 22, 0.5),
    0 48px 90px rgba(3, 10, 22, 0.55);
}

/* Spine shading down the binding edge */
.bookshot::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 22px;
  z-index: 2;
  border-radius: 2px 0 0 2px;
  background: linear-gradient(
    90deg,
    rgba(8, 29, 61, 0.42) 0%,
    rgba(8, 29, 61, 0.16) 42%,
    rgba(255, 255, 255, 0.28) 88%,
    transparent 100%
  );
  pointer-events: none;
}

/* Page-edge sliver on the fore edge */
.bookshot::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 1.4%;
  bottom: 1.4%;
  width: 6px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(90deg, #EDE9E1, #C6C0B8 55%, #A49C92);
  box-shadow: 2px 0 10px rgba(3, 10, 22, 0.4);
}

.book-copy h2 {
  margin: 24px 0 0;
  font-size: clamp(36px, 4.8vw, 76px);
  line-height: 1;
  max-width: 12em;
}
/* Two-tone headline, same device as the hero and the book cover itself */
.book-head span { display: block; }
.book-copy .lede { margin: 30px 0 0; }

.book-meta {
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0 40px;
}
.book-meta li {
  border-top: 1px solid var(--rule);
  padding: 18px 0;
  font-size: 15px;
  color: var(--fg-muted);
}
.book-meta li strong {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
}

/* Concept plates reproduced from the book. Natural aspect ratios kept — these
   are text-bearing artwork, so cropping them to a uniform frame would cut copy. */
.book-plates {
  max-width: 1600px;
  margin: clamp(64px, 7vw, 104px) auto 0;
  padding: 0 4vw;
}

.book-plates-label {
  margin: 0 0 26px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fg-faint);
}

.plate-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 34px);
  align-items: start;
}

.plate {
  margin: 0;
  transition: transform 0.4s var(--ease-out);
}
.plate:hover { transform: translateY(-4px); }

/* Uniform frame so the row and its captions align. `contain` because these are
   text-bearing plates — cropping them to fill would cut the copy. */
.plate img {
  display: block;
  width: 100%;
  /* height:auto is required — the HTML height attribute otherwise wins over
     aspect-ratio and the frame renders at the image's intrinsic height. */
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background: rgba(253, 253, 253, 0.035);
  padding: 14px;
  border: 1px solid rgba(207, 158, 51, 0.28);
  border-radius: 3px;
  box-shadow: 0 16px 38px rgba(3, 10, 22, 0.4);
}

.plate figcaption {
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-soft);
}

/* ---------- Masterclass pillars ---------- */

.masterclass { padding: 140px 4vw 60px; }

.masterclass h2 {
  margin: 24px 0 0;
  font-size: clamp(44px, 7vw, 110px);
  line-height: 0.98;
  max-width: 11em;
}
.masterclass .lede { margin: 30px 0 0; }

.pillars { margin-top: 110px; }

.pillar {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 48px;
  align-items: start;
  border-top: 1px solid var(--rule);
  padding: 80px 0;
}

.pillar-num {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(110px, 13vw, 230px);
  line-height: 0.8;
  color: var(--accent-lg);
}

.pillar-tag {
  margin: 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--fg-faint);
}

.pillar h3 {
  margin: 20px 0 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 4vw, 60px);
  line-height: 1.04;
  text-transform: uppercase;
  color: var(--fg);
  max-width: 14em;
}

.pillar p:last-child {
  max-width: 36rem;
  margin: 24px 0 0;
  font-size: 17px;
  line-height: 1.8;
  color: var(--fg-muted);
}

.pillar em {
  color: var(--accent);
  font-style: normal;
  font-weight: 500;
}

/* ---------- Who it's for ---------- */

.audience { margin-top: 0; }

.audience h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(30px, 3.8vw, 54px);
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 20em;
  color: var(--fg);
}

.audience-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0 56px;
}

.audience-item {
  border-top: 1px solid var(--rule);
  padding: 30px 0 40px;
}
.audience-item .numeral {
  display: block;
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.26em;
  color: var(--accent);
  margin-bottom: 14px;
}
.audience-item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: var(--fg-muted);
}

/* ---------- City demand ---------- */

.cities { padding: 120px 4vw; }

.cities .lede { margin: 26px 0 0; }

/* Four across so seven buttons land as a clean 4 + 3 rather than 5 + 2. */
.city-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 1100px) {
  .city-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.city-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  min-height: 92px;
  padding: 20px 22px;
  cursor: pointer;
  font-family: var(--font-body);
  text-align: left;
  color: var(--fg);
  background: rgba(253, 253, 253, 0.04);
  border: 1px solid rgba(253, 253, 253, 0.18);
  border-radius: 3px;
  transition: border-color 0.25s, background 0.25s, transform 0.25s var(--ease-out);
}
.city-btn:hover {
  border-color: var(--gold);
  background: rgba(207, 158, 51, 0.1);
  transform: translateY(-2px);
}

.city-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.city-count {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  min-height: 1em;
  font-variant-numeric: tabular-nums;
}

/* Front-runner gets a quiet lift rather than a label, so the number stays the
   thing being read. */
.city-btn.is-leading {
  border-color: rgba(207, 158, 51, 0.55);
  background: rgba(207, 158, 51, 0.07);
}

/* Already tapped from this browser */
.city-btn.is-voted {
  border-color: rgba(207, 158, 51, 0.75);
  background: rgba(207, 158, 51, 0.16);
}
.city-btn.is-voted .city-name::after {
  content: " ✓";
  color: var(--gold);
}

.city-btn--other { border-style: dashed; }

.city-other,
.city-followup { margin-top: 30px; }

.city-field-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-faint);
}

.city-field {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: stretch;
}

.city-field input {
  flex: 1 1 260px;
  min-width: 0;
  padding: 15px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--fg);
  background: rgba(253, 253, 253, 0.06);
  border: 1px solid rgba(253, 253, 253, 0.24);
  border-radius: 2px;
}
.city-field input::placeholder { color: rgba(253, 253, 253, 0.4); }
.city-field input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(253, 253, 253, 0.1);
}
.city-field .btn { flex: 0 0 auto; }
.city-field .btn:disabled { opacity: 0.6; cursor: default; }

.city-fineprint {
  margin: 12px 0 0;
  font-size: 12px;
  line-height: 1.6;
  color: var(--fg-faint);
}

.city-total {
  margin: 26px 0 0;
  font-size: 15px;
  color: var(--fg-muted);
  font-variant-numeric: tabular-nums;
  min-height: 1.2em;
}

.city-status {
  margin: 8px 0 0;
  min-height: 1.2em;
  font-size: 14px;
  color: var(--gold);
}

@media (prefers-reduced-motion: reduce) {
  .city-btn { transition: none; }
}

/* ---------- Work with Tony ---------- */

.connect { padding: 120px 4vw; }

.connect-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.6vw, 36px);
}

.connect-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(32px, 3.4vw, 52px);
  border: 1px solid var(--rule);
  border-radius: 3px;
  background: linear-gradient(180deg, rgba(198, 192, 184, 0.16), rgba(253, 253, 253, 0) 64%);
  transition: border-color 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.connect-card:hover {
  border-color: rgba(207, 158, 51, 0.55);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(8, 29, 61, 0.07);
}

.connect-card h2 {
  margin: 22px 0 0;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.04;
  max-width: 12em;
}

.connect-card > p {
  margin: 20px 0 0;
  max-width: 30rem;
  font-size: 16px;
  line-height: 1.75;
  color: var(--fg-muted);
}

.connect-card .btn { margin-top: 32px; }

.connect-meta {
  margin: 16px 0 0;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--fg-faint);
}
.connect-meta a { color: inherit; }
.connect-meta a:hover { color: var(--accent); }

/* ---------- Register ---------- */

.register { padding: 130px 4vw; }

.register h2 {
  margin: 24px 0 0;
  font-size: clamp(38px, 4.8vw, 82px);
  line-height: 1;
  max-width: 12em;
}

.banner {
  margin: 56px 0 0;
  border: 1px solid var(--rule);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(8, 29, 61, 0.09);
}
.banner img {
  display: block;
  width: 100%;
  height: auto;
}

.event-bar {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1.6fr auto;
  gap: clamp(28px, 4vw, 64px);
  align-items: end;
}

.event-facts {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0 40px;
}
.event-facts li {
  border-top: 1px solid var(--rule);
  padding: 18px 0;
  font-size: 15px;
  color: var(--fg);
}
.event-facts li strong {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
}

.event-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.event-note {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--fg-faint);
}

/* Shown beside a CTA when no registration URL is configured. */
.stripe-msg {
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--accent);
}

/* ---------- Final CTA (jacket) ---------- */

.final-cta {
  position: relative;
  min-height: 85vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 140px 4vw;
}

.final-cta .glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 100%, rgba(207, 158, 51, 0.16), rgba(207, 158, 51, 0) 70%);
}

/* Globe rises from the bottom centre; the section's overflow crops it so only
   the northern hemisphere reads. Fades out at the base so it sits in the navy
   rather than being cut off by a hard edge. */
/* Dotted world map filling the band under the arc. Feathered on every edge so
   it dissolves into the navy instead of ending on a hard rectangle. */
.cta-globe {
  position: absolute;
  left: 50%;
  bottom: -6%;
  transform: translateX(-50%);
  width: min(1500px, 104%);
  height: auto;
  opacity: 0.42;
  pointer-events: none;
  -webkit-mask-image:
    linear-gradient(to bottom, transparent 0%, #000 26%, #000 62%, transparent 94%),
    linear-gradient(to right, transparent 0%, #000 14%, #000 86%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to bottom, transparent 0%, #000 26%, #000 62%, transparent 94%),
    linear-gradient(to right, transparent 0%, #000 14%, #000 86%, transparent 100%);
  mask-composite: intersect;
}


.final-cta .container {
  position: relative;
  text-align: center;
  width: 100%;
}
.final-cta .eyebrow { justify-content: center; }

.final-cta h2 {
  margin: 30px auto 0;
  font-size: clamp(48px, 8.4vw, 140px);
  line-height: 0.96;
  max-width: 9em;
}

.final-cta .lede {
  max-width: 32rem;
  margin: 34px auto 0;
}

.final-cta .hero-ctas {
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 48px;
}

.link-underline {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--fg-soft);
  border-bottom: 1px solid rgba(253, 253, 253, 0.25);
  padding-bottom: 3px;
}
.link-underline:hover { color: var(--paper); }

.final-quote {
  max-width: 24em;
  margin: 80px auto 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.4;
  color: var(--fg-soft);
}

/* ---------- Legal pages (privacy, terms) ---------- */

/* Head and body share one measure. Both include their 4vw padding inside the
   max-width (border-box), so the h1 and the body copy sit on the same edge. */
.legal-head,
.legal-body {
  max-width: calc(46rem + 8vw);
  margin: 0 auto;
  padding-left: 4vw;
  padding-right: 4vw;
}
.legal-head { padding-top: 150px; }
.legal-head .container { max-width: none; margin: 0; }

.legal-head h1 {
  margin: 22px 0 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  color: var(--fg);
}

.legal-updated {
  margin: 20px 0 0;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-faint);
}

.legal-body {
  padding-top: 56px;
  padding-bottom: 130px;
}

.legal-body h2 {
  margin: 56px 0 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--fg);
}
.legal-body h2:first-child { margin-top: 0; }

.legal-body p,
.legal-body li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--fg-muted);
}
.legal-body p { margin: 16px 0 0; }

.legal-body ul {
  margin: 16px 0 0;
  padding-left: 1.1em;
}
.legal-body li { margin-top: 8px; }

.legal-body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- Assessment ---------- */

.assess-cta { padding: 110px 4vw; }
.assess-cta h2 { margin: 24px 0 0; font-size: clamp(36px, 4.6vw, 76px); line-height: 1; max-width: 12em; }
.assess-cta .lede { margin: 26px 0 0; }
.assess-cta .hero-ctas { margin-top: 36px; }


.assess-intro {
  margin: 22px 0 0;
  max-width: 34rem;
  font-size: 17px;
  line-height: 1.8;
  color: var(--fg-muted);
}

.assess-body {
  max-width: calc(46rem + 8vw);
  margin: 0 auto;
  padding: 56px 4vw 130px;
}

.assess-fieldset {
  margin: 0 0 48px;
  padding: 0;
  border: 0;
}

.assess-legend {
  padding: 0;
  margin-bottom: 26px;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--fg);
}

.field { margin-bottom: 22px; }

.field-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0 22px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-faint);
}

.req { color: var(--accent); }
.optional {
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: none;
  opacity: 0.75;
}

.field input,
.field select {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--fg);
  background: rgba(198, 192, 184, 0.16);
  border: 1px solid var(--rule);
  border-radius: 2px;
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(198, 192, 184, 0.26);
}
.field.has-error input,
.field.has-error select { border-color: #B3261E; }

.field-error {
  margin: 8px 0 0;
  font-size: 13px;
  color: #B3261E;
}

.question {
  padding: 24px 0;
  border-top: 1px solid var(--rule);
}
.question:last-of-type { border-bottom: 1px solid var(--rule); }

.question-text {
  margin: 0 0 16px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg);
}

.question-num {
  display: inline-block;
  margin-right: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.choices {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.choice {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid var(--rule);
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
}
.choice:hover { border-color: var(--gold); }
.choice input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.choice input:focus-visible + span {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}
.choice:has(input:checked) {
  border-color: var(--gold);
  background: rgba(207, 158, 51, 0.14);
  font-weight: 500;
}
.question.has-error .choice { border-color: #B3261E; }

.assess-submit { margin-top: 40px; }

.assess-fineprint {
  margin: 16px 0 0;
  max-width: 34rem;
  font-size: 13px;
  line-height: 1.7;
  color: var(--fg-faint);
}
.assess-fineprint a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

.assess-status {
  margin: 14px 0 0;
  min-height: 1.2em;
  font-size: 14px;
  color: var(--accent);
}

/* ---- result ---- */

.result {
  padding: 44px 0 0;
  border-top: 1px solid var(--rule);
}

.result-score {
  margin: 22px 0 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(72px, 11vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--accent-lg);
}
.result-outof {
  margin-left: 10px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--fg-faint);
}

.result h2 {
  margin: 20px 0 0;
  font-size: clamp(26px, 3.4vw, 46px);
  line-height: 1.05;
  max-width: 14em;
}

.result-body {
  margin: 22px 0 0;
  max-width: 38rem;
  font-size: 17px;
  line-height: 1.8;
  color: var(--fg-muted);
}

.result-cta {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
.result-cta .link-underline { color: var(--fg-soft); border-bottom-color: var(--rule); }
.result-cta .link-underline:hover { color: var(--fg); }

@media (max-width: 599px) {
  .field-row { grid-template-columns: 1fr; }
  .choice { flex: 1 1 100%; justify-content: center; }
  .result-cta .btn { width: 100%; justify-content: center; }
}

/* ---------- Footer ---------- */

.footer {
  background: var(--navy-deep);
  color: rgba(253, 253, 253, 0.55);
  padding: 80px 4vw 40px;
  border-top: 1px solid rgba(253, 253, 253, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 48px;
  align-items: start;
}

.footer-brand p:first-child {
  margin: 0;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.06em;
  color: var(--paper);
}
.footer-brand p:first-child em {
  font-style: normal;
  color: var(--gold);
}
.footer-brand p:last-child {
  margin: 10px 0 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  font-size: 13px;
  color: rgba(253, 253, 253, 0.55);
}
.footer-col a:hover { color: var(--paper); }

.footer-legal {
  margin: 70px 0 0;
  border-top: 1px solid rgba(253, 253, 253, 0.1);
  padding-top: 24px;
  font-size: 12px;
  color: rgba(253, 253, 253, 0.38);
}

/* ---------- Responsive ---------- */

@media (max-width: 1023px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta-mobilehidden { display: none; }
  /* Stacked: he sits in the top third, copy reads off a scrim below him. */
  .hero-media { width: 100%; }
  .hero-media-inner {
    -webkit-mask-image: none;
    mask-image: none;
  }
  .hero-media-inner img {
    object-position: 56% 6%;
    filter: contrast(1.03) saturate(1) brightness(1.02);
  }
  .hero-media-inner::after {
    background: linear-gradient(to bottom,
      rgba(8, 29, 61, 0.1) 0%,
      rgba(8, 29, 61, 0.22) 24%,
      rgba(8, 29, 61, 0.82) 44%,
      rgba(8, 29, 61, 0.97) 60%,
      var(--navy) 74%);
  }
  .hero-copy {
    width: 100%;
    justify-content: flex-end;
    padding: 120px 4vw 72px;
  }
  .book-layout { grid-template-columns: 1fr; gap: 48px; }
  .bookshot-stage { order: 2; }
  .bookshot { width: min(66%, 300px); transform: perspective(1600px) rotateY(-7deg); }
  .story-step { grid-template-columns: 1fr; }
  .story-step.flip .story-photo { order: -1; }
  .pillar { grid-template-columns: 1fr; gap: 12px; }
  .legacy-layout { grid-template-columns: 1fr; gap: 56px; }
  .legacy-intro { position: static; }
}

@media (min-width: 1024px) {
  .mobile-menu { display: none; }
}

@media (max-width: 599px) {
  .brand-sub { display: none; }
}

@media (max-width: 767px) {
  .connect-grid { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .city-name { font-size: 18px; }
  .city-field .btn { width: 100%; justify-content: center; }
  .event-bar { grid-template-columns: 1fr; align-items: start; gap: 28px; }
  .event-cta { width: 100%; }
  .event-cta .btn { width: 100%; justify-content: center; }
  .plate-row { grid-template-columns: 1fr; gap: 28px; max-width: 420px; margin: 0 auto; }
  .stat-grid { grid-template-columns: 1fr; gap: 16px; }
  .stat-card { min-height: 168px; padding: 24px 24px 22px; }
  .stat-card--hero { min-height: 200px; }
  .stat-card--reach { flex-direction: column; align-items: stretch; gap: 18px; min-height: 0; }
  .reach-copy .stat-card-num { margin-top: 12px; }
  .reach-viz { width: min(58%, 190px); margin: 0 auto; }
  .hero-ctas a,
  .hero-ctas button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .final-cta .link-underline { width: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none !important; }
  .globe-pt circle { animation: none !important; }
  .arr { transition: none; }
  .bookshot { transition: none; }
}
