/* High-Fidelity Cream & Purple Design System for Tinta.one */

@import url('https://fonts.googleapis.com/css2?family=Geologica:wght@100..900&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #FAF8F2; /* color.light.100 */
  --fg: #30250A; /* color.black */
  --fg-muted: #595242; /* color.light.1000 */
  --border: #E0DBCE; /* color.light.400 */
  --border-hover: #CCC6B8; /* color.light.500 */
  
  --accent: #4516A1; /* color.accent.500 */
  --accent-hover: #361280; /* color.accent.600 */
  --accent-20: rgba(69, 22, 161, 0.2); /* color.accent.500_20 */
  --accent-08: rgba(69, 22, 161, 0.08);
  
  --card-bg: #F7F4EB; /* color.light.200 */
  --card-bg-hover: #EDE9E0; /* color.light.300 */
  
  --success: #538513; /* color.semantic.success */
  --error: #A14016; /* color.semantic.error */
  
  --font-title: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-brand: 'Geologica', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --glow: rgba(69, 22, 161, 0.12);
}

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

body {
  font-family: var(--font-body);
  line-height: 1.6;
  background-color: var(--bg);
  color: var(--fg);
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: #E0DBCE;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #CCC6B8;
}

/* Nav */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  gap: 20px;
  flex-wrap: wrap;
}

nav .logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-brand);
  font-variation-settings: 'CRSV' 1, 'wght' 800;
  font-weight: 800;
  font-size: 20px;
  line-height: 1.3;
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

nav .logo:hover {
  opacity: 0.85;
}

nav .logo svg {
  fill: var(--accent);
  flex-shrink: 0;
}

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

nav a {
  color: var(--fg-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

nav a:hover {
  color: var(--fg);
}

nav .nav-cta {
  background: var(--accent);
  color: #FFFFFF !important;
  padding: 8px 18px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 4px 12px var(--glow);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s ease, background-color 0.2s ease;
}

nav .nav-cta:hover {
  transform: translateY(-1px);
  background-color: var(--accent-hover);
  box-shadow: 0 6px 16px rgba(69, 22, 161, 0.2);
}

/* Section */
section {
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}

section:last-of-type {
  border-bottom: none;
}

/* Typography */
h1 {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--fg);
}

h2 {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: var(--fg);
}

h3 {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--fg);
}

p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  margin-bottom: 16px;
  max-width: 720px;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 96px 0 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1 {
  max-width: 800px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 24px;
}

.hero .price-note {
  font-size: 0.95rem;
  color: var(--fg-muted);
}

.hero .guarantee {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-top: 12px;
}

/* CTAs */
.cta-group {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: var(--accent);
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px var(--glow);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s ease, background-color 0.2s ease;
}

.cta:hover {
  transform: translateY(-1px);
  background-color: var(--accent-hover);
  box-shadow: 0 8px 24px rgba(69, 22, 161, 0.25);
}

.cta:active {
  transform: translateY(1px);
}

.cta.secondary {
  background: #FFFFFF;
  border: 1px solid var(--border);
  box-shadow: none;
  color: var(--fg);
}

.cta.secondary:hover {
  background: var(--card-bg-hover);
  border-color: var(--border-hover);
  box-shadow: none;
}

/* Grids */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Cards */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(48, 37, 10, 0.02);
}

.card:hover {
  transform: translateY(-2px);
  border-color: var(--border-hover);
  background: var(--card-bg-hover);
  box-shadow: 0 8px 24px rgba(48, 37, 10, 0.05);
}

.card.recommended {
  border: 2px solid var(--accent);
  background: #FFFFFF;
  position: relative;
  box-shadow: 0 12px 32px rgba(69, 22, 161, 0.05);
}

.card.recommended:hover {
  background: #FFFFFF;
  box-shadow: 0 16px 40px rgba(69, 22, 161, 0.08);
}

