/* =========================================================================
   Loyalty Day 2026 — Premium build, Oculos-branded
   Source Sans 3 only · Oculos pastels at 75% · ink #2A2A2A (never pure black)
   Retains: custom cursor, grain, scroll progress, marquee, reveals,
            magnetic CTA, sticky timeline, word-by-word manifesto.
   ========================================================================= */

/* -------- 0. Reset ----------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Source Sans 3", "Source Sans Pro", Calibri, Arial, sans-serif;
  font-weight: 400;
  background: var(--ink);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.5;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

/* -------- 1. Tokens — Oculos palette ---------------------------------- */
:root {
  /* Ink & text (Oculos values — never pure black) */
  --ink: #2A2A2A;
  /* Oculos primary text / dark base */
  --ink-warm: #1e1e1e;
  /* warmer near-black for dark sections */
  --cream: #F1EFE5;
  /* soft off-white */
  --cream-mid: #6A6A6A;
  /* Oculos secondary text */
  --cream-dim: #9A9A9A;
  /* Oculos dim */

  /* Oculos service-area pastels (75% opacity target values) */
  --beige: #EBE8D9;
  /* CRM */
  --mint: #DCEACB;
  /* Performance / signature */
  --mint-solid: #D0DEBB;
  /* primary Oculos mint, full saturation at 75% */
  --rose: #E4D5D3;
  /* Idé & innhold */
  --blue: #D4E8EF;
  /* Innsikt & analyse */

  /* Accent highlight (replaces amber) */
  --accent: #D0DEBB;
  /* Oculos mint as highlight */

  /* Transitions */
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-in: cubic-bezier(.7, 0, .84, 0);
  --ease-io: cubic-bezier(.77, 0, .175, 1);

  /* Container */
  --wrap: min(92vw, 1400px);

  /* Type rhythm */
  --label-fs: 11px;
  --label-ls: 0.22em;
}

/* -------- 2. Type primitives ------------------------------------------ */
/* Oculos uses Source Sans Pro/3 only. Display = Light at huge size.
   Emphasis = Semibold (600) or Italic. Never Bold (700). */

.display {
  font-family: "Source Sans 3", "Source Sans Pro", Calibri, Arial, sans-serif;
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 0.92;
}

.mono {
  font-family: "Source Sans 3", "Source Sans Pro", Calibri, Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}

.eyebrow {
  font-family: "Source Sans 3", "Source Sans Pro", Calibri, Arial, sans-serif;
  font-size: var(--label-fs);
  text-transform: uppercase;
  letter-spacing: var(--label-ls);
  color: var(--cream-mid);
  font-weight: 600;
}

/* Thin horizontal accent line — Oculos signature detail */
.accent-rule {
  display: block;
  width: 80px;
  height: 1px;
  background: currentColor;
  margin-top: 24px;
  opacity: 0.6;
}

/* Italic-in-display emphasis (Oculos still uses italic for emphasis) */
em {
  font-style: italic;
  font-weight: 300;
}

strong {
  font-weight: 600;
  /* semibold, never bold */
}

/* -------- 3. Custom cursor removed ------------------------------------ */

/* -------- 4. Grain overlay — very subtle, Oculos-quiet --------------- */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2000;
  opacity: 0.04;
  mix-blend-mode: overlay;
}

/* -------- 5. Scroll progress bar -------------------------------------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--cream);
  z-index: 1500;
  transition: width 0.1s linear;
}

/* -------- 6. Top nav / language toggle -------------------------------- */
.nav-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  mix-blend-mode: difference;
  color: var(--cream);
}

.nav-top__logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  line-height: 0;
}

.nav-top__logo img {
  height: 36px;
  width: auto;
  filter: invert(0);
  /* will be inverted when on dark via blend-mode already */
}

.nav-top__center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
}

.nav-top__center img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-top__divider {
  width: 1px;
  height: 32px;
  background: currentColor;
  opacity: 0.35;
}

.nav-top__event {
  font-family: "Source Sans 3", "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 19px;
  letter-spacing: 0.02em;
}

.nav-top__event em {
  font-style: italic;
}

.nav-top__right {
  display: flex;
  gap: 24px;
  align-items: center;
}

