/* ═══════════════════════════════════════════════════════════════
   SecureArk Authority Platform — Design System
   Deep Blue + Gold · Serif Authority · Dark Premium
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* ── Tokens ────────────────────────────────────── */
:root {
  /* Palette */
  --bg-deep: #060a14;
  --bg-primary: #0a1222;
  --bg-elevated: #0e1830;
  --bg-surface: #121e38;
  --bg-card: rgba(14, 24, 48, 0.6);

  --text-primary: #e8eaf0;
  --text-secondary: #8d95a8;
  --text-dim: #586580;
  --text-faint: #3a4560;

  --accent: #c9a84c;
  --accent-dim: rgba(201, 168, 76, 0.35);
  --accent-glow: rgba(201, 168, 76, 0.08);
  --blue-accent: #3d6ba8;
  --blue-dim: rgba(61, 107, 168, 0.15);

  --border: rgba(141, 149, 168, 0.08);
  --border-accent: rgba(201, 168, 76, 0.2);

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, sans-serif;

  /* Spacing */
  --section-pad: clamp(5rem, 12vh, 9rem);
  --container-w: min(52rem, 90vw);
  --container-wide: min(68rem, 92vw);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.8s;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-secondary);
  background: var(--bg-deep);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  color: var(--text-primary);
  font-weight: 400;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  letter-spacing: -0.005em;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

h4 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

p {
  max-width: 42rem;
}

p+p {
  margin-top: 1.4rem;
}

em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text-primary);
}

strong {
  font-weight: 500;
  color: var(--text-primary);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.75;
}

::selection {
  background: var(--accent-dim);
  color: var(--text-primary);
}

/* ── Layout ────────────────────────────────────── */
.page {
  min-height: 100vh;
}

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section--alt {
  background: var(--bg-primary);
}

.section--elevated {
  background: var(--bg-elevated);
}

.section--dark {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ── Navigation ────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.2rem 0;
  transition: all 0.5s var(--ease-smooth);
  background: transparent;
}

.nav.scrolled {
  padding: 0.7rem 0;
  background: rgba(6, 10, 20, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-primary);
  text-decoration: none;
}

.nav-logo:hover {
  opacity: 1;
}

.nav-logo-icon {
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  letter-spacing: 0.05em;
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 2.2rem;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--text-primary);
  opacity: 1;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
  z-index: 101;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--text-secondary);
  position: absolute;
  left: 0;
  transition: all 0.3s;
}

.nav-toggle span:nth-child(1) {
  top: 0;
}

.nav-toggle span:nth-child(2) {
  top: 50%;
}

.nav-toggle span:nth-child(3) {
  top: 100%;
}

/* ── Hero ──────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 45%, transparent 0%, var(--bg-deep) 75%),
    linear-gradient(180deg, transparent 60%, var(--bg-deep) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 48rem;
  padding: 0 1.5rem;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: heroFadeUp 1.2s var(--ease-out) 0.3s forwards;
}

.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: var(--accent);
  opacity: 0;
  animation: heroFadeUp 1s var(--ease-out) 0.7s forwards;
}

.hero-body {
  margin-top: 2rem;
  font-size: 0.95rem;
  color: var(--text-dim);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: heroFadeUp 1s var(--ease-out) 1s forwards;
}

.hero-cta {
  margin-top: 3rem;
  opacity: 0;
  animation: heroFadeUp 1s var(--ease-out) 1.3s forwards;
}

.hero-cta a {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-dim);
  padding-bottom: 0.3rem;
  transition: border-color 0.3s;
}

.hero-cta a:hover {
  border-color: var(--accent);
  opacity: 1;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: heroFadeUp 1s var(--ease-out) 1.8s forwards;
}

.hero-scroll-hint span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.scroll-line {
  width: 1px;
  height: 2.5rem;
  background: linear-gradient(to bottom, var(--text-faint), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 0.8;
  }
}

/* ── Section Label ─────────────────────────────── */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-label::before {
  content: '';
  width: 2rem;
  height: 1px;
  background: var(--accent-dim);
}

/* ── Page Header (inner pages) ─────────────────── */
.page-header {
  padding: calc(var(--section-pad) + 5rem) 0 var(--section-pad);
}

.page-header .lead {
  font-size: 1.1rem;
  color: var(--text-dim);
  margin-top: 1.2rem;
  max-width: 38rem;
}