.card.recommended::before {
  content: "LAUNCH PROMO";
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--accent);
  color: #FFFFFF;
  padding: 2px 14px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 4px;
}

/* Featured = accent-bordered card without the LAUNCH PROMO badge. */
.card.featured {
  border: 2px solid var(--accent);
  background: #FFFFFF;
  box-shadow: 0 12px 32px rgba(69, 22, 161, 0.05);
}

.card.featured:hover {
  background: #FFFFFF;
  box-shadow: 0 16px 40px rgba(69, 22, 161, 0.08);
}

/* Pricing Styles */
.price {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 800;
  margin: 12px 0 4px;
  letter-spacing: -0.03em;
  display: flex;
  align-items: baseline;
  color: var(--fg);
}

.old-price {
  color: var(--fg-muted);
  font-size: 1.5rem;
  font-weight: 500;
  margin-left: 12px;
  text-decoration: line-through;
}

.price-note {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-bottom: 24px;
}

.card ul {
  list-style: none;
  margin: 0 0 28px 0;
}

.card li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.card li::before {
  content: "✓";
  color: var(--success);
  font-weight: bold;
}

/* Lists */
ul.normal-list, ol.normal-list {
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--fg-muted);
}
ul.normal-list li, ol.normal-list li {
  margin-bottom: 8px;
}

/* Table styling */
.table-container {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #FFFFFF;
  margin: 32px 0;
  box-shadow: 0 4px 12px rgba(48, 37, 10, 0.02);
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

th, td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

th {
  background: var(--card-bg);
  color: var(--fg);
  font-weight: 600;
  font-family: var(--font-title);
  letter-spacing: -0.01em;
}

tr:last-child td {
  border-bottom: none;
}

tr:hover td {
  background: rgba(69, 22, 161, 0.01);
}

.check {
  color: var(--success);
  font-weight: 600;
}
.check::before {
  content: "✓ ";
}

.cross {
  color: var(--fg-muted);
}
.cross::before {
  content: "— ";
}

/* Interactive macOS Mockup */
.mock-mac-window {
  width: 100%;
  max-width: 580px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 24px 48px rgba(48, 37, 10, 0.06), 0 0 1px 1px rgba(255, 255, 255, 0.8) inset;
  margin: 40px auto;
  overflow: hidden;
  text-align: left;
}

.mock-titlebar {
  background: #F1F0F3;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.mock-dots {
  display: flex;
  gap: 8px;
}

.mock-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.mock-dot.red { background: #ff5f56; }
.mock-dot.yellow { background: #ffbd2e; }
.mock-dot.green { background: #27c93f; }

.mock-title {
  margin-left: 20px;
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 500;
}

.mock-content {
  padding: 24px;
  min-height: 180px;
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #FFFFFF;
}

.mock-textarea {
  font-size: 1.1rem;
  color: var(--fg);
  line-height: 1.5;
}

.mock-cursor {
  display: inline-block;
  width: 2px;
  height: 1.25em;
  background: var(--accent);
  margin-left: 2px;
  animation: blink 1s step-end infinite;
  vertical-align: middle;
}

.mock-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px dashed var(--border);
}

/* Hotkey pill — matches Figma onboarding "Try it" tag (light_100 bg,
   0.5px light_1000 border, radius sm=8, Inter Medium light_1000). */
.hotkey-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-muted);
  background: var(--bg);
  border: 0.5px solid var(--fg-muted);
  border-radius: 8px;
  padding: 6px 10px;
  line-height: 1.2;
  white-space: nowrap;
}

.hotkey-pill .glyph {
  font-size: 1rem;
  line-height: 1;
}

.mock-hotkey-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* Hero feature pills — hoist key points (privacy / no subs / works anywhere)
   so they are the first thing the visitor sees. */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 8px 0 8px;
  max-width: 760px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--accent-08);
  border: 1px solid rgba(69, 22, 161, 0.18);
  border-radius: 9999px;
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.005em;
}

