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

:root {
  --color-dark: #1d1d1d;
  --color-light: #ecedef;
  --color-muted: #6b6c70;
  --color-border: #e6e4df;
  --color-primary: #151618;
  --color-card: #efefef;
  --color-card-elevated: #ffffff;
  --font: "Geist", -apple-system, system-ui, sans-serif;
  --gradient-1: linear-gradient(135deg, #00dab5 0%, #4fd1c5 100%);
  --gradient-2: linear-gradient(135deg, #ffbf00 0%, #f6d365 100%);

  /* kree8-inspired multi-layer shadow system */
  --shadow-xs: 0 1px 3px rgba(183,181,203,0.12);
  --shadow-sm:
    0 1.7px 4.2px rgba(183,181,203,0.31),
    0 8.4px 8.4px rgba(183,181,203,0.27);
  --shadow-md:
    0 1.7px 4.2px rgba(183,181,203,0.31),
    0 8.4px 8.4px rgba(183,181,203,0.27),
    0 17.6px 10.9px rgba(183,181,203,0.16);
  --shadow-lg:
    0 1.7px 4.2px rgba(183,181,203,0.31),
    0 8.4px 8.4px rgba(183,181,203,0.27),
    0 17.6px 10.9px rgba(183,181,203,0.16),
    0 31.8px 12.6px rgba(183,181,203,0.05),
    0 50.2px 14.2px rgba(183,181,203,0.01);
  --shadow-xl:
    0 1.7px 4.2px rgba(183,181,203,0.35),
    0 8.4px 8.4px rgba(183,181,203,0.30),
    0 17.6px 10.9px rgba(183,181,203,0.20),
    0 31.8px 12.6px rgba(183,181,203,0.10),
    0 50.2px 14.2px rgba(183,181,203,0.05);

  /* Legacy aliases */
  --shadow-small: var(--shadow-sm);
  --shadow-medium: var(--shadow-md);
  --shadow-large: var(--shadow-lg);

  /* Neumorphic inset shadows */
  --shadow-inset: inset 0 0 3px rgba(0,0,0,0.25), 0 -1.7px 4px rgba(255,255,255,0.45);
  --shadow-inset-deep: inset 0 2px 6px rgba(0,0,0,0.15), inset 0 -1px 3px rgba(255,255,255,0.5);

  /* Rainbow-tinted shadows */
  --shadow-rainbow:
    0 4px 16px rgba(0,218,181,0.15),
    0 8px 32px rgba(210,168,255,0.10),
    0 16px 48px rgba(255,191,0,0.08);

  /* Spacing tokens */
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 18px;
  --space-lg: 24px;
  --space-xl: 36px;
  --space-2xl: 52px;
  --space-3xl: 80px;

  /* Border radius */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 29px;
  --radius-xl: 36px;
  --radius-pill: 100px;

  /* Accent colors */
  --accent-teal: #00dab5;
  --accent-purple: #d2a8ff;
  --accent-gold: #ffbf00;
  --accent-coral: #ff7b72;
  --accent-blue: #79c0ff;

  /* Typography tracking */
  --tracking-tight: -0.04em;
  --tracking-tighter: -0.05em;
  --tracking-display: -0.06em;
}

body {
  font-family: var(--font);
  background: var(--color-light);
  color: var(--color-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

#dotsCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ── Utilities & Animations ── */
.gradient-text-1 {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.gradient-text-2 {
  background: var(--gradient-2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

#typewriter-text {
  display: inline-block;
  min-width: 15px;
}

/* ── Hero Frame Word (Figma-style selection chip) ── */
.hero-frame-word {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  background: rgba(13, 153, 255, 0.08);
  border: 1.5px solid rgba(13, 153, 255, 0.55);
  border-radius: 4px;
  padding: 2px 12px 4px;
  vertical-align: baseline;
  transition: background 0.3s ease;
  box-shadow:
    0 0 0 1px rgba(13, 153, 255, 0.12),
    0 0 24px rgba(13, 153, 255, 0.15),
    inset 0 0 14px rgba(13, 153, 255, 0.06);
}

/* Each corner handle is a real 8×8px square element */
.hero-frame-handle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #fff;
  border: 1.5px solid #0D99FF;
  border-radius: 1px; /* nearly square, just 1px softening */
  z-index: 2;
}
.hero-frame-handle.tl {
  top: -5px;
  left: -5px;
}
.hero-frame-handle.tr {
  top: -5px;
  right: -5px;
}
.hero-frame-handle.bl {
  bottom: -5px;
  left: -5px;
}
.hero-frame-handle.br {
  bottom: -5px;
  right: -5px;
}

.hero-frame-text {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  vertical-align: bottom;
}

.hero-cursor {
  display: inline-block;
  width: 2px;
  height: 0.85em;
  background: currentColor;
  vertical-align: middle;
  margin-left: 1px;
  border-radius: 1px;
  animation: blink 1s step-end infinite;
}

/* Swap animation: text slides up out then down in */
@keyframes word-exit {
  to {
    opacity: 0;
    transform: translateY(-40%);
  }
}
@keyframes word-enter {
  from {
    opacity: 0;
    transform: translateY(35%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-frame-text.exiting {
  animation: word-exit 0.25s cubic-bezier(0.4, 0, 1, 1) forwards;
}
.hero-frame-text.entering {
  animation: word-enter 0.35s cubic-bezier(0, 0, 0.2, 1) forwards;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ── Navbar ── */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  margin: 24px auto;
  width: fit-content;
  max-width: calc(100% - 48px);
  gap: 48px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow:
    var(--shadow-lg),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.8),
    inset 0 -1px 0 0 rgba(255, 255, 255, 0.4);
  border-radius: 100px;
  position: sticky;
  top: 24px;
  z-index: 100;
  transition: all 0.3s ease;
}

.navbar.nav-dark {
  background: rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow:
    0 8px 32px 0 rgba(0, 0, 0, 0.2),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 0 rgba(255, 255, 255, 0.1);
}

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  justify-content: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.02em;
  padding: 8px 16px;
  border-radius: 100px;
  position: relative;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
  color: var(--color-dark);
  background: rgba(0, 0, 0, 0.05);
}

.navbar.nav-dark .nav-links a {
  color: #fff;
}
.navbar.nav-dark .nav-links a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

/* ── Gitty speech bubble easter egg ── */
.gitty-bubble {
  position: absolute;
  left: 0;
  top: calc(100% + 14px);
  transform: translateY(-6px) scale(0.88);
  background: var(--color-dark);
  color: #fff;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
  padding: 7px 12px;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 200;
}

.gitty-bubble.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* tail pointing up toward the logo */
.gitty-bubble::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 20px;
  border: 6px solid transparent;
  border-bottom-color: var(--color-dark);
}

@keyframes gitty-bounce {
  0%   { transform: translateY(-6px) scale(0.88); }
  60%  { transform: translateY(2px) scale(1.04); }
  100% { transform: translateY(0) scale(1); }
}

.gitty-bubble.pop {
  animation: gitty-bounce 0.28s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.logo img {
  display: block;
  height: auto;
  max-height: 24px;
  object-fit: contain;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.btn-signin {
  text-decoration: none;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-signin:hover {
  color: var(--color-dark);
  background: rgba(0, 0, 0, 0.05);
}

.btn-download {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  background: var(--color-primary);
  border-radius: 100px;
  padding: 8px 20px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  border: none;
  font-family: var(--font);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-download:hover {
  background: #222;
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

/* ── Hero Presentation Wrapper ── */

.hero-presentation {
  position: relative;
  isolation: isolate;
  border-radius: var(--radius-xl);
  margin: 0 24px;
  overflow: hidden;
}

.hero-presentation::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("gradient-bg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

/* ── Hero ── */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 120px 24px 40px;
  text-align: center;
  position: relative;
  isolation: isolate;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 99px;
  padding: 6px 16px 6px 6px;
  box-shadow: var(--shadow-small);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  cursor: default;
}

.badge:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-medium);
}

.badge-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: contain;
}

.badge span {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.01em;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

h1 {
  font-size: clamp(56px, 8vw, 100px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
  color: #111111;
  margin-bottom: 8px;
}

.subtitle {
  font-size: 20px;
  font-weight: 400;
  color: #6b6c70;
  letter-spacing: -0.01em;
  line-height: 1.5;
  max-width: 660px;
  margin: 0 auto;
}

/* ── Hero Actions ── */
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
}

.btn-primary {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  background: #fff;
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 100px;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  border: none;
  font-family: var(--font);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.btn-secondary:hover {
  background: #111;
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

/* ── Product BG ── */
.product-bg {
  position: relative;
  width: 100%;
  height: 540px;
  overflow: hidden;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/* ── IDE Mockup ── */
.ide-window.p-mac {
  width: min(1200px, 95vw);
  height: 640px;
  background: #111;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  display: flex;
  font-family:
    "Geist Mono", "Cascadia Code", ui-monospace, "Fira Code", monospace;
  font-size: 13px;
  color: #fff;
}

/* Left Sidebar */
.ide-left {
  width: 240px;
  background: linear-gradient(160deg, #1b1b3a 0%, #2f2a5a 100%);
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.mac-dots {
  padding: 16px;
  display: flex;
  gap: 8px;
}
.mac-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.mac-dots .red {
  background: #ff5f57;
}
.mac-dots .yellow {
  background: #febc2e;
}
.mac-dots .green {
  background: #28c840;
}

.left-tabs {
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ltab {
  padding: 8px 12px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.ltab.active {
  background: #fff;
  color: var(--color-primary);
}
.left-section {
  flex: 1;
  padding: 16px 12px;
}
.sec-title {
  font-size: 11px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}
.file-item {
  padding: 6px 8px;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border-radius: 4px;
}
.file-item:hover {
  background: rgba(255, 255, 255, 0.05);
}
.file-item.sub {
  padding-left: 24px;
}
.left-bottom {
  padding: 16px;
  display: flex;
  gap: 8px;
}
.commit-btn {
  flex: 1;
  padding: 8px;
  border-radius: 8px;
  background: #fff;
  color: var(--color-primary);
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.left-bottom .icon-btn {
  width: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Center Editor */
.ide-center {
  flex: 1;
  background: #111;
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 0;
}
.center-topbar {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  align-items: center;
}
.center-pills-left,
.center-pills-right {
  display: flex;
  gap: 8px;
}
.pill {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.pill.active {
  background: #fff;
  color: var(--color-primary);
}
.pill .tag {
  background: #28c840;
  color: var(--color-primary);
  padding: 2px 6px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 600;
}
.center-filetabs {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: #111;
}
.ftab {
  padding: 8px 16px;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  background: #0d0d0d;
}
.ftab.active {
  background: #111;
  color: #fff;
  border-bottom: 1px solid #111;
  margin-bottom: -1px;
}
.icon-ts {
  color: #3178c6;
  font-size: 10px;
  font-weight: bold;
}
.ftab .close {
  font-size: 14px;
  opacity: 0.5;
  margin-left: 4px;
}
.editor-content {
  flex: 1;
  display: flex;
  padding: 16px 0;
  overflow: auto;
  font-size: 13px;
  line-height: 1.6;
}
.editor-lines {
  width: 48px;
  text-align: right;
  padding-right: 16px;
  color: rgba(255, 255, 255, 0.3);
  user-select: none;
}
.editor-code {
  flex: 1;
  margin: 0;
  color: #e6edf3;
  tab-size: 2;
}

/* Syntax */
.k {
  color: #ff7b72;
} /* keyword */
.s {
  color: #a5d6ff;
} /* string */
.f {
  color: #d2a8ff;
} /* function */
.n {
  color: #79c0ff;
} /* number */
.c {
  color: #8b949e;
  font-style: italic;
} /* comment */
.p {
  color: #79c0ff;
} /* property */

/* Floating Prompt */
/* ── Liquid Glass System ── */
.GlassContainer {
  --corner-radius: 12px;
  --base-strength: 13px;
  --extra-blur: 6px;
  --softness: 14px;
  --invert: 10%;
  --total-strength: calc(var(--base-strength) + var(--extra-blur));
  --edge-width: calc(0.3px + (var(--softness) * 0.1));
  --emboss-width: calc(var(--softness) * 0.38);
  --refraction-width: calc(var(--softness) * 0.3);
  position: relative;
  overflow: visible;
  pointer-events: none;
}
.GlassContent {
  position: relative;
  display: block;
  z-index: 100;
  overflow: hidden;
  border-radius: var(--corner-radius);
  pointer-events: auto;
}
.GlassMaterial {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: visible;
  pointer-events: none;
}
.GlassMaterial:after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  border-radius: var(--corner-radius);
  background-color: rgba(128, 128, 128, 0);
}
.GlassMaterial > div {
  position: absolute;
  inset: 0;
  box-sizing: border-box;
  border-radius: var(--corner-radius);
  z-index: 2;
  overflow: hidden;
}
.GlassMaterial .GlassEdgeReflection {
  z-index: 4;
  margin: calc(var(--total-strength) * -1);
  border-radius: calc(var(--corner-radius) + var(--total-strength));
  -webkit-backdrop-filter: blur(var(--total-strength)) brightness(1.2) saturate(1.2);
  backdrop-filter: blur(var(--total-strength)) brightness(1.2) saturate(1.2);
  padding: var(--edge-width);
  border: var(--total-strength) solid transparent;
  -webkit-mask:
    linear-gradient(white 0 0) padding-box,
    linear-gradient(white 0 0) content-box;
  mask:
    linear-gradient(white 0 0) padding-box,
    linear-gradient(white 0 0) content-box;
  -webkit-mask-composite: xor;
  mask-composite: exclude, exclude;
}
.GlassMaterial .GlassEmbossReflection {
  -webkit-backdrop-filter: blur(calc(var(--total-strength) * 1.5)) invert(0.25) brightness(1.11) saturate(1.2) hue-rotate(-10deg) contrast(2.3);
  backdrop-filter: blur(calc(var(--total-strength) * 1.5)) invert(0.25) brightness(1.11) saturate(1.2) hue-rotate(-10deg) contrast(2.3);
  padding: var(--emboss-width);
  border: 0 solid transparent;
  -webkit-mask:
    linear-gradient(white 0 0) padding-box,
    linear-gradient(white 0 0) content-box;
  mask:
    linear-gradient(white 0 0) padding-box,
    linear-gradient(white 0 0) content-box;
  -webkit-mask-composite: xor;
  mask-composite: exclude, exclude;
}
.GlassMaterial .GlassRefraction {
  -webkit-backdrop-filter: invert(0.1) brightness(1.2) contrast(1.5);
  backdrop-filter: invert(0.1) brightness(1.2) contrast(1.5);
  padding: var(--refraction-width);
  border: calc(var(--emboss-width)) solid transparent;
  -webkit-mask:
    linear-gradient(white 0 0) padding-box,
    linear-gradient(white 0 0) content-box;
  mask:
    linear-gradient(white 0 0) padding-box,
    linear-gradient(white 0 0) content-box;
  -webkit-mask-composite: xor;
  mask-composite: exclude, exclude;
}
.GlassMaterial .GlassBlur {
  -webkit-backdrop-filter: blur(var(--extra-blur)) brightness(1.25);
  backdrop-filter: blur(var(--extra-blur)) brightness(1.25);
  border-radius: calc(var(--corner-radius) - (var(--emboss-width) + var(--refraction-width)));
  margin: calc(var(--emboss-width) + var(--refraction-width));
}
.GlassMaterial .BlendLayers {
  z-index: 3;
  -webkit-backdrop-filter: blur(calc((var(--softness) * 0.2) + (var(--extra-blur) * 0.2)));
  backdrop-filter: blur(calc((var(--softness) * 0.2) + (var(--extra-blur) * 0.2)));
}
.GlassMaterial .BlendEdge {
  z-index: 8;
  -webkit-backdrop-filter: blur(calc(var(--edge-width) * 0.4)) contrast(1.6) saturate(1.5);
  backdrop-filter: blur(calc(var(--edge-width) * 0.4)) contrast(1.6) saturate(1.5);
}
.GlassContainer:before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 20;
  display: block;
  border-radius: var(--corner-radius);
  -webkit-backdrop-filter: invert(var(--invert));
  backdrop-filter: invert(var(--invert));
}
.GlassMaterial:before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 11;
  display: block;
  border-radius: var(--corner-radius);
  padding: 1px;
  border: 0 solid transparent;
  background: linear-gradient(155deg, hsla(0, 0%, 100%, 0.15) 0%, hsla(0, 0%, 0%, 0.2) 50%, hsla(0, 0%, 100%, 0.15) 100%);
  -webkit-backdrop-filter: invert(0.15) opacity(1);
  backdrop-filter: invert(0.15) opacity(1);
  -webkit-mask:
    linear-gradient(white 0 0) padding-box,
    linear-gradient(white 0 0) content-box;
  mask:
    linear-gradient(white 0 0) padding-box,
    linear-gradient(white 0 0) content-box;
  -webkit-mask-composite: xor;
  mask-composite: exclude, exclude;
}
.GlassMaterial .Highlight {
  z-index: 12;
  display: block;
  border-radius: var(--corner-radius);
  padding: 1px;
  border: 0 solid transparent;
  -webkit-backdrop-filter: brightness(1.2) contrast(1.6) saturate(1.2) opacity(1);
  backdrop-filter: brightness(1.2) contrast(1.6) saturate(1.2) opacity(1);
  -webkit-mask:
    linear-gradient(white 0 0) padding-box,
    linear-gradient(white 0 0) content-box;
  mask:
    linear-gradient(white 0 0) padding-box,
    linear-gradient(white 0 0) content-box;
  -webkit-mask-composite: xor;
  mask-composite: exclude, exclude;
}

/* ── Floating Prompt (Liquid Glass) ── */
.floating-prompt.fp-glass {
  --corner-radius: 16px;
  --base-strength: 16px;
  --extra-blur: 8px;
  --softness: 16px;
  --invert: 8%;
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 420px;
}
.fp-glass > .GlassContent {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-top-color: rgba(255, 255, 255, 0.25);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.5),
    0 8px 16px rgba(0, 0, 0, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.15),
    inset 0 -1px 1px rgba(0, 0, 0, 0.2);
}
.fp-inner {
  padding: 12px;
}
.fp-input {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  margin-bottom: 12px;
}
.fp-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fp-options {
  display: flex;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}
.fp-options span {
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}
.fp-options .focus {
  color: #d2a8ff;
  background: rgba(210, 168, 255, 0.1);
}
.fp-send {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  border: none;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(255, 255, 255, 0.2);
}

/* Right Sidebar */
.ide-right {
  width: 280px;
  background: var(--color-dark);
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  padding: 16px;
}
.right-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.rtitle {
  font-weight: 600;
  font-size: 13px;
}
.rgroup {
  display: flex;
  gap: 6px;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 8px;
  border-radius: 20px;
  font-size: 11px;
}
.rgroup button {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  border-radius: 10px;
  padding: 2px 6px;
  cursor: pointer;
}

.user-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.ul-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}
.ul-av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}
.ul-txt {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ul-txt strong {
  font-size: 13px;
  font-weight: 500;
}
.ul-txt span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}
.ul-eye {
  color: rgba(255, 255, 255, 0.3);
}

.custom-widget-btn {
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  margin-bottom: 24px;
  cursor: pointer;
}
.custom-widget-btn .plus {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
}

.active-bubbles {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.active-bubbles .ul-av.sm {
  width: 24px;
  height: 24px;
}
.pill-name {
  background: rgba(210, 168, 255, 0.2);
  color: #d2a8ff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
}
.icon-btn-cir {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  padding-right: 4px;
}
.chat-area::-webkit-scrollbar {
  width: 4px;
}
.chat-area::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.chat-timestamp {
  text-align: center;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
}
.chat-b {
  display: flex;
  width: 100%;
}
.chat-b.right {
  justify-content: flex-end;
}
.bubble-inner {
  padding: 8px 12px;
  border-radius: 12px;
  max-width: 80%;
  font-size: 12px;
}
.bubble-inner.pink {
  background: rgba(210, 168, 255, 0.2);
  border: 1px solid rgba(210, 168, 255, 0.3);
}
.bubble-inner.dark {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top-left-radius: 2px;
}
.bubble-inner img {
  width: 100%;
  border-radius: 4px;
  margin-top: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-input-bar {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.chat-input-bar input {
  flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 12px;
  border-radius: 20px;
  color: #fff;
  font-size: 12px;
  outline: none;
  transition: border-color 0.2s;
}
.chat-input-bar input:focus {
  border-color: rgba(255, 255, 255, 0.3);
}
.chat-input-bar button {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fff;
  border: none;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

@media (max-width: 1000px) {
  .ide-right {
    display: none;
  }
}
@media (max-width: 700px) {
  .ide-left {
    display: none;
  }
}
/* SVG Logo Animations */
.gitty {
  width: 40px; /* Adjust size appropriately for navbar */
  height: auto;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0px 10px 10px rgba(0, 0, 0, 0.1));
  cursor: pointer;
}

.eye {
  animation: blink 4s infinite;
  transform-origin: center;
  transform-box: fill-box;
}

.bracket-left {
  animation: breathe-left 4s ease-in-out infinite;
  transform-origin: right center;
  transform-box: fill-box;
}

.bracket-right {
  animation: breathe-right 4s ease-in-out infinite;
  transform-origin: left center;
  transform-box: fill-box;
}

.mouth {
  animation: murmur 6s ease-in-out infinite;
  transform-origin: center;
  transform-box: fill-box;
  transition: d 0.3s ease;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-3px) rotate(2deg);
  }
}

@keyframes blink {
  0%,
  9%,
  11%,
  100% {
    transform: scaleY(1);
  }
  10% {
    transform: scaleY(0.1);
  }
}

@keyframes breathe-left {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-2px);
  }
}

@keyframes breathe-right {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(2px);
  }
}

@keyframes murmur {
  0%,
  100% {
    transform: scale(1) translateY(0);
  }
  20% {
    transform: scale(1.05) translateY(-2px);
  }
  40% {
    transform: scale(0.95) translateY(1px);
  }
  60% {
    transform: scale(1.1) translateY(-1px);
  }
  80% {
    transform: scale(0.98) translateY(2px);
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-text {
  font-weight: bold;
  font-size: 1.25rem;
  color: #0e1111;
}
/* Happy Dance Interaction */
.gitty.happy {
  animation: happy-dance 1s cubic-bezier(0.28, 0.84, 0.42, 1) !important;
}

.gitty path,
.gitty rect {
  transition:
    fill 0.3s ease,
    stroke 0.3s ease;
}

.navbar.nav-dark .gitty path[fill="black"] {
  fill: #fff;
}
.navbar.nav-dark .gitty rect[stroke="black"],
.navbar.nav-dark .gitty path[stroke="black"] {
  stroke: #fff;
}

/* ── Pricing Section ── */
.pricing {
  padding: 100px 24px 120px;
  background: var(--color-light);
}

.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-title {
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--color-dark);
  text-align: center;
  margin-bottom: 32px;
  line-height: 1;
}

/* Segmented Toggle */
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 100px;
  padding: 4px;
  width: fit-content;
  margin: 0 auto 64px;
  position: relative;
  z-index: 1;
}

.toggle-slider {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  background: #ffffff;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: -1;
  pointer-events: none;
}

.toggle-opt {
  position: relative;
  background: transparent;
  border: none;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 24px;
  border-radius: 100px;
  cursor: pointer;
  transition: color 0.2s ease;
  font-family: var(--font);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.toggle-opt.active {
  color: var(--color-dark);
}

.toggle-opt:hover:not(.active) {
  color: var(--color-dark);
}

.badge-discount {
  background: rgba(0, 218, 181, 0.15);
  color: #00bf9a;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: -0.01em;
  transition: all 0.2s ease;
}

.toggle-opt.active .badge-discount {
  background: #00dab5;
  color: #fff;
}

/* Section Label */
.pricing-section-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-muted);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

/* Grid — 2×2 */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

/* ── Holographic animations ── */
@keyframes holo-drift {
  0%   { background-position: 0% 0%; }
  50%  { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}

@keyframes holo-flash {
  0%, 100% { background-position: -150% 0; }
  50%       { background-position: 250% 0; }
}

/* ── Validation Toast ── */
.validation-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(12px) scale(0.94);
  background: var(--color-dark);
  color: #fff;
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.015em;
  padding: 11px 18px 11px 14px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 9px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.24s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 9999;
  white-space: nowrap;
}

.validation-toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
  pointer-events: auto;
}

.validation-toast-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-coral);
  display: flex;
  align-items: center;
  justify-content: center;
}

.validation-toast-icon svg {
  display: block;
}

@keyframes cardAppear {
  0%   { opacity: 0; transform: translateY(44px) scale(0.92); }
  60%  { opacity: 1; }
  75%  { transform: translateY(-6px) scale(1.015); }
  90%  { transform: translateY(2px) scale(0.998); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── Card Base ── */
.pricing-card {
  display: flex;
  flex-direction: row;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: var(--shadow-md);
  min-height: 260px;
  opacity: 0;
  transform: translateY(44px) scale(0.92);
  transition: box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

/* Ticket notch cutouts — semicircles at the panel divider */
.pricing-card::before,
.pricing-card::after {
  content: '';
  position: absolute;
  left: calc(100% - 210px);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-light);
  z-index: 20;
  pointer-events: none;
}
.pricing-card::before {
  top: 0;
  transform: translateX(-50%) translateY(-50%);
}
.pricing-card::after {
  bottom: 0;
  transform: translateX(-50%) translateY(50%);
}

.pricing-card.in-view {
  animation: cardAppear 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.pricing-card.in-view:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-5px) scale(1);
}

.ticket-card {
  cursor: pointer;
  user-select: none;
}

.pricing-card.popular {
  border: 2px solid var(--color-dark);
}

/* Pro+ gets gold border + soft glow */
.pricing-card--proplus.popular {
  border: 2px solid rgba(241, 192, 74, 0.45);
  box-shadow: var(--shadow-md), 0 0 40px rgba(241, 192, 74, 0.1);
}
.pricing-card--proplus.in-view:hover {
  box-shadow: var(--shadow-xl), 0 0 60px rgba(241, 192, 74, 0.18);
  transform: translateY(-5px) scale(1);
}

/* ── Left — text content ── */
.pc-left {
  flex: 1;
  padding: 30px 26px;
  background: #fff;
  display: flex;
  flex-direction: column;
}

/* Pro+ left side goes full dark for luxury monochrome look */
.pricing-card--proplus .pc-left {
  background: #0d0d0d;
  color: #f0f0f0;
}

.pc-name {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-card--proplus .pc-name {
  color: #f5f5f5;
}

.recommended-badge {
  font-size: 11px;
  font-weight: 700;
  color: #0a0a0a;
  background: linear-gradient(90deg, #f1c04a, #ffda80);
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: -0.01em;
}

.plan-includes {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-muted);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.pricing-card--proplus .plan-includes {
  color: rgba(255,255,255,0.38);
}

/* Feature List */
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.feature-list li {
  font-size: 13px;
  color: var(--color-muted);
  display: flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.pricing-card--proplus .feature-list li {
  color: rgba(255,255,255,0.5);
}

.feature-list li::before {
  content: "✓";
  font-weight: 700;
  flex-shrink: 0;
  font-size: 11px;
  line-height: 1.5;
  color: rgba(0,0,0,0.3);
}

/* Per-tier checkmark accent colors */
.pricing-card--hobby .feature-list li::before  { color: rgba(0,0,0,0.28); }
.pricing-card--pro .feature-list li::before    { color: #79c0ff; }
.pricing-card--proplus .feature-list li::before { color: #f1c04a; }
.pricing-card--team .feature-list li::before   { color: #29d996; }

/* ── Right — ticket panel ── */
.pc-panel {
  width: 210px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  /* Perforated divider line on the left edge */
  border-left: 2px dotted rgba(255,255,255,0.2);
}

.pc-panel-hobby {
  border-left-color: rgba(0,0,0,0.13);
}

/* Smirky character inside ticket panel */
.pc-smirky {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -56%);
  width: 96px;
  height: auto;
  opacity: 0.42;
  pointer-events: none;
  user-select: none;
}

/* Tearing flash on the perforated edge */
.pc-panel--tearing {
  border-left-style: solid !important;
  transition: border-left-color 0.06s ease;
}
.pc-panel-hobby.pc-panel--tearing   { border-left-color: #00dab5 !important; }
.pc-panel-pro.pc-panel--tearing     { border-left-color: #79c0ff !important; }
.pc-panel-proplus.pc-panel--tearing { border-left-color: #f1c04a !important; }
.pc-panel-team.pc-panel--tearing    { border-left-color: #d2a8ff !important; }

/* Panel inner content */
.pc-panel-body {
  margin-top: auto;
  position: relative;
}

.pc-plan-label {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-bottom: 16px;
}

.price-amount {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: inherit;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.price-mo {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.6;
}

/* CTA button inside panel */
.btn-plan.pc-cta {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  letter-spacing: -0.01em;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Panel themes ── */

/* Hobby — pearl silver ticket */
.pc-panel-hobby {
  background: linear-gradient(160deg, #e8e6e1 0%, #f0eeea 100%);
  color: var(--color-dark);
}
.pc-panel-hobby .pc-logo    { opacity: 0.07; }
.pc-panel-hobby .pc-plan-label { color: rgba(0,0,0,0.32); }
.pc-panel-hobby .btn-plan.pc-cta {
  background: var(--color-dark);
  color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.22);
}
.pc-panel-hobby .btn-plan.pc-cta:hover { background: #2a2a2a; transform: translateY(-1px); }

/* Pro — midnight cobalt VIP pass */
.pc-panel-pro {
  background: linear-gradient(160deg, #070f1c 0%, #0c1f36 100%);
  color: #d6eeff;
}
.pc-panel-pro .pc-logo      { filter: invert(1); opacity: 0.07; }
.pc-panel-pro .pc-plan-label { color: rgba(121,192,255,0.55); }
.pc-panel-pro .btn-plan.pc-cta {
  background: #132d4d;
  color: #79c0ff;
  border: 1px solid rgba(121,192,255,0.28);
  font-weight: 700;
}
.pc-panel-pro .btn-plan.pc-cta:hover {
  background: #1a3d66;
  transform: translateY(-1px);
  box-shadow: 0 0 18px rgba(121,192,255,0.28);
}

/* Pro+ — jet black all-access pass */
.pc-panel-proplus {
  background: linear-gradient(160deg, #070707 0%, #111111 100%);
  color: #fff;
}
.pc-panel-proplus .pc-logo      { filter: invert(1); opacity: 0.06; }
.pc-panel-proplus .pc-plan-label { color: rgba(241,192,74,0.65); }
.pc-panel-proplus .btn-plan.pc-cta {
  background: linear-gradient(90deg, #e8a321, #f1c04a);
  color: #0a0a0a;
  font-weight: 800;
  box-shadow: 0 2px 16px rgba(241,192,74,0.38);
}
.pc-panel-proplus .btn-plan.pc-cta:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 4px 24px rgba(241,192,74,0.55);
}

/* Team — deep forest enterprise pass */
.pc-panel-team {
  background: linear-gradient(160deg, #020e07 0%, #061a0f 100%);
  color: #c8f0de;
}
.pc-panel-team .pc-logo      { filter: invert(1); opacity: 0.07; }
.pc-panel-team .pc-plan-label { color: rgba(41,217,150,0.55); }
.pc-panel-team .btn-plan.pc-cta {
  background: #0b2e1c;
  color: #29d996;
  border: 1px solid rgba(41,217,150,0.28);
  font-weight: 700;
}
.pc-panel-team .btn-plan.pc-cta:hover {
  background: #10422a;
  transform: translateY(-1px);
  box-shadow: 0 0 18px rgba(41,217,150,0.28);
}

@media (max-width: 820px) {
  .pricing-cards { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .pricing-card { flex-direction: column; min-height: unset; }
  .pricing-card::before,
  .pricing-card::after { display: none; }
  .pc-panel { width: 100%; min-height: 180px; border-left: none; border-top: 2px dotted rgba(255,255,255,0.2); }
  .pc-panel-hobby { border-top-color: rgba(0,0,0,0.13); }
}

@keyframes happy-dance {
  0% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-12px) rotate(-15deg) scale(1.1);
  }
  50% {
    transform: translateY(-18px) rotate(15deg) scale(1.15);
  }
  75% {
    transform: translateY(-12px) rotate(-15deg) scale(1.1);
  }
  100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
}

/* ── Figma Collab Cursor ── */
.figma-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  pointer-events: none;
  width: 32px;
  height: 32px;
  opacity: 0;
  transform: translate(-100px, -100px);
  will-change: transform, opacity;
  transition: opacity 0.2s ease;
}

.figma-cursor.active {
  opacity: 1;
}

/* Arrow — visible by default */
.figma-cursor-arrow {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.25));
  transform-origin: 1.5px 1.5px;
  transition:
    transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    opacity 0.15s ease;
  margin-top: -1.5px;
  margin-left: -1.5px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
}

/* Hand pointer — hidden by default */
.figma-cursor-hand {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.25));
  transform-origin: 13.5px 2px;
  transition:
    transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    opacity 0.15s ease;
  margin-top: -1.5px;
  margin-left: -1.5px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

/* On interactive elements: hide arrow, show hand */
.figma-cursor.pointer .figma-cursor-arrow {
  opacity: 0;
  transform: scale(0.8);
}
.figma-cursor.pointer .figma-cursor-hand {
  opacity: 1;
  transform: scale(1);
}

/* Clicking: hand squishes down */
.figma-cursor.clicking .figma-cursor-hand {
  transform: scale(0.85) translateY(2px);
}
.figma-cursor.clicking .figma-cursor-arrow {
  transform: scale(0.85);
}

/* Hide default cursor only exactly inside the .hero-presentation area */
.hero-presentation.hide-cursor,
.hero-presentation.hide-cursor * {
  cursor: none !important;
}

/* ═══════════════════════════════════════════════════
   ── Bento Product Section ──
═══════════════════════════════════════════════════ */
.bento-section {
  padding: 120px 24px 140px;
  background: var(--color-light);
  position: relative;
  overflow: hidden;
}

.bento-section::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 218, 181, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.bento-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.bento-header {
  text-align: center;
  margin-bottom: 64px;
}

.bento-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #00bf9a;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.bento-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #00dab5, #79c0ff, #d2a8ff, #ff7b72, #ffbf00, #00dab5);
  flex-shrink: 0;
}

.bento-title {
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--color-dark);
}

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

.bento-card {
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  will-change: transform;
  cursor: default;
  min-height: 320px;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card.bento-visible {
  opacity: 1;
  transform: translateY(0);
}

.bento-card.bento-visible:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.dark-card {
  background: #13131f;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    var(--shadow-lg),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 20px rgba(0, 218, 181, 0.03);
}

.teal-card {
  background: linear-gradient(145deg, #003d33 0%, #00291f 40%, #001a14 100%);
  border: 1px solid rgba(0, 218, 181, 0.15);
  box-shadow:
    0 4px 12px rgba(0,218,181,0.15),
    0 12px 24px rgba(0,218,181,0.10),
    0 24px 48px rgba(0,0,0,0.20);
}

.light-card {
  background: var(--color-card);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: visible;
}

/* Rainbow border on hover for light cards */
.light-card::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: conic-gradient(from 0deg, #00dab5, #79c0ff, #d2a8ff, #ff7b72, #ffbf00, #00dab5);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.light-card.bento-visible:hover::after {
  opacity: 0.5;
}

.gradient-gold-card {
  background: linear-gradient(140deg, #7a4a00 0%, #3d2200 60%, #1d0f00 100%);
  border: 1px solid rgba(255, 191, 0, 0.2);
  box-shadow:
    0 4px 12px rgba(255,191,0,0.12),
    0 12px 24px rgba(255,191,0,0.08),
    0 24px 48px rgba(0,0,0,0.25);
}

.bento-hero {
  grid-column: 1 / 3;
  grid-row: 1;
}
.bento-tall {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
  min-height: 540px;
}
.bento-agent {
  grid-column: 1 / 2;
  grid-row: 2;
}
.bento-branch {
  grid-column: 2 / 3;
  grid-row: 2;
}
.bento-stat {
  grid-column: 1 / 2;
  grid-row: 3;
}
.bento-terminal {
  grid-column: 2 / 4;
  grid-row: 3;
}

.bento-hero {
  transition-delay: 0.05s;
}
.bento-tall {
  transition-delay: 0.15s;
}
.bento-agent {
  transition-delay: 0.22s;
}
.bento-branch {
  transition-delay: 0.3s;
}
.bento-stat {
  transition-delay: 0.37s;
}
.bento-terminal {
  transition-delay: 0.44s;
}

.bento-card-content {
  position: relative;
  z-index: 2;
}

/* kree8-inspired circular icon containers */
.bento-icon {
  width: 64px;
  height: 64px;
  border-radius: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: var(--shadow-inset);
  flex-shrink: 0;
}

.bento-icon svg {
  width: 28px;
  height: 28px;
}

.bento-icon.icon-teal {
  background: linear-gradient(135deg, #00dab5, #4fd1c5);
  color: #fff;
}

.bento-icon.icon-gradient {
  background: linear-gradient(135deg, #00dab5, #d2a8ff);
  color: #fff;
}

.bento-icon.icon-dark {
  background: #1f2022;
  color: rgba(255,255,255,0.9);
  box-shadow: inset 0 0 3px rgba(255,255,255,0.1), 0 -1.7px 4px rgba(0,0,0,0.3);
}

.bento-icon.icon-light {
  background: #fff;
  color: var(--color-dark);
  box-shadow: var(--shadow-inset-deep);
}

.bento-icon.icon-gold {
  background: linear-gradient(135deg, #ffbf00, #f6d365);
  color: #1d0f00;
}

.bento-icon.icon-purple {
  background: linear-gradient(135deg, #d2a8ff, #a78bfa);
  color: #fff;
}

.bento-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.teal-tag {
  background: rgba(0, 218, 181, 0.15);
  color: #00dab5;
  border-color: rgba(0, 218, 181, 0.25);
}
.purple-tag {
  background: rgba(210, 168, 255, 0.15);
  color: #d2a8ff;
  border-color: rgba(210, 168, 255, 0.25);
}
.dark-tag {
  background: rgba(31, 32, 34, 0.08);
  color: var(--color-muted);
  border-color: var(--color-border);
}
.mono-tag {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.08);
  font-family: "Geist Mono", monospace;
}

.bento-card h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-bottom: 12px;
  color: #ffffff;
}

.light-card h3 {
  color: var(--color-dark);
}

.bento-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  max-width: 320px;
}

.light-card p {
  color: var(--color-muted);
}

.bento-stat-number {
  font-size: 80px;
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1;
  color: #ffbf00;
  position: relative;
  z-index: 2;
  margin-bottom: 4px;
}
.bento-stat-unit {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: rgba(255, 191, 0, 0.6);
}
.bento-stat-label {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}
.bento-stat-sub {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.4);
  max-width: 260px;
  position: relative;
  z-index: 2;
}
.bento-stat {
  display: flex;
  flex-direction: column;
}

/* Noise texture removed for kree8-style clean surfaces */

@media (max-width: 960px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }
  .bento-hero {
    grid-column: 1 / 3;
    grid-row: 1;
  }
  .bento-tall {
    grid-column: 1 / 3;
    grid-row: 2;
    min-height: 320px;
  }
  .bento-agent {
    grid-column: 1 / 2;
    grid-row: 3;
  }
  .bento-branch {
    grid-column: 2 / 3;
    grid-row: 3;
  }
  .bento-stat {
    grid-column: 1 / 2;
    grid-row: 4;
  }
  .bento-terminal {
    grid-column: 2 / 3;
    grid-row: 4;
  }
}

@media (max-width: 600px) {
  .bento-section {
    padding: 80px 16px 100px;
  }
  .bento-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .bento-hero,
  .bento-tall,
  .bento-agent,
  .bento-branch,
  .bento-stat,
  .bento-terminal {
    grid-column: 1;
    grid-row: auto;
  }
  .bento-stat-number {
    font-size: 60px;
  }
}

/* Base card rules */
.bento-card {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.bento-card.light-card {
  overflow: visible;
}

/* ═══════════════════════════════════════════════════
   ── Social Proof Strip ──
═══════════════════════════════════════════════════ */
.social-proof {
  padding: 80px 24px;
  background: var(--color-light);
}

.social-proof-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background: var(--color-card);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-sm);
}

.social-proof-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.logo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.logo-strip:hover {
  opacity: 0.85;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════
   ── Shared Section Headings ──
═══════════════════════════════════════════════════ */
.section-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #00bf9a;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.section-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #00dab5, #79c0ff, #d2a8ff, #ff7b72, #ffbf00, #00dab5);
  flex-shrink: 0;
}

.section-heading {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--color-dark);
}

/* ═══════════════════════════════════════════════════
   ── Testimonials Section ──
═══════════════════════════════════════════════════ */
.testimonials-section {
  padding: 120px 24px 140px;
  background: var(--color-light);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(
    ellipse at center,
    rgba(210, 168, 255, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.testimonials-inner .section-heading {
  margin-bottom: 64px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: visible;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.testimonial-card.featured-testimonial {
  border: 2px solid transparent;
  box-shadow: var(--shadow-rainbow);
  overflow: visible;
}

.testimonial-card.featured-testimonial::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: conic-gradient(from 0deg, #00dab5, #79c0ff, #d2a8ff, #ff7b72, #ffbf00, #00dab5);
  z-index: -1;
  opacity: 0.6;
}

.testimonial-card.featured-testimonial:hover::before {
  opacity: 1;
}

/* Quote icon */
.testimonial-quote {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-card);
  box-shadow: var(--shadow-inset-deep);
  font-size: 20px;
  color: var(--accent-teal);
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}

.testimonial-stars {
  color: #ffbf00;
  font-size: 14px;
  letter-spacing: 2px;
  background: rgba(255,191,0,0.08);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  width: fit-content;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-dark);
  letter-spacing: -0.01em;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 4px;
  border-top: 1px solid var(--color-border);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: var(--shadow-inset);
}

.testimonial-author strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark);
  letter-spacing: -0.01em;
}

.testimonial-author span {
  font-size: 13px;
  color: var(--color-muted);
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testimonial-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .testimonials-section {
    padding: 80px 16px 100px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-card:last-child {
    grid-column: auto;
  }
}

/* ═══════════════════════════════════════════════════
   ── FAQ Section ──
═══════════════════════════════════════════════════ */
.faq-section {
  padding: 120px 24px 140px;
  background: var(--color-light);
}

.faq-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.faq-inner .section-heading {
  margin-bottom: 56px;
}

.faq-list {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--color-card);
  border-radius: var(--radius-lg);
  padding: 12px 40px;
  box-shadow: var(--shadow-md);
}

.faq-item {
  border-top: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
}

.faq-item:first-child {
  border-top: none;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  font-size: 17px;
  font-weight: 500;
  color: var(--color-dark);
  letter-spacing: -0.02em;
  cursor: pointer;
  list-style: none;
  transition: color 0.2s ease;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::marker {
  content: "";
}

.faq-question:hover {
  color: #00bf9a;
}

.faq-icon {
  position: relative;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, background 0.2s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-inset);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  background: var(--color-dark);
  border-radius: 1px;
  transition: transform 0.3s ease;
}

.faq-icon::before {
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item[open] .faq-icon {
  background: rgba(0, 218, 181, 0.15);
  box-shadow: var(--shadow-inset), 0 0 12px rgba(0,218,181,0.2);
}

.faq-answer {
  padding: 0 0 24px;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-muted);
  letter-spacing: -0.01em;
  max-width: 600px;
}

@media (max-width: 600px) {
  .faq-section {
    padding: 80px 16px 100px;
  }
  .faq-list {
    padding: 8px 20px;
  }
  .faq-question {
    font-size: 15px;
    padding: 20px 0;
  }
}

/* ═══════════════════════════════════════════════════
   ── CTA Banner ──
═══════════════════════════════════════════════════ */
.cta-banner {
  padding: 0 24px 120px;
  background: var(--color-light);
}

.cta-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 100px 48px;
  text-align: center;
  background: #13131f;
  box-shadow: var(--shadow-xl);
}

.cta-rainbow-bg {
  position: absolute;
  inset: 0;
  background-image: url("gradient-hero-prerender.webp");
  background-size: cover;
  background-position: center;
  filter: hue-rotate(230deg) saturate(1.2);
  opacity: 0.5;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: -0.01em;
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  background: #fff;
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 100px;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: var(--font);
  letter-spacing: -0.01em;
}

.btn-cta-primary:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font);
  letter-spacing: -0.01em;
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .cta-banner {
    padding: 0 16px 80px;
  }
  .cta-banner-inner {
    padding: 64px 24px;
    border-radius: var(--radius-lg);
  }
}

/* ═══════════════════════════════════════════════════
   ── Footer ──
═══════════════════════════════════════════════════ */
.site-footer {
  background: #13131f;
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 24px 40px;
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, transparent, #00dab5, #d2a8ff, #ffbf00, transparent) 1;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gitty-footer {
  width: 32px;
  height: auto;
  color: #fff;
  transition: filter 0.3s ease;
}

.footer-logo:hover .gitty-footer {
  filter: drop-shadow(0 0 8px rgba(0,218,181,0.4));
}

.footer-brand-name {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  box-shadow: inset 0 0 3px rgba(255,255,255,0.06), 0 -1px 3px rgba(0,0,0,0.3);
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: inset 0 0 3px rgba(255,255,255,0.1), 0 4px 12px rgba(0,218,181,0.15);
}

.footer-links-group h4 {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.footer-links-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-group a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
  letter-spacing: -0.01em;
}

.footer-links-group a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding: 60px 16px 32px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* ═══════════════════════════════════════════════════
   ── Responsive: Nav & Top Corner ──
═══════════════════════════════════════════════════ */
@media (max-width: 700px) {
  .nav-links {
    display: none;
  }
  .top-corner-actions {
    display: none;
  }
  .navbar {
    gap: 16px;
  }
  .social-proof {
    padding: 40px 16px;
  }
  .social-proof-inner {
    padding: 32px 20px;
  }
  .logo-strip {
    gap: 28px;
  }
}

/* ══════════════════════════════════════════
   ── Waitlist Modal — per-ticket themed ──
══════════════════════════════════════════ */

/* Default accent = teal (matches site primary neon) */
.waitlist-overlay {
  --wl-accent:     #00dab5;
  --wl-accent-rgb: 0, 218, 181;
  --wl-bg:         #07120f;
  --wl-border:     rgba(0,218,181,0.18);
  --wl-title:      #e0fff8;
  --wl-sub:        rgba(160,240,220,0.65);
  --wl-input-bg:   rgba(0,218,181,0.05);
  --wl-input-border: rgba(0,218,181,0.2);
  --wl-input-focus: rgba(0,218,181,0.6);
  --wl-close-bg:   rgba(255,255,255,0.06);
  --wl-close-hover:rgba(255,255,255,0.12);

  position: fixed;
  inset: 0;
  z-index: 99998;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

/* Per-ticket accent overrides */
.waitlist-overlay[data-theme="pro"] {
  --wl-accent:     #79c0ff;
  --wl-accent-rgb: 121,192,255;
  --wl-bg:         #03060f;
  --wl-border:     rgba(121,192,255,0.18);
  --wl-title:      #d8eeff;
  --wl-sub:        rgba(180,215,255,0.6);
  --wl-input-bg:   rgba(121,192,255,0.05);
  --wl-input-border: rgba(121,192,255,0.2);
  --wl-input-focus: rgba(121,192,255,0.6);
}
.waitlist-overlay[data-theme="proplus"] {
  --wl-accent:     #f1c04a;
  --wl-accent-rgb: 241,192,74;
  --wl-bg:         #0e0900;
  --wl-border:     rgba(241,192,74,0.18);
  --wl-title:      #fff3d0;
  --wl-sub:        rgba(245,224,160,0.6);
  --wl-input-bg:   rgba(241,192,74,0.05);
  --wl-input-border: rgba(241,192,74,0.2);
  --wl-input-focus: rgba(241,192,74,0.6);
}
.waitlist-overlay[data-theme="team"] {
  --wl-accent:     #d2a8ff;
  --wl-accent-rgb: 210,168,255;
  --wl-bg:         #07040e;
  --wl-border:     rgba(210,168,255,0.18);
  --wl-title:      #f0e8ff;
  --wl-sub:        rgba(220,200,255,0.6);
  --wl-input-bg:   rgba(210,168,255,0.05);
  --wl-input-border: rgba(210,168,255,0.2);
  --wl-input-focus: rgba(210,168,255,0.6);
}

.waitlist-overlay.wl-open {
  opacity: 1;
  pointer-events: auto;
}

.waitlist-modal {
  position: relative;
  background: var(--wl-bg);
  border: 1px solid var(--wl-border);
  border-radius: 20px;
  padding: 48px 40px 40px;
  width: 100%;
  max-width: 440px;
  box-shadow:
    0 0 0 1px var(--wl-border),
    0 0 60px rgba(var(--wl-accent-rgb), 0.12),
    0 24px 80px rgba(0,0,0,0.6);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s ease,
              background 0.3s ease,
              border-color 0.3s ease;
}

.waitlist-overlay.wl-open .waitlist-modal {
  transform: translateY(0) scale(1);
}

.waitlist-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--wl-border);
  background: var(--wl-close-bg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wl-accent);
  transition: background 0.15s ease;
}

.waitlist-close:hover {
  background: var(--wl-close-hover);
}

.wl-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(var(--wl-accent-rgb), 0.12);
  border: 1px solid rgba(var(--wl-accent-rgb), 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wl-accent);
  margin-bottom: 20px;
  box-shadow: 0 0 16px rgba(var(--wl-accent-rgb), 0.2);
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.wl-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--wl-title);
  margin: 0 0 8px;
  transition: color 0.3s ease;
}

.wl-subtitle {
  font-size: 14px;
  color: var(--wl-sub);
  line-height: 1.6;
  margin: 0 0 24px;
  transition: color 0.3s ease;
}

.wl-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wl-input-wrap {
  position: relative;
}

.wl-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--wl-input-border);
  border-radius: 10px;
  font-size: 14px;
  font-family: var(--font);
  color: var(--wl-title);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
  box-sizing: border-box;
  background: var(--wl-input-bg);
}

.wl-input:focus {
  border-color: var(--wl-accent);
  box-shadow: 0 0 0 3px rgba(var(--wl-accent-rgb), 0.18),
              0 0 14px rgba(var(--wl-accent-rgb), 0.15);
}

.wl-input::placeholder {
  color: rgba(var(--wl-accent-rgb), 0.35);
}

.wl-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  background: var(--wl-accent);
  color: #050505;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  letter-spacing: -0.01em;
  box-shadow: 0 0 20px rgba(var(--wl-accent-rgb), 0.4);
  transition: filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
}

.wl-submit:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: 0 0 32px rgba(var(--wl-accent-rgb), 0.6);
}

.wl-submit:active {
  transform: translateY(0);
}

.wl-fine {
  font-size: 12px;
  color: rgba(var(--wl-accent-rgb), 0.45);
  text-align: center;
  margin: 8px 0 0;
}

.wl-fine strong {
  color: rgba(var(--wl-accent-rgb), 0.7);
}

/* ── Body fade transition ── */
.wl-body {
  transition: opacity 0.22s ease, transform 0.22s ease;
}

/* ── Success state ── */
.wl-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.wl-success.wl-success-visible {
  opacity: 1;
  transform: scale(1);
}

.wl-success .wl-title {
  margin-top: 20px;
}

.wl-success .wl-subtitle {
  margin-bottom: 0;
}

.wl-success-check {
  width: 64px;
  height: 64px;
  color: var(--wl-accent);
  margin: 0 auto;
  filter: drop-shadow(0 0 10px rgba(var(--wl-accent-rgb), 0.5));
}

.wl-check-svg {
  width: 64px;
  height: 64px;
  display: block;
}

.wl-check-circle {
  stroke-dasharray: 160;
  stroke-dashoffset: 160;
  animation: draw-circle 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.05s forwards;
}

.wl-check-mark {
  stroke-dasharray: 36;
  stroke-dashoffset: 36;
  animation: draw-check 0.35s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards;
}

@keyframes draw-circle {
  to { stroke-dashoffset: 0; }
}

@keyframes draw-check {
  to { stroke-dashoffset: 0; }
}

@media (max-width: 480px) {
  .waitlist-modal {
    padding: 40px 24px 32px;
  }
}

/* ── Early Bird Ticket ── */
.wl-ticket-stage {
  perspective: 1000px;
  width: 100%;
  max-width: 320px;
  height: 178px;
  margin: 0 auto 4px;
  flex-shrink: 0;
}

.wl-ticket-wrap {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  will-change: transform;
}

.wl-ticket-card {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow:
    0 2px 4px rgba(0,0,0,0.04),
    0 12px 32px rgba(0,0,0,0.09);
  display: flex;
}

/* Stub dashed separator */
.wl-ticket-card::before {
  content: '';
  position: absolute;
  left: 64px;
  top: 0;
  bottom: 0;
  border-left: 1px dashed #e2e2e8;
  z-index: 2;
}

/* Mouse-reactive specular highlight — position driven by JS CSS vars */
.wl-ticket-holo {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at var(--holo-x, 50%) var(--holo-y, 30%),
    rgba(255,255,255,0.72) 0%,
    rgba(255,255,255,0.1) 46%,
    transparent 70%
  );
  border-radius: 12px;
  z-index: 4;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.85;
}

/* Unused but keep element in HTML */
.wl-ticket-holo2 { display: none; }

/* Stub */
.wl-ticket-stub {
  width: 64px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafafa;
  position: relative;
  z-index: 3;
}

.wl-ticket-stub-label {
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #ccc;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  line-height: 1;
  white-space: nowrap;
}

/* Ticket body */
.wl-ticket-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 14px 14px 12px;
  position: relative;
  z-index: 3;
  min-width: 0;
}

.wl-ticket-avatar {
  width: 45px;
  height: 45px;
  background: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  margin-bottom: 9px;
  margin-top: 15px;
  flex-shrink: 0;
}

.wl-ticket-name {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #0d0d0d;
  line-height: 1;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}

.wl-ticket-role {
  font-size: 8.5px;
  color: #aaa;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 500;
  flex: 1;
}

.wl-ticket-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-top: 1px solid #ebebeb;
  padding-top: 7px;
  margin-top: 6px;
}

.wl-ticket-brand {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #111;
}

.wl-ticket-num {
  font-size: 9px;
  font-family: 'Geist Mono', monospace;
  color: #00dab5;
  letter-spacing: 0.04em;
}

/* ── Success action buttons ── */
.wl-success-actions {
  display: flex;
  gap: 10px;
  width: 100%;
  margin-top: 14px;
}

.wl-btn-download {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 16px;
  background: #0d0d0d;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  letter-spacing: -0.01em;
  transition: background 0.2s ease, transform 0.15s ease;
}

.wl-btn-download:hover {
  background: #222;
  transform: translateY(-1px);
}

.wl-btn-download:active {
  transform: translateY(0);
}

.wl-btn-download:disabled {
  opacity: 0.6;
  cursor: default;
  transform: none;
}

.wl-btn-close-success {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  background: transparent;
  color: #666;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.wl-btn-close-success:hover {
  border-color: #999;
  color: #333;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-email-form {
  display: block;
  width: min(560px, 100%);
}

.hero-email-shell {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero-email-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 6px;
}

.hero-email-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.52);
}

.hero-email-hint {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  font-size: 12px;
  color: rgba(17, 17, 17, 0.46);
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: rgba(17, 17, 17, 0.22);
  text-underline-offset: 0.17em;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.hero-email-hint:hover {
  color: rgba(17, 17, 17, 0.74);
  text-decoration-color: rgba(17, 17, 17, 0.44);
}

.hero-email-hint:focus-visible {
  outline: 2px solid rgba(17, 17, 17, 0.32);
  outline-offset: 3px;
  border-radius: 6px;
}

.hero-email-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: inset 0 1px 0 rgba(17, 17, 17, 0.03);
}

.hero-email-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f5f5f5;
  color: rgba(17, 17, 17, 0.72);
}