/* ── Disruption (line-by-line reveal) ──────────── */
.disruption {
  padding: var(--section-pad) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
}

.disruption-inner {
  text-align: center;
  max-width: 42rem;
  padding: 0 1.5rem;
}

.disruption-line {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  color: var(--text-primary);
  line-height: 1.5;
  margin-bottom: 0.8rem;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.9s var(--ease-out);
}

.disruption-line.visible {
  opacity: 1;
  transform: translateY(0);
}

.disruption-pause {
  height: 3rem;
}

.disruption-reveal {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  color: var(--accent);
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(12px);
  transition: all 1s var(--ease-out);
}

.disruption-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Scroll Reveal ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--duration) var(--ease-out),
    transform var(--duration) var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

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

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

/* ── Animated Points ───────────────────────────── */
.animated-points {
  list-style: none;
  margin-top: 2rem;
}

.animated-points li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 1.2rem;
  opacity: 0;
  transform: translateX(-12px);
  transition: all 0.7s var(--ease-out);
}

.animated-points li.visible {
  opacity: 1;
  transform: translateX(0);
}

.animated-points li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.5s 0.3s;
}

.animated-points li.visible::before {
  opacity: 1;
}

/* ── Statement (full-width impact text) ────────── */
.statement {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text-primary);
  line-height: 1.35;
  max-width: 38rem;
}

.statement--center {
  text-align: center;
  margin: 0 auto;
}

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

/* ── Split Layout ──────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.split-text h2 {
  margin-bottom: 1.5rem;
}

/* ── Concept Block ─────────────────────────────── */
.concept {
  text-align: center;
  padding: 4rem 2rem;
}

.concept-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.concept h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 1.5rem;
}

.concept-line {
  width: 3rem;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 2rem;
}

.concept-def {
  font-size: 1.05rem;
  max-width: 36rem;
  margin: 0 auto;
  color: var(--text-secondary);
}

/* ── Callout Quote ─────────────────────────────── */
.callout {
  border-left: 2px solid var(--accent-dim);
  padding: 1.5rem 0 1.5rem 2rem;
  margin: 2.5rem 0;
}

.callout p {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.65;
  max-width: 36rem;
}

/* ── Framework Pillar Cards ────────────────────── */
.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 3rem;
}

.pillar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  transition: border-color 0.5s, background 0.5s;
}

.pillar:hover {
  border-color: var(--border-accent);
  background: rgba(14, 24, 48, 0.85);
}

.pillar-num {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.pillar h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.pillar p {
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ── Phase / Process Steps ─────────────────────── */
.phases {
  margin-top: 2.5rem;
}

.phase {
  display: flex;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.phase:first-child {
  border-top: 1px solid var(--border);
}

.phase-marker {
  flex-shrink: 0;
  width: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.phase-num {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
  white-space: nowrap;
}

.phase-line {
  width: 1px;
  flex: 1;
  background: linear-gradient(to bottom, var(--accent-dim), transparent);
  margin-top: 0.8rem;
}

.phase h3 {
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
}

.phase-items {
  list-style: none;
  margin-top: 0.8rem;
}

.phase-items li {
  font-size: 0.92rem;
  color: var(--text-dim);
  padding: 0.3rem 0;
  padding-left: 1rem;
  position: relative;
}

.phase-items li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent-dim);
}

/* ── Real-World Examples ───────────────────────── */
.examples {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 2.5rem;
}

.example-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.8rem;
  transition: border-color 0.4s;
}

.example-item:hover {
  border-color: var(--border-accent);
}

.example-item h4 {
  margin-bottom: 0.8rem;
}

.example-item p {
  font-size: 0.88rem;
  color: var(--text-dim);
}

/* ── Founder Block ─────────────────────────────── */
.founder-block {
  border-top: 1px solid var(--border);
  padding-top: 3rem;
  margin-top: 3rem;
}

.founder-block p {
  color: var(--text-secondary);
  max-width: 38rem;
}

.founder-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-top: 2rem !important;
}

.founder-title {
  font-size: 0.82rem;
  color: var(--text-dim);
  letter-spacing: 0.03em;
  margin-top: 0.3rem !important;
}

/* ── Contact Form ──────────────────────────────── */
.contact-form {
  max-width: 36rem;
  margin-top: 2rem;
}