.hero-pill::before {
  content: "✓";
  font-weight: 700;
}

/* Typing animation simulation */
@keyframes blink {
  from, to { background-color: transparent }
  50% { background-color: var(--accent) }
}

/* =====================================================================
   LiveBar pill — port of app's floating window pill (live_bar.py).
   Radius 20, padding 8/12, gap 8 between icon+label, gap 16 before close.
   Bar height 40. Border overlay_white_20 1px.
   ===================================================================== */
.livebar {
  display: inline-flex;
  align-items: center;
  height: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 8px 8px 12px;
  font-family: var(--font-body);
  color: #FAF8F2; /* light_100 */
  background: var(--accent);
  vertical-align: middle;
  box-shadow: 0 8px 24px rgba(48, 37, 10, 0.12);
  transition: background-color 0.3s ease;
}

.livebar.lb-recording,
.livebar.lb-transcribing {
  background: var(--accent); /* accent_500 */
}

.livebar.lb-done {
  background: #538513; /* color.semantic.success */
}

.lb-icon-slot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  flex-shrink: 0;
}

.lb-icon-slot[data-shape="waveform"] {
  width: 32px;
}

.lb-waveform {
  width: 32px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lb-wv-bar {
  width: 2px;
  height: 18px;
  background: #FAF8F2;
  border-radius: 1px;
  opacity: 0.4;
  transform: scaleY(0.1667);
  transform-origin: center;
}

.livebar.lb-recording .lb-wv-bar {
  animation: lb-wv 1s ease-in-out infinite;
}

.livebar.lb-recording .lb-wv-bar:nth-child(1) { animation-delay: 0s; }
.livebar.lb-recording .lb-wv-bar:nth-child(2) { animation-delay: 0.1s; }
.livebar.lb-recording .lb-wv-bar:nth-child(3) { animation-delay: 0.2s; }
.livebar.lb-recording .lb-wv-bar:nth-child(4) { animation-delay: 0.3s; }
.livebar.lb-recording .lb-wv-bar:nth-child(5) { animation-delay: 0.2s; }
.livebar.lb-recording .lb-wv-bar:nth-child(6) { animation-delay: 0.1s; }
.livebar.lb-recording .lb-wv-bar:nth-child(7) { animation-delay: 0s; }

@keyframes lb-wv {
  0%, 100% { transform: scaleY(0.1667); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

.lb-dots {
  display: flex;
  align-items: center;
  gap: 3px;
  width: 24px;
  height: 24px;
  justify-content: center;
}

.lb-dot {
  width: 3.75px;
  height: 3.75px;
  background: #FAF8F2;
  border-radius: 50%;
}

.livebar.lb-transcribing .lb-dot {
  animation: lb-dot-bounce 0.6s ease-in-out infinite;
}

.livebar.lb-transcribing .lb-dot:nth-child(1) { animation-delay: 0s; }
.livebar.lb-transcribing .lb-dot:nth-child(2) { animation-delay: 0.1s; }
.livebar.lb-transcribing .lb-dot:nth-child(3) { animation-delay: 0.2s; }

@keyframes lb-dot-bounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-5px); }
}

.lb-check {
  width: 24px;
  height: 24px;
  color: #FAF8F2;
}

.lb-label {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: #FAF8F2;
  margin-right: 16px;
  white-space: nowrap;
}

.lb-close {
  width: 24px;
  height: 24px;
  border: 0;
  background: transparent;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 248, 242, 0.4);
  cursor: pointer;
  flex-shrink: 0;
}

.lb-close:hover { color: rgba(250, 248, 242, 0.7); }
.lb-close svg { width: 16px; height: 16px; }

/* Hide a slot without taking layout space (preserves auto-width) */
.livebar [hidden] { display: none !important; }

/* Active hotkey pill highlight — fires when user presses Right Shift on
   the page. Reused for the in-pill state machine demo. */
.hotkey-pill {
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.hotkey-pill.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #FAF8F2;
  transform: translateY(-1px);
}