.hero-email-input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 14px 4px;
  font: inherit;
  font-size: 16px;
  color: #111;
  outline: none;
}

.hero-email-input::placeholder {
  color: rgba(17, 17, 17, 0.45);
}

.hero-email-button {
  flex-shrink: 0;
  justify-content: center;
  min-width: 132px;
  padding-inline: 20px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(17, 17, 17, 0.12);
}

.hero-email-note {
  margin: 4px 0 0;
  font-size: 13px;
  color: rgba(17, 17, 17, 0.5);
}

.waitlist-overlay {
  --wl-accent: #111111;
  --wl-accent-rgb: 17, 17, 17;
  --wl-bg: rgba(255, 255, 255, 0.58);
  --wl-border: rgba(255, 255, 255, 0.32);
  --wl-title: #111111;
  --wl-sub: rgba(17, 17, 17, 0.68);
  --wl-input-bg: rgba(255, 255, 255, 0.78);
  --wl-input-border: rgba(17, 17, 17, 0.12);
  --wl-close-bg: rgba(255, 255, 255, 0.62);
  --wl-close-hover: rgba(255, 255, 255, 0.82);
  background: rgba(10, 10, 10, 0.1);
  backdrop-filter: blur(22px) saturate(130%);
}

.waitlist-modal {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.52));
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(24px) saturate(140%);
  overflow: hidden;
}