.lang-toggle {
  display: inline-flex;
  gap: 2px;
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 600;
  text-transform: uppercase;
}

.lang-toggle button {
  padding: 6px 10px;
  opacity: 0.45;
  transition: opacity 0.3s var(--ease-out);
}

.lang-toggle button[aria-pressed="true"] {
  opacity: 1;
}

.lang-toggle button:hover {
  opacity: 1;
}

.nav-top__tix {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 10px 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  transition: background 0.3s, color 0.3s;
}

/* -------- 7. Bilingual ------------------------------------------------- */
html[lang="no"] [data-lang="en"],
html[lang="en"] [data-lang="no"] {
  display: none !important;
}

/* -------- 8. Hero ------------------------------------------------------ */
.hero {
  position: relative;
  min-height: calc(100vh - 75px);
  padding: 80px 36px 40px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  /*justify-content: space-between;*/
 /* justify-content: center;
  gap: 50px;*/
  justify-content: center;
  gap: 50px;
  background: var(--ink-warm);
}

.hero__stage {
  position: relative;
  z-index: 2;
  margin-top: 30px;
}

.hero__meta-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(241, 239, 229, 0.14);
  margin-bottom: 60px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--cream-dim);
  flex-wrap: wrap;
}

.hero__meta-row span {
  white-space: nowrap;
}

.hero__title {
  font-family: "Source Sans 3", "Source Sans Pro", sans-serif;
  font-weight: 300;
  font-size: clamp(60px, 12vw, 200px);
  line-height: 0.88;
  letter-spacing: -0.045em;
  color: var(--cream);
}

.hero__title .accent {
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}

.hero__title .line {
  display: block;
  overflow: hidden;
}

.hero__title .line>span {
  display: inline-block;
  transform: translateY(110%);
  animation: riseIn 1.1s var(--ease-out) forwards;
}

.hero__title .line:nth-child(2)>span {
  animation-delay: 0.08s;
}

.hero__title .line:nth-child(3)>span {
  animation-delay: 0.16s;
}

@keyframes riseIn {
  to {
    transform: translateY(0);
  }
}

.hero__sub {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-top: 80px;
  align-items: end;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 0.6s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.hero__tag {
  font-weight: 300;
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.45;
  color: var(--cream);
  max-width: 32ch;
}

.hero__tag em {
  font-style: italic;
  color: var(--accent);
}

.hero__countdown {
  text-align: left;
}

.hero__countdown-num {
  font-family: "Source Sans 3", "Source Sans Pro", sans-serif;
  font-weight: 300;
  font-size: clamp(60px, 7vw, 110px);
  line-height: 1;
  color: var(--accent);
  display: block;
  letter-spacing: -0.035em;
  font-variant-numeric: tabular-nums;
}

.hero__countdown-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--cream-dim);
  margin-top: 12px;
  display: block;
}

.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-self: end;
  text-align: right;
}

.hero__ctas a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 0;
  border-bottom: 1px solid var(--cream);
  transition: letter-spacing 0.3s var(--ease-out);
}

.hero__ctas a:hover {
  letter-spacing: 0.28em;
}

/* Floating image strip — greyscale peek */
.hero__peek {
  position: absolute;
  right: 5%; /* Adjusted for wider image */
  top: 25%; /* Adjusted down slightly */
  width: 50vw; /* Wider */
  max-width: 800px; /* Larger max width */
  aspect-ratio: 16/9; /* Landscape mode */
  z-index: 1;
  overflow: hidden;
  filter: grayscale(100%) contrast(1.05);
  opacity: 0.6;
  mix-blend-mode: luminosity;
}

.hero__peek img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: floatPeek 20s ease-in-out infinite alternate, crossfadeHero 18s infinite;
  opacity: 0;
}

.hero__peek img.slide-1 {
  animation-delay: 0s, 0s;
}
.hero__peek img.slide-2 {
  animation-delay: 0s, -12s;
}
.hero__peek img.slide-3 {
  animation-delay: 0s, -6s;
}