/* =====================================================================
   Step sequence — replaces step-list grid for index "three steps" section.
   Three LiveBar pills arranged horizontally, joined by arrows. Active step
   lights up its pill; other steps render in a dim state.
   ===================================================================== */
.step-sequence {
  margin: 40px 0 8px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}

.step-sequence-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.step-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 180px;
}

.step-cell .livebar {
  opacity: 0.35;
  filter: saturate(0.6);
  transition: opacity 0.4s ease, filter 0.4s ease, transform 0.4s ease;
}

.step-cell.active .livebar {
  opacity: 1;
  filter: none;
  transform: scale(1.04);
}

.step-cell .step-caption {
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-align: center;
  font-weight: 500;
}

.step-arrow {
  width: 32px;
  height: 1px;
  background: var(--border);
  position: relative;
}
.step-arrow::after {
  content: "";
  position: absolute;
  right: -2px;
  top: -4px;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  transform: rotate(45deg);
}

.step-narrative {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 760px;
  margin-top: 8px;
}

.step-narrative-item {
  text-align: center;
}

.step-narrative-item h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.step-narrative-item p {
  font-size: 0.9rem;
  margin: 0 auto;
  max-width: 240px;
}

@media (max-width: 720px) {
  .step-sequence-row { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); margin: 4px 0; }
  .step-narrative { grid-template-columns: 1fr; }
}

/* =====================================================================
   Drop zone — port of transcription_window drag&drop component.
   Light_100 bg, dashed light_500 border (4-on, 4-off), radius 24, padding 24.
   Three states: empty / transcribing (progress) / done (result preview).
   ===================================================================== */
.drop-zone {
  margin: 40px auto 8px;
  max-width: 640px;
  background: var(--bg);
  border: 1.5px dashed var(--border-hover);
  border-radius: 24px;
  padding: 32px 24px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.drop-zone.dz-empty {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.drop-zone .dz-empty-icon {
  width: 64px;
  height: 64px;
  color: var(--accent);
  opacity: 0.65;
  margin-bottom: 8px;
}

.drop-zone .dz-empty-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
}

.drop-zone .dz-empty-sub {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin: 0;
}

.drop-zone.dz-busy,
.drop-zone.dz-result {
  border-style: solid;
  border-color: var(--border);
  background: #FFFFFF;
}

.dz-file-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card-bg);
}

.dz-file-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--accent-08);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dz-file-meta {
  flex: 1;
  min-width: 0;
}

.dz-file-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dz-file-sub {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

.dz-progress-track {
  height: 6px;
  border-radius: 3px;
  background: var(--card-bg);
  overflow: hidden;
}

.dz-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--accent);
  transition: width 0.25s linear;
}

.dz-progress-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--fg-muted);
}

.dz-result-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Monaco, Consolas, monospace;
  font-size: 0.85rem;
  color: var(--fg);
  white-space: pre-wrap;
  line-height: 1.55;
}

.dz-result-box .ts {
  color: var(--accent);
  font-weight: 600;
  margin-right: 8px;
}

/* =====================================================================
   Copy Transcription card — used as illustration in the FAQ.
   250×130 px, accent_500 bg, light_100 stroke 20%, radius 20.
   Ring countdown in top-right (24×24, 1.5px stroke).
   ===================================================================== */
.copy-card-wrap {
  display: flex;
  justify-content: center;
  margin: 20px 0 4px;
}

.copy-card {
  position: relative;
  width: 250px;
  height: 130px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--accent);
  color: #FAF8F2;
  padding: 16px 12px 12px 12px;
  box-shadow: 0 18px 36px rgba(69, 22, 161, 0.18);
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-family: var(--font-body);
}

.cc-header {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  width: 194px;
}

.cc-check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

.cc-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cc-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.cc-subtitle {
  font-size: 12px;
  line-height: 18px;
  opacity: 0.7;
}