.wl-confetti {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.waitlist-close {
  z-index: 2;
  color: #111;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.62);
}

.wl-body,
.wl-success {
  position: relative;
  z-index: 1;
}

.wl-success {
  min-height: 0;
}

.wl-step {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.42);
}

.wl-title {
  font-size: 28px;
  color: #111;
}

.wl-subtitle {
  color: rgba(17, 17, 17, 0.62);
}

.wl-form {
  gap: 14px;
}

.wl-input {
  border-radius: 14px;
  border-color: rgba(17, 17, 17, 0.12);
  background: #ffffff;
  color: #111;
  box-shadow: inset 0 1px 0 rgba(17, 17, 17, 0.03);
}

.wl-input:focus {
  border-color: rgba(17, 17, 17, 0.22);
  box-shadow: 0 0 0 4px rgba(17, 17, 17, 0.06);
}

.wl-input::placeholder {
  color: rgba(17, 17, 17, 0.38);
}

.wl-submit,
.wl-btn-download {
  background: #111;
  color: #fff;
  box-shadow: none;
}

.wl-submit:hover,
.wl-btn-download:hover {
  background: #222;
  box-shadow: none;
}

.wl-fine {
  color: rgba(17, 17, 17, 0.44);
}

.wl-fine strong {
  color: rgba(17, 17, 17, 0.62);
}