@keyframes crossfadeHero {
  0% { opacity: 1; }
  25% { opacity: 1; }
  33.33% { opacity: 0; }
  91.66% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes floatPeek {
  from {
    transform: scale(1.05) translateY(-2%);
  }

  to {
    transform: scale(1.12) translateY(2%);
  }
}

/* Marquee at bottom of hero — Oculos italic tone */
.marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin: 0 -36px;
  padding: 18px 0;
  border-top: 1px solid rgba(241, 239, 229, 0.14);
  border-bottom: 1px solid rgba(241, 239, 229, 0.14);
}

.marquee__track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-weight: 300;
  font-size: 28px;
  color: var(--cream);
  font-style: italic;
}

.marquee__track span::before {
  content: "·";
  display: inline-block;
  margin-right: 60px;
  color: var(--accent);
  font-style: normal;
  font-weight: 600;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* -------- 9. Manifesto section ---------------------------------------- */
.manifesto {
  padding: 60px 36px;
  background: var(--ink-warm);
  position: relative;
}

.manifesto__grid {
  display: grid;
  grid-template-columns: 1fr 10fr 1fr;
  align-items: start;
}

.manifesto__num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--cream-dim);
  text-transform: uppercase;
  position: sticky;
  top: 120px;
}

.manifesto__text {
  font-weight: 300;
  font-size: clamp(30px, 4.2vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--cream-dim);
  max-width: 24ch;
}

.manifesto__text em {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}

.manifesto__text .word {
  opacity: 0.25;
  transition: opacity 0.5s var(--ease-out);
  display: inline-block;
}

.manifesto__text .word.is-lit {
  opacity: 1;
  color: var(--cream);
}

.manifesto__text .word.is-lit em,
.manifesto__text em .word.is-lit {
  color: var(--accent);
  opacity: 1;
}

/* -------- 10. Themes — three Oculos service-area panels --------------- */
.themes {
  background: var(--ink-warm);
  padding: 0 0 60px; /* Reduced bottom padding */
  color: var(--cream);
}

.themes__head {
  padding: 60px 36px 50px; /* Merged padding, removed top border for cleaner transition */
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  /* border-top removed */
}

.themes__head-inner .accent-rule {
  background: var(--cream);
  opacity: 0.8;
}

.themes__title {
  font-weight: 300;
  font-size: clamp(40px, 6vw, 96px);
  letter-spacing: -0.035em;
  line-height: 0.95;
}

.themes__title em {
  font-style: italic;
  color: var(--accent);
}

.themes__track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 36px;
}

.theme-card {
  aspect-ratio: 4/5;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--ink);
  position: relative;
  overflow: hidden;
  transition: transform 0.6s var(--ease-out);
}

.theme-card:hover {
  transform: translateY(-6px);
}

.theme-card--01 {
  background: var(--rose);
}

/* deliverability (warmth) */
.theme-card--02 {
  background: var(--mint);
}

/* effekt & ROI — Oculos signature */
.theme-card--03 {
  background: var(--blue);
}

/* disruptiv — innsikt blue */
.theme-card__head {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.theme-card__num {
  font-weight: 300;
  font-style: italic;
  font-size: 88px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.theme-card__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
}

.theme-card__title {
  font-weight: 300;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  max-width: 16ch;
  margin-bottom: 14px;
}

.theme-card__title em {
  font-style: italic;
}

.theme-card__body {
  font-size: 14px;
  line-height: 1.55;
  max-width: 34ch;
  color: rgba(42, 42, 42, 0.78);
}

/* -------- 11. Program — sticky timeline ------------------------------- */
.program {
  background: var(--beige);
  /* Oculos CRM beige */
  color: var(--ink);
  padding: 40px 36px;
  position: relative;
}

.program__grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 80px;
  max-width: var(--wrap);
  margin: 0 auto;
}

.program__sticky {
  position: sticky;
  top: 120px;
  align-self: start;
  height: max-content;
  color: var(--ink);
}

.program__sticky .accent-rule {
  background: var(--ink);
  opacity: 0.8;
}

.program__eyebrow {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--cream-mid);
  margin-bottom: 30px;
}

.program__title {
  font-weight: 300;
  font-size: clamp(48px, 6.5vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--ink);
}

.program__title em {
  font-style: italic;
}