.form-field {
  margin-bottom: 2rem;
}

.form-field label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.6rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 0.8rem 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.3s;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--accent);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-faint);
}

.form-field textarea {
  min-height: 6rem;
  resize: vertical;
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-faint);
  font-style: italic;
  margin-top: 1.5rem;
  line-height: 1.6;
}

/* ── Buttons / CTA ─────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bg-deep);
  background: var(--accent);
  padding: 1rem 2.8rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s var(--ease-smooth);
}

.btn:hover {
  background: #d4b55a;
  opacity: 1;
  transform: translateY(-1px);
}

.link-cta {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-dim);
  padding-bottom: 0.3rem;
  transition: border-color 0.3s;
}

.link-cta:hover {
  border-color: var(--accent);
  opacity: 1;
}

/* ── CTA Section ───────────────────────────────── */
.cta-section {
  padding: var(--section-pad) 0;
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
}

.cta-section h2 {
  margin-bottom: 1.5rem;
}

.cta-text {
  max-width: 34rem;
  margin: 0 auto 2.5rem;
  color: var(--text-dim);
}

/* ── Footer ────────────────────────────────────── */
.footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer p {
  font-size: 0.72rem;
  color: var(--text-faint);
  letter-spacing: 0.06em;
  max-width: 100%;
}

/* ── Diagram Canvas ────────────────────────────── */
.diagram-canvas {
  width: 100%;
  height: 350px;
  margin: 1rem auto;
  position: relative;
}

/* ── Utility ───────────────────────────────────── */
.text-muted {
  color: var(--text-dim);
}

.text-dim {
  color: var(--text-faint);
}

.text-accent {
  color: var(--accent);
}

/* ── Not-a-form statement ──────────────────────── */
.not-form-statement {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--text-dim);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.not-form-statement strong {
  color: var(--text-secondary);
}

/* ── Image System ──────────────────────────────── */

/* Hero background image — layered beneath canvas */
.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  object-fit: cover;
  opacity: 0.25;
  filter: blur(1px);
}

.hero-canvas {
  z-index: 1;
}

/* Section visual — responsive image container */
.section-visual {
  width: 100%;
  max-width: 28rem;
  margin: 2.5rem auto;
  position: relative;
}

.section-visual img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.85;
  border-radius: 2px;
}

.section-visual--large {
  max-width: 36rem;
}

.section-visual--small {
  max-width: 20rem;
}

/* Visual with gradient fade edges */
.section-visual--fade {
  mask-image: radial-gradient(ellipse 80% 80% at center, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at center, black 40%, transparent 100%);
}

/* Section background image overlay */
.section-bg-visual {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.section-bg-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
  filter: blur(2px);
}

.section-bg-visual--left {
  right: auto;
  left: 0;
}

.section-bg-visual--full {
  width: 100%;
}

/* Ensure content sits above background visuals */
.section .container,
.section .container-wide,
.page-header .container {
  position: relative;
  z-index: 1;
}

/* Pillar card icons */
.pillar-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1.2rem;
  opacity: 0.7;
  border-radius: 4px;
  object-fit: cover;
}

/* Visual anchor — centered floating image for statement sections */
.visual-anchor {
  display: flex;
  justify-content: center;
  margin: 2rem auto 0;
}

.visual-anchor img {
  max-width: 18rem;
  height: auto;
  opacity: 0.75;
  mask-image: radial-gradient(ellipse 85% 85% at center, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at center, black 30%, transparent 100%);
}

/* Framework overview visual */
.framework-visual {
  display: flex;
  justify-content: center;
  margin: 2rem auto 3rem;
}

.framework-visual img {
  max-width: 22rem;
  height: auto;
  opacity: 0.8;
  border-radius: 4px;
  mask-image: radial-gradient(ellipse 90% 90% at center, black 50%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at center, black 50%, transparent 100%);
}

/* ── Responsive ────────────────────────────────── */
@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(6, 10, 20, 0.98);
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 100;
  }

  .nav-links.open a {
    font-size: 1rem;
    color: var(--text-secondary);
  }

  .phase {
    flex-direction: column;
    gap: 1rem;
  }

  .phase-marker {
    flex-direction: row;
    width: auto;
    gap: 0.8rem;
  }

  .phase-line {
    display: none;
  }

  h1 {
    font-size: clamp(2rem, 7vw, 3rem);
  }
}