.wl-ticket-card {
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.wl-ticket-holo {
  background:
    linear-gradient(120deg, transparent 28%, rgba(0, 0, 0, 0.05) 48%, transparent 66%);
  opacity: 0.55;
}

.wl-ticket-holo2 {
  display: none;
}

.wl-ticket-stub {
  background: #fafafa;
}

.wl-ticket-stub-label,
.wl-ticket-role {
  color: rgba(17, 17, 17, 0.52);
}

.wl-ticket-role {
  font-size: 10px;
  letter-spacing: 0.02em;
  text-transform: none;
}

.wl-ticket-name,
.wl-ticket-brand {
  color: #111;
}

.wl-ticket-num {
  color: #111;
}

.wl-btn-close-success {
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  color: #111;
}

.wl-btn-close-success:hover {
  border-color: rgba(17, 17, 17, 0.24);
  color: #111;
  background: #f8f8f8;
}

.wl-share-note {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(17, 17, 17, 0.54);
}

.wl-share-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  margin-top: 12px;
}

.wl-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: rgba(255, 255, 255, 0.68);
  color: #111;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.wl-share-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(17, 17, 17, 0.22);
  background: rgba(255, 255, 255, 0.94);
}

@media (max-width: 640px) {
  .hero-email-shell {
    border-radius: 24px;
    padding: 12px;
  }

  .hero-email-meta,
  .hero-email-row {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-email-icon {
    display: none;
  }

  .hero-email-input,
  .hero-email-button,
  .wl-share-actions {
    width: 100%;
  }

  .wl-share-actions {
    grid-template-columns: 1fr;
  }
}

/* Waitlist refinement pass */
.hero-email-form {
  width: min(610px, 100%);
}

.hero-email-shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  gap: 14px;
  padding: 16px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 246, 246, 0.92));
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow:
    0 36px 90px rgba(15, 23, 42, 0.14),
    0 6px 22px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.hero-email-shell::before,