.program__title-sub {
  margin-top: 30px;
  font-style: italic;
  font-size: 20px;
  line-height: 1.4;
  color: var(--cream-mid);
  max-width: 32ch;
  font-weight: 300;
}

.timeline {
  display: flex;
  flex-direction: column;
}

.timeline__header {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 24px;
  padding-bottom: 12px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: rgba(42, 42, 42, 0.5);
}

.timeline__item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid rgba(42, 42, 42, 0.18);
  align-items: flex-start;
  transition: padding 0.3s var(--ease-out);
  position: relative;
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 1px;
  width: 0;
  background: var(--ink);
  transition: width 0.6s var(--ease-out);
}

.timeline__item:hover::before {
  width: 100%;
}

.timeline__item:hover {
  padding-left: 16px;
}

.timeline__time-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.timeline__time {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.timeline__company-logos {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.timeline__company-logo {
  height: auto;
  max-height: 32px;
  max-width: 100px;
  object-fit: contain;
  filter: grayscale(1) brightness(0.9) contrast(1.1) opacity(0.5);
  transition: filter 0.3s var(--ease-out), opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.timeline__item:hover .timeline__company-logo {
  filter: grayscale(0) brightness(1) contrast(1) opacity(0.95);
  transform: scale(1.04);
}

.timeline__speaker-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.timeline__avatars {
  display: flex;
  align-items: center;
}

.timeline__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--beige);
  background: var(--beige);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s var(--ease-out);
}

.timeline__avatar + .timeline__avatar {
  margin-left: -14px;
}

.timeline__item:hover .timeline__avatar {
  transform: scale(1.06);
}

.timeline__what {
  font-weight: 300;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.timeline__what em {
  font-style: italic;
}

.timeline__speaker-title {
  font-weight: 300;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 8px;
}

.timeline__speaker-title em {
  color: var(--ink);
  opacity: 0.6;
}

.timeline__desc {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(42, 42, 42, 0.7);
  max-width: 55ch;
  font-weight: 400;
}

.timeline__who {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--cream-mid);
  text-align: right;
  white-space: nowrap;
}

/* -------- 12. Speakers — grid w/ hover reveal ------------------------- */
.speakers {
  background: var(--ink-warm);
  padding: 40px 36px;
  color: var(--cream);
}

.speakers__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  max-width: var(--wrap);
  margin: 0 auto 80px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(241, 239, 229, 0.14);
  gap: 40px;
}

.speakers__head .accent-rule {
  background: var(--cream);
  opacity: 0.8;
}

.speakers__title {
  font-weight: 300;
  font-size: clamp(48px, 6vw, 100px);
  letter-spacing: -0.035em;
  line-height: 0.95;
}

.speakers__title em {
  font-style: italic;
  color: var(--accent);
}

.speakers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  max-width: var(--wrap);
  margin: 0 auto;
  background: rgba(241, 239, 229, 0.12);
  border: 1px solid rgba(241, 239, 229, 0.12);
}

.speaker {
  background: var(--ink-warm);
  padding: 40px 28px 32px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: background 0.5s var(--ease-out);
  color: var(--cream);
}

.speaker::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--mint-solid);
  transform: translateY(100%);
  transition: transform 0.6s var(--ease-out);
  z-index: 0;
}

.speaker:hover::before {
  transform: translateY(0);
}

.speaker:hover {
  color: var(--ink);
}

.speaker>* {
  position: relative;
  z-index: 1;
}

.speaker__num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.speaker__name {
  font-weight: 300;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.speaker__name em {
  font-style: italic;
}

.speaker__role {
  font-style: italic;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.4;
  opacity: 0.8;
}

.speaker__more {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s;
}

.speaker:hover .speaker__more {
  opacity: 1;
  transform: translateY(0);
}

.speaker__photo {
  position: absolute;
  right: -10px;
  bottom: 0;
  width: 75%;
  height: 75%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.18;
  filter: grayscale(100%);
  mix-blend-mode: luminosity;
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out), filter 0.6s var(--ease-out);
  pointer-events: none;
}

.speaker:hover .speaker__photo {
  opacity: 0.85;
  filter: grayscale(0%);
  transform: translateY(-4px) scale(1.02);
}