.cc-copy-btn {
  height: 40px;
  border-radius: 10px;
  border: 0;
  background: var(--border); /* light_400 #E0DBCE — Secondary token */
  color: var(--fg-muted);    /* light_1000 #595242 — Secondary text token */
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: default;
}

.cc-copy-btn svg { width: 16px; height: 16px; }

.cc-dismiss {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 24px;
  height: 24px;
}

.cc-dismiss svg {
  width: 24px;
  height: 24px;
  transform: rotate(-90deg);
}

.cc-dismiss-track {
  fill: none;
  stroke: rgba(250, 248, 242, 0.3);
  stroke-width: 1.5;
}

.cc-dismiss-arc {
  fill: none;
  stroke: rgba(250, 248, 242, 0.7);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 65.97;
  stroke-dashoffset: 65.97;
  animation: cc-ring 15s linear infinite;
}

@keyframes cc-ring {
  from { stroke-dashoffset: 65.97; }
  to { stroke-dashoffset: 0; }
}

.cc-x {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 248, 242, 0.4);
}
.cc-x svg { width: 16px; height: 16px; }

/* FAQ Accordion Styling */
.faq-block {
  margin-top: 32px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

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

.faq-item h3 {
  font-size: 1.15rem;
  color: var(--fg);
  margin-bottom: 8px;
  font-family: var(--font-title);
  letter-spacing: -0.01em;
}

.faq-item p {
  font-size: 0.95rem;
  margin-bottom: 0;
  max-width: 100%;
}

/* Early Access Form Styling */
form {
  max-width: 500px;
  margin: 24px 0;
}

label {
  display: block;
  font-size: 0.9rem;
  color: var(--fg);
  margin-bottom: 8px;
}

.form-row {
  display: flex;
  gap: 12px;
  align-items: stretch;
}

input[type="email"] {
  flex: 1;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input[type="email"]:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-20);
}

.form-status {
  min-height: 1.5em;
  font-size: 0.9rem;
  margin-top: 8px;
  color: var(--fg-muted);
  transition: color 0.2s ease;
}

.form-status.error { color: var(--error); }
.form-status.success { color: var(--success); }

/* Toast */
.unavailable-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: min(480px, calc(100vw - 32px));
  padding: 16px 20px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  color: var(--fg);
  border-radius: 8px;
  z-index: 2000;
  box-shadow: 0 20px 40px rgba(48, 37, 10, 0.08);
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.unavailable-toast strong {
  color: var(--fg);
}

.unavailable-toast a {
  color: var(--accent);
  text-decoration: underline;
}

/* Steps */
.step-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.step-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 12px;
  position: relative;
}

.step-number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 800;
  color: rgba(48, 37, 10, 0.06);
}

/* Footer */
footer {
  padding: 64px 0 40px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  font-size: 0.9rem;
  width: 100%;
}

footer h4 {
  font-family: var(--font-title);
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 16px;
}

footer a {
  display: inline-block;
  color: var(--fg-muted);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

footer a:hover {
  color: var(--fg);
}

/* Utility Badge */
.badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent-08);
  border: 1px solid rgba(69, 22, 161, 0.15);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 16px;
}

/* Pricing Split Layout */
.pricing-split {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 32px;
  margin-top: 32px;
  align-items: start;
}

.pricing-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-block {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}

.sidebar-block h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--fg);
}

.sidebar-block p {
  font-size: 0.95rem;
  margin-bottom: 12px;
  max-width: 100%;
}

.sidebar-block p:last-child {
  margin-bottom: 0;
}

/* Responsiveness */
@media (max-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.65rem;
  }
  
  body {
    padding: 0 16px;
  }
  
  nav {
    padding: 16px 0;
  }
  
  section {
    padding: 48px 0;
  }
  
  .form-row {
    flex-direction: column;
  }
  
  .cta {
    width: 100%;
    text-align: center;
  }
  
  .pricing-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