.hero-email-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-email-shell::before {
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.92), transparent 34%),
    radial-gradient(circle at 84% 0%, rgba(255, 255, 255, 0.58), transparent 32%);
  opacity: 0.9;
}

.hero-email-shell::after {
  inset: -18%;
  background: linear-gradient(
    112deg,
    transparent 38%,
    rgba(255, 255, 255, 0.74) 48%,
    transparent 58%
  );
  transform: translateX(-48%);
  animation: hero-shell-sheen-refined 9s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  opacity: 0.75;
}

.hero-email-shell:hover,
.hero-email-shell:focus-within {
  transform: translateY(-2px);
  border-color: rgba(17, 17, 17, 0.14);
  box-shadow:
    0 42px 110px rgba(15, 23, 42, 0.16),
    0 10px 30px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

@keyframes hero-shell-sheen-refined {
  0%, 100% { transform: translateX(-54%); opacity: 0; }
  15% { opacity: 0.82; }
  45% { transform: translateX(54%); opacity: 0.82; }
  60% { opacity: 0; }
}

.hero-email-meta,
.hero-email-row {
  position: relative;
  z-index: 1;
}

.hero-email-meta {
  padding: 0 8px;
}

.hero-email-kicker {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(17, 17, 17, 0.56);
}

.hero-email-hint {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  color: rgba(17, 17, 17, 0.5);
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: rgba(17, 17, 17, 0.24);
  text-underline-offset: 0.17em;
}

.hero-email-row {
  gap: 12px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    inset 0 -1px 0 rgba(17, 17, 17, 0.03),
    0 10px 18px rgba(15, 23, 42, 0.03);
  transition: border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.hero-email-row:focus-within {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(17, 17, 17, 0.16);
  box-shadow:
    0 0 0 5px rgba(17, 17, 17, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    0 18px 32px rgba(15, 23, 42, 0.08);
}

.hero-email-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(180deg, #ffffff, #f2f2f2);
  border: 1px solid rgba(17, 17, 17, 0.05);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    0 8px 16px rgba(17, 17, 17, 0.05);
}

.hero-email-input {
  padding: 15px 4px;
  font-size: 15.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.hero-email-input::placeholder {
  color: rgba(17, 17, 17, 0.42);
}

.hero-email-button {
  position: relative;
  overflow: hidden;
  min-width: 154px;
  padding-inline: 24px;
  background: #111111;
  color: #ffffff;
  box-shadow:
    0 18px 34px rgba(17, 17, 17, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.hero-email-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 32%, rgba(255, 255, 255, 0.22) 50%, transparent 68%);
  transform: translateX(-130%);
  transition: transform 0.45s ease;
}

.hero-email-button:hover {
  transform: translateY(-1px);
  background: #1a1a1a;
  box-shadow:
    0 22px 40px rgba(17, 17, 17, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-email-button:hover::after {
  transform: translateX(130%);
}

.hero-email-note {
  margin: 8px 0 0;
  color: rgba(17, 17, 17, 0.5);
}

.waitlist-overlay {
  --wl-bg: rgba(255, 255, 255, 0.24);
  --wl-border: rgba(255, 255, 255, 0.34);
  --wl-sub: rgba(17, 17, 17, 0.66);
  --wl-input-bg: rgba(255, 255, 255, 0.58);
  --wl-close-bg: rgba(255, 255, 255, 0.28);
  --wl-close-hover: rgba(255, 255, 255, 0.44);
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px) saturate(125%);
  -webkit-backdrop-filter: blur(16px) saturate(125%);
}

.waitlist-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.24), transparent 34%),
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.16), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(17, 17, 17, 0.06), transparent 42%);
  opacity: 0.9;
}