/* -------- 13. Gallery — asymmetric grid ------------------------------- */
.gallery {
  background: var(--ink-warm);
  padding: 40px 36px;
  overflow: hidden;
}

.gallery__head {
  max-width: var(--wrap);
  margin: 0 auto 60px;
  color: var(--cream);
}

.gallery__head .accent-rule {
  background: var(--cream);
  opacity: 0.8;
}

.gallery__title {
  font-weight: 300;
  font-style: italic;
  font-size: clamp(40px, 5vw, 80px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--cream);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 90px;
  gap: 16px;
  max-width: var(--wrap);
  margin: 0 auto;
}

.gallery__item {
  overflow: hidden;
  position: relative;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease-out), filter 0.6s;
  filter: grayscale(25%) contrast(1.02);
}

.gallery__item:hover img {
  transform: scale(1.06);
  filter: grayscale(0%) contrast(1);
}

.g-1 {
  grid-column: 1 / span 5;
  grid-row: span 5;
}

.g-2 {
  grid-column: 7 / span 6;
  grid-row: span 3;
}

.g-3 {
  grid-column: 7 / span 3;
  grid-row: span 4;
}

.g-4 {
  grid-column: 10 / span 3;
  grid-row: span 4;
}

.g-5 {
  grid-column: 1 / span 4;
  grid-row: span 4;
}

.g-6 {
  grid-column: 6 / span 7;
  grid-row: span 5;
}

/* -------- 14. CTA — mint signature section ---------------------------- */
.cta-block {
  background: var(--mint);
  /* Oculos signature mint */
  color: var(--ink);
  padding: 220px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-block__kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(42, 42, 42, 0.6);
  margin-bottom: 30px;
}

.cta-block__rule {
  width: 80px;
  height: 1px;
  background: var(--ink);
  opacity: 0.4;
  margin: 0 auto 30px;
}

.cta-block__line {
  font-weight: 300;
  font-size: clamp(56px, 9vw, 160px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 70px;
}

.cta-block__line em {
  font-style: italic;
}

.magnet-wrap {
  display: inline-block;
  padding: 50px;
}

.magnet {
  display: inline-block;
  padding: 26px 52px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: transform 0.5s var(--ease-out), background 0.3s;
  will-change: transform;
}

.magnet__inner {
  display: inline-block;
  transition: transform 0.5s var(--ease-out);
  will-change: transform;
}

/* -------- 15. Newsletter ---------------------------------------------- */
.newsletter {
  background: var(--ink-warm);
  color: var(--cream);
  padding: 40px 36px;
  border-top: 1px solid rgba(241, 239, 229, 0.14);
}

.newsletter__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: var(--wrap);
  margin: 0 auto;
  align-items: end;
}

.newsletter__left .accent-rule {
  background: var(--cream);
  opacity: 0.8;
}

.newsletter__title {
  font-weight: 300;
  font-size: clamp(40px, 5vw, 80px);
  line-height: 1;
  letter-spacing: -0.035em;
}

.newsletter__title em {
  font-style: italic;
  color: var(--accent);
}

.newsletter__form {
  display: flex;
  border-bottom: 1px solid var(--cream);
  padding: 16px 0;
  align-items: center;
  gap: 12px;
}

.newsletter__form input {
  flex: 1;
  background: transparent;
  border: 0;
  color: var(--cream);
  font-family: inherit;
  font-weight: 300;
  font-size: 24px;
  padding: 8px 0;
  outline: none;
}

.newsletter__form input::placeholder {
  color: var(--cream-dim);
  font-style: italic;
}

.newsletter__form button {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 0;
  transition: transform 0.3s;
}

.newsletter__form button:hover {
  transform: translateX(6px);
}

.newsletter__status {
  margin-top: 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--cream-dim);
  min-height: 16px;
}

.newsletter__note {
  margin-top: 24px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--cream-dim);
  max-width: 38ch;
  font-weight: 300;
}

/* -------- 16. Footer --------------------------------------------------- */
.foot {
  background: var(--ink);
  color: var(--cream);
  padding: 40px 36px 40px;
  font-size: 14px;
  border-top: 1px solid rgba(241, 239, 229, 0.14);
}

.foot__top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  max-width: var(--wrap);
  margin: 0 auto 60px;
  gap: 40px;
  flex-wrap: wrap;
}

.foot__lockup {
  font-weight: 300;
  font-size: clamp(50px, 10vw, 160px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--cream);
}

.foot__lockup em {
  font-style: italic;
  color: var(--accent);
}

.foot__cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, auto));
  gap: 60px;
}

.foot__col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 16px;
}

.foot__col p,
.foot__col a {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--cream);
  display: block;
}

.foot__col a:hover {
  color: var(--accent);
}

.foot__bottom {
  max-width: var(--wrap);
  margin: 60px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(241, 239, 229, 0.14);
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-dim);
  flex-wrap: wrap;
  gap: 20px;
}

.foot__logo {
  display: block;
  height: 64px;
  width: auto;
  margin-bottom: 24px;
  opacity: 0.9;
}

/* -------- 17. Reveal helper ------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-1 {
  transition-delay: 0s;
}

.reveal-2 {
  transition-delay: 0.1s;
}

.reveal-3 {
  transition-delay: 0.2s;
}

.reveal-4 {
  transition-delay: 0.3s;
}

.reveal-5 {
  transition-delay: 0.4s;
}

.reveal-6 {
  transition-delay: 0.5s;
}

/* -------- 18. Responsive ---------------------------------------------- */
@media (max-width: 960px) {
  .nav-top {
    padding: 18px 22px;
  }

  .nav-top__logo img {
    height: 30px !important;
  }

  .nav-top__center img {
    height: 20px;
  }

  .nav-top__divider,
  .nav-top__event {
    display: none;
  }

  .hero {
    padding: 120px 22px 40px;
  }

  .hero__sub {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero__ctas {
    justify-self: start;
    text-align: left;
  }

  .hero__peek {
    display: none;
  }

  .marquee {
    margin: 0 -22px;
  }

  .manifesto {
    padding: 120px 22px;
  }

  .manifesto__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .manifesto__num {
    position: relative;
    top: 0;
  }

  .themes__head,
  .themes__track {
    padding-left: 22px;
    padding-right: 22px;
  }

  .themes__track {
    grid-template-columns: 1fr;
  }

  .theme-card {
    aspect-ratio: auto;
    min-height: 380px;
  }

  .program {
    padding: 40px 22px;
  }

  .program__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .program__sticky {
    position: relative;
    top: 0;
  }

  .timeline__item {
    grid-template-columns: 80px 1fr;
  }

  .timeline__who {
    grid-column: 1 / -1;
    text-align: left;
  }

  .speakers,
  .cta-block,
  .newsletter {
    padding-left: 22px;
    padding-right: 22px;
  }

  .speakers {
    padding: 40px 22px;
  }

  .speakers__head {
    flex-direction: column;
    align-items: start;
  }

  .newsletter {
    padding: 120px 22px;
  }

  .newsletter__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gallery {
    padding: 40px 22px;
  }

  .gallery__grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 70px;
    gap: 10px;
  }

  .g-1 {
    grid-column: 1 / span 6;
    grid-row: span 4;
  }

  .g-2 {
    grid-column: 1 / span 6;
    grid-row: span 3;
  }

  .g-3 {
    grid-column: 1 / span 3;
    grid-row: span 3;
  }

  .g-4 {
    grid-column: 4 / span 3;
    grid-row: span 3;
  }

  .g-5 {
    grid-column: 1 / span 3;
    grid-row: span 3;
  }

  .g-6 {
    grid-column: 4 / span 3;
    grid-row: span 3;
  }

  .foot__top {
    flex-direction: column;
  }

  .foot__cols {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .foot__bottom {
    flex-direction: column;
  }

  .cta-block {
    padding: 140px 22px;
  }

  .magnet-wrap {
    padding: 24px;
  }

  .magnet {
    padding: 20px 34px;
    font-size: 11px;
  }
}

/* -------- 19. Reduced motion ------------------------------------------ */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero__peek img,
  .marquee__track {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero__title .line>span {
    transform: none;
    animation: none;
  }

  .hero__sub {
    opacity: 1;
    animation: none;
  }
}