.waitlist-modal {
  position: relative;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.22));
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 30px;
  padding: 54px 42px 38px;
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(34px) saturate(155%);
  -webkit-backdrop-filter: blur(34px) saturate(155%);
  animation: modal-breathe-refined 7.5s ease-in-out infinite;
}

.waitlist-modal::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 29px;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent 24%, transparent 78%, rgba(255, 255, 255, 0.12)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.24), transparent 30%);
  opacity: 0.8;
}

.waitlist-modal.is-success {
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    inset 0 -1px 0 rgba(255, 255, 255, 0.2);
}

@keyframes modal-breathe-refined {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-1px) scale(1.002); }
}

.waitlist-close {
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background 0.24s ease, transform 0.24s ease, border-color 0.24s ease;
}

.waitlist-close:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.42);
  border-color: rgba(255, 255, 255, 0.62);
}

.wl-title {
  font-size: 31px;
  letter-spacing: -0.05em;
}

.wl-subtitle {
  max-width: 30ch;
  color: rgba(17, 17, 17, 0.64);
}

.wl-step {
  font-weight: 700;
  letter-spacing: 0.18em;
}

.wl-form {
  gap: 16px;
}

.wl-input {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 10px 24px rgba(17, 17, 17, 0.04);
  font-size: 15px;
  padding: 15px 16px;
}

.wl-input:focus {
  border-color: rgba(17, 17, 17, 0.18);
  box-shadow:
    0 0 0 5px rgba(17, 17, 17, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 14px 30px rgba(17, 17, 17, 0.07);
}

.wl-submit,
.wl-btn-download {
  min-height: 50px;
  border-radius: 999px;
  box-shadow:
    0 18px 30px rgba(17, 17, 17, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.wl-submit:hover,
.wl-btn-download:hover {
  box-shadow:
    0 22px 36px rgba(17, 17, 17, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.wl-fine {
  letter-spacing: -0.01em;
}

.wl-success-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 14px;
  margin: 0 auto 16px;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.54);
  color: rgba(17, 17, 17, 0.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 10px 18px rgba(17, 17, 17, 0.05);
}

.wl-ticket-stage {
  max-width: 360px;
  height: 210px;
  margin: 10px auto 6px;
  overflow: visible;
}

.wl-ticket-wrap {
  will-change: transform;
  cursor: pointer;
}

.wl-ticket-card {
  border-radius: 20px;
  /* Light pearl silver */
  background: linear-gradient(155deg, #e8eaed 0%, #f2f4f6 50%, #e6e8ec 100%);
  border: none;
  box-shadow:
    0 2px 0 rgba(255,255,255,0.72) inset,
    0 -1px 0 rgba(0,0,0,0.06) inset,
    0 24px 60px rgba(0,0,0,0.14),
    0 4px 12px rgba(0,0,0,0.08);
  will-change: box-shadow;
  transition: box-shadow 0.3s ease;
}

/* Separator on silver background */
.wl-ticket-card::before {
  left: 72px;
  border-left-color: rgba(0,0,0,0.14);
}

.wl-ticket-holo {
  /* Soft center bloom — tracks cursor via JS */
  background: radial-gradient(
    ellipse at var(--holo-x, 60%) var(--holo-y, 45%),
    rgba(255,255,255,0.88) 0%,
    rgba(255,255,255,0.48) 30%,
    rgba(255,255,255,0.12) 55%,
    transparent 68%
  );
  mix-blend-mode: screen;
  opacity: 1;
  border-radius: 20px;
  transition: none;
}

.wl-ticket-stub {
  width: 72px;
  /* Darker matte silver for stub */
  background: linear-gradient(180deg, #b2b4b9 0%, #a5a7ac 100%);
}

/* Text on silver */
.wl-ticket-stub-label {
  color: rgba(0,0,0,0.30);
}
.wl-ticket-role {
  color: rgba(0,0,0,0.42);
}
.wl-ticket-foot {
  border-top-color: rgba(0,0,0,0.10);
}
.wl-ticket-brand {
  color: rgba(0,0,0,0.78);
}
.wl-ticket-avatar {
  background: linear-gradient(145deg, #cfd1d6, #c0c2c8);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 2px 6px rgba(0,0,0,0.10);
  color: rgba(0,0,0,0.50);
}

.wl-ticket-stub-label {
  letter-spacing: 0.18em;
}

.wl-ticket-body {
  align-items: flex-start;
  text-align: left;
  padding: 18px 18px 16px;
}

.wl-ticket-avatar {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  margin: 0;
  background: linear-gradient(180deg, #d2d4d9, #c6c8cd);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 2px 8px rgba(0, 0, 0, 0.10);
  color: rgba(0,0,0,0.52);
}

.wl-ticket-name {
  font-size: 44px;
  margin-top: 26px;
  margin-bottom: 6px;
  max-width: 100%;
}

.wl-ticket-role {
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wl-ticket-foot {
  margin-top: auto;
  padding-top: 10px;
}

.wl-ticket-num {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: #00dab5;
}

.wl-ticket-private-beta {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.36);
  line-height: 1;
  flex-shrink: 0;
}

.wl-btn-close-success {
  min-width: 108px;
  background: rgba(255, 255, 255, 0.44);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.wl-btn-close-success:hover {
  background: rgba(255, 255, 255, 0.7);
}

.wl-share-note {
  margin: 0 0 16px;
  font-size: 13.5px;
  color: rgba(17, 17, 17, 0.58);
  max-width: 34ch;
}

.wl-share-actions {
  margin-top: 14px;
}

.wl-share-btn {
  gap: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 10px 18px rgba(17, 17, 17, 0.04);
}

.wl-share-btn:hover {
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 14px 24px rgba(17, 17, 17, 0.06);
}

.wl-share-status {
  min-height: 18px;
  margin: 12px 0 0;
  font-size: 12px;
  color: rgba(17, 17, 17, 0.5);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.wl-share-status.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.wl-form-status {
  min-height: 18px;
  margin: 10px 0 0;
  font-size: 12px;
  color: rgba(17, 17, 17, 0.52);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.wl-form-status.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.wl-form-status.is-error {
  color: rgba(160, 32, 32, 0.88);
}

@media (max-width: 640px) {
  .hero-email-shell {
    border-radius: 24px;
    padding: 12px;
  }

  .hero-email-button {
    min-width: 0;
  }

  .waitlist-modal {
    padding: 44px 22px 28px;
    border-radius: 26px;
  }

  .wl-title {
    font-size: 27px;
  }

  .wl-ticket-stage {
    max-width: 100%;
    height: 192px;
  }
}

.navbar {
  gap: 24px;
  padding: 14px 24px;
}

.nav-actions {
  margin-left: auto;
}

.hero-presentation {
  min-height: clamp(690px, 82vh, 820px);
}

.hero-presentation::before {
  background-position: center top;
}

.hero {
  min-height: clamp(640px, 76vh, 760px);
  padding: 138px 24px 96px;
}

.smirky-chat-shell {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 2147482000;
}

.smirky-chat-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 8, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.smirky-chat-launcher {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 18px 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #111111;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  box-shadow:
    0 22px 44px rgba(15, 23, 42, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.smirky-chat-launcher-avatar,
.smirky-chatbot-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow:
    0 10px 24px rgba(17, 17, 17, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
  overflow: hidden;
  flex-shrink: 0;
}

.smirky-chatbot-avatar {
  width: 40px;
  height: 40px;
}

.smirky-chatbot-avatar-img {
  width: 74%;
  height: 74%;
  object-fit: contain;
  display: block;
}

.smirky-chat-panel {
  position: fixed;
  left: 24px;
  bottom: 90px;
  z-index: 1;
  width: min(430px, calc(100vw - 32px));
  padding: 18px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow:
    0 38px 90px rgba(15, 23, 42, 0.18),
    0 10px 28px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.smirky-chat-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.smirky-chat-panel-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.smirky-chatbot-kicker {
  display: block;
  margin-bottom: 4px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.46);
}

.smirky-chatbot-title {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.04em;
  color: #111111;
}

.smirky-chat-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: #ffffff;
  color: #111111;
  cursor: pointer;
}

.smirky-chat-log {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 260px;
  max-height: 260px;
  overflow-y: auto;
  padding: 4px 2px 4px 0;
}

.smirky-chat-row {
  display: flex;
  width: 100%;
}

.smirky-chat-row.is-user {
  justify-content: flex-end;
}

.smirky-chat-bubble {
  max-width: 82%;
  padding: 12px 14px;
  border-radius: 18px;
  font-size: 13.5px;
  line-height: 1.55;
  text-align: left;
}

.smirky-chat-bubble.is-bot {
  background: #f5f5f5;
  color: rgba(17, 17, 17, 0.82);
  border-top-left-radius: 6px;
}

.smirky-chat-bubble.is-user {
  background: #111111;
  color: #ffffff;
  border-top-right-radius: 6px;
}

.smirky-chat-questions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.smirky-chat-question {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: rgba(255, 255, 255, 0.84);
  color: #111111;
  font: inherit;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.smirky-chat-question:hover {
  transform: translateY(-1px);
  border-color: rgba(17, 17, 17, 0.18);
  box-shadow: 0 10px 20px rgba(17, 17, 17, 0.05);
}

.waitlist-modal {
  background: #ffffff;
  border-color: rgba(17, 17, 17, 0.08);
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.14),
    0 8px 24px rgba(17, 17, 17, 0.06);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.waitlist-modal::before {
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.03), transparent 22%);
  opacity: 1;
}

.wl-btn-native-share {
  min-width: 148px;
}

@media (max-width: 640px) {
  .navbar {
    width: calc(100% - 24px);
    max-width: calc(100% - 24px);
    margin: 12px auto;
  }

  .hero-presentation {
    margin: 0 12px;
    min-height: calc(86vh - 12px);
  }

  .hero {
    min-height: calc(80vh - 24px);
    padding: 124px 20px 108px;
  }

  .smirky-chat-shell {
    left: 16px;
    bottom: 16px;
  }

  .smirky-chat-panel {
    left: 16px;
    bottom: 84px;
    width: calc(100vw - 32px);
    padding: 16px;
    border-radius: 24px;
  }

  .smirky-chatbot-title {
    font-size: 17px;
  }

  .smirky-chat-question {
    width: 100%;
  }
}

/* ═══════════════════════════════════════════════════
   ── Responsive Refinements ──
═══════════════════════════════════════════════════ */

/* Hero h1 — reduce on small phones */
@media (max-width: 480px) {
  h1 {
    font-size: clamp(40px, 12vw, 56px);
    letter-spacing: -0.04em;
  }
  .subtitle {
    font-size: 17px;
  }
}
@media (max-width: 360px) {
  h1 {
    font-size: 36px;
  }
}

/* Validation toast — prevent overflow on narrow screens */
@media (max-width: 520px) {
  .validation-toast {
    max-width: calc(100vw - 32px);
    white-space: normal;
    bottom: 16px;
    text-align: left;
  }
}

/* Hero email row — better stacking on mobile */
@media (max-width: 640px) {
  .hero-email-row {
    border-radius: 20px;
    gap: 8px;
  }
  .hero-email-input {
    padding: 12px 4px;
    font-size: 15px;
  }
  .hero-email-button {
    padding: 14px 20px;
    min-width: 0;
    width: 100%;
    font-size: 14px;
  }
  .hero-email-meta {
    gap: 6px;
  }
  .hero-email-hint {
    font-size: 11px;
  }
}

/* Navbar — very small screens */
@media (max-width: 360px) {
  .navbar {
    padding: 10px 14px;
    gap: 10px;
  }
  .btn-download {
    font-size: 12.5px;
    padding: 7px 13px;
  }
  .gitty {
    width: 34px;
  }
}

/* Chat launcher — very small screens */
@media (max-width: 360px) {
  .smirky-chat-launcher {
    font-size: 12px;
    padding: 0 12px 0 8px;
    min-height: 46px;
    gap: 8px;
  }
  .smirky-chat-shell {
    left: 12px;
    bottom: 12px;
  }
  .smirky-chat-panel {
    left: 12px;
    bottom: 70px;
    width: calc(100vw - 24px);
  }
}

/* Waitlist modal — very small screens */
@media (max-width: 380px) {
  .waitlist-modal {
    padding: 40px 18px 24px;
    border-radius: 22px;
  }
  .wl-title {
    font-size: 24px;
  }
  .wl-ticket-stage {
    height: 165px;
  }
  .wl-ticket-name {
    font-size: 32px;
    margin-top: 18px;
  }
  .wl-success-actions {
    flex-direction: column;
  }
  .wl-btn-close-success {
    min-width: 0;
    width: 100%;
    justify-content: center;
  }
}

/* ── Privacy policy links ── */
.hero-privacy-link {
  color: inherit;
  opacity: 0.7;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.2s ease;
}
.hero-privacy-link:hover {
  opacity: 1;
}

.wl-privacy-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  opacity: 0.72;
  transition: opacity 0.2s ease;
}
.wl-privacy-link:hover {
  opacity: 1;
}

/* ═══════════════════════════════════════════════════
   ── Privacy Policy Page ──
═══════════════════════════════════════════════════ */
.privacy-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 24px 120px;
}

.privacy-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-muted);
  text-decoration: none;
  margin-bottom: 56px;
  transition: color 0.2s ease;
  letter-spacing: -0.01em;
}

.privacy-back:hover {
  color: var(--color-dark);
}

.privacy-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 12px;
}

.privacy-page h1 {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--color-dark);
  margin-bottom: 10px;
}

.privacy-updated {
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-border);
}

.privacy-section {
  margin-bottom: 48px;
}

.privacy-section h2 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.privacy-section h2::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-teal);
  flex-shrink: 0;
}

.privacy-section p {
  font-size: 15px;
  line-height: 1.72;
  color: var(--color-muted);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.privacy-section ul {
  list-style: none;
  padding: 0;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.privacy-section ul li {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-muted);
  padding-left: 18px;
  position: relative;
  letter-spacing: -0.01em;
}

.privacy-section ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-teal);
  font-size: 13px;
}

.privacy-section a {
  color: var(--color-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.privacy-section a:hover {
  color: #00bf9a;
}

.privacy-highlight-box {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin-bottom: 14px;
}

.privacy-highlight-box p {
  margin-bottom: 0;
}

.privacy-footer-note {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.6;
}

.privacy-footer-note a {
  color: var(--color-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 600px) {
  .privacy-page {
    padding: 48px 20px 80px;
  }
  .privacy-back {
    margin-bottom: 40px;
  }
  .privacy-updated {
    margin-bottom: 40px;
    padding-bottom: 32px;
  }
  .privacy-section {
    margin-bottom: 36px;
  }
}
