@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-primary: #1A1816;
  --bg-secondary: #221F1C;
  --bg-card: #2A2623;
  --bg-card-hover: #332E2A;
  --border: #3A3530;
  --border-light: #4A443E;
  --text-primary: #F0EBE5;
  --text-secondary: #ADA59C;
  --text-muted: #7A7269;
  --accent: #EF7A5C;
  --accent-light: #F4927A;
  --accent-glow: rgba(239, 122, 92, 0.15);
  --accent-soft: #3D2520;
  --featured-border: #EF7A5C;
  --accent-rgb: 239, 122, 92;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  background: var(--bg-primary);
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0 auto;
  min-height: 100vh;
  width: 100%;
  padding-top: 64px;
}

/* ---- NAV ---- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(26, 24, 22, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(58, 53, 48, 0.5);
  box-shadow: none;
  transition: box-shadow 0.3s, border-color 0.3s;
}

header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  border-bottom-color: rgba(var(--accent-rgb), 0.15);
}

/* ---- FLOATING DOWNLOAD CTA ---- */
.floating-download {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s;
}

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

.floating-download a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(var(--accent-rgb), 0.35), 0 0 0 1px rgba(var(--accent-rgb), 0.3);
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}

.floating-download a:hover {
  background: var(--accent-light);
  box-shadow: 0 8px 32px rgba(var(--accent-rgb), 0.45), 0 0 0 1px rgba(var(--accent-rgb), 0.4);
  transform: translateY(-2px);
}

.floating-download a:active {
  transform: translateY(0);
}

.floating-download svg {
  width: 22px;
  height: 22px;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.5px;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 7px;
}

.logo:hover {
  opacity: 0.85;
}

.logo span {
  color: var(--accent);
  margin-left: -7px;
}

/* Download CTA icon */
.download-icon {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  margin-bottom: 24px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transition: width 0.25s ease;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link:hover::after {
  width: 100%;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: none;
  border-radius: 100px;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 2px 12px rgba(var(--accent-rgb), 0.2);
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(var(--accent-rgb), 0.3);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(var(--accent-rgb), 0.2);
}

.btn-large {
  padding: 16px 42px;
  font-size: 17px;
  border-radius: 100px;
}

.btn-secondary {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
}

.btn-secondary:hover {
  border-color: var(--accent-soft);
  color: var(--text-primary);
  background: rgba(var(--accent-rgb), 0.08);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  padding: 11px 20px;
}

.btn-ghost:hover {
  background: var(--accent-glow);
}

.btn.loading {
  pointer-events: none;
  opacity: 0.7;
}

.btn.loading::after {
  content: '';
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-left: 4px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---- HERO ---- */
.hero {
  text-align: center;
  padding: 64px 20px 60px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  background: #FFFBE8;
  color: var(--text-primary);
}

.hero::before {
  display: none;
}

.hero::after {
  display: none;
}

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

/* ---- HERO SPLIT LAYOUT ---- */
.hero-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  align-items: stretch;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-text {
  text-align: left;
}

.hero-demo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: rgba(var(--accent-rgb), 0.1);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 22px;
  animation: bounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: 0.08s;
}

.badge-highlight {
  background: rgba(var(--accent-rgb), 0.12);
  border-color: rgba(var(--accent-rgb), 0.25);
  color: var(--accent);
  font-weight: 600;
  box-shadow: none;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7.5vw, 86px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -2px;
  margin-bottom: 24px;
  color: var(--text-primary);
  animation: bounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: 0.16s;
}

.hero h1 em {
  font-style: normal;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent) 0%, #F5A623 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h1 .hero-bridge {
  display: block;
  font-size: 0.45em;
  font-weight: 500;
  letter-spacing: -0.5px;
  color: #6B6560;
  margin: 8px 0;
}

.hero h1 .hero-sub {
  display: block;
  font-size: 0.78em;
  font-weight: 900;
  letter-spacing: -1.5px;
  padding-bottom: 4px;
  background: linear-gradient(135deg, var(--accent) 0%, #F5A623 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  color: #6B6560;
  max-width: 660px;
  margin: 0 0 40px;
  line-height: 2;
  font-weight: 400;
  letter-spacing: 0.2px;
  animation: bounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: 0.24s;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  animation: bounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: 0.32s;
}

.hero .btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(var(--accent-rgb), 0.3);
}

.hero .btn-primary:hover {
  background: var(--accent-light);
  color: #ffffff;
  box-shadow: 0 8px 30px rgba(var(--accent-rgb), 0.35);
  transform: translateY(-2px) scale(1.03);
}

.hero-note {
  font-size: 13px;
  color: #9E9590;
  letter-spacing: 0.2px;
  animation: bounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: 0.36s;
}

/* ---- TEXT TRANSFORM DEMO ---- */
.text-transform-demo {
  max-width: 540px;
  width: 100%;
  margin: 0;
  position: relative;
  animation: bounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: 0.44s;
}

/* ---- Floating Pill ---- */
.demo-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  position: relative;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(-8px) scale(0.95);
  transition: opacity 0.35s ease, transform 0.35s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  z-index: 2;
}

.demo-pill.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.demo-pill.done .demo-pill-wave {
  opacity: 0;
}

.demo-pill.done .demo-pill-dot {
  background: #22c55e;
  animation: none;
  box-shadow: 0 0 0 0 transparent;
}

.demo-pill.done .demo-pill-label {
  color: var(--text-primary);
}

.demo-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #EF4444;
  flex-shrink: 0;
  animation: demoPulse 1.2s ease-in-out infinite;
  transition: background 0.3s ease;
}

@keyframes demoPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 4px rgba(239, 68, 68, 0); }
}

.demo-pill-label {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-secondary);
  white-space: nowrap;
  transition: color 0.3s ease;
}

.demo-pill-wave {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  height: 14px;
  transition: opacity 0.3s ease;
}

.demo-pill-wave span {
  display: block;
  width: 2.5px;
  border-radius: 2px;
  background: var(--accent);
  animation: demoWave 0.8s ease-in-out infinite;
}

.demo-pill-wave span:nth-child(1) { height: 4px; animation-delay: 0s; }
.demo-pill-wave span:nth-child(2) { height: 9px; animation-delay: 0.08s; }
.demo-pill-wave span:nth-child(3) { height: 14px; animation-delay: 0.16s; }
.demo-pill-wave span:nth-child(4) { height: 9px; animation-delay: 0.12s; }
.demo-pill-wave span:nth-child(5) { height: 5px; animation-delay: 0.2s; }

@keyframes demoWave {
  0%, 100% { transform: scaleY(0.35); }
  50% { transform: scaleY(1); }
}

/* ---- App Mockup Card ---- */
.demo-mockup {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15), 0 1px 3px rgba(0,0,0,0.08);
  text-align: left;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.demo-mockup.visible {
  opacity: 1;
  transform: translateY(0);
}

.demo-mockup-header {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.demo-mockup-header .mock-app-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}

.demo-mockup-header .mock-dots {
  display: flex;
  gap: 5px;
}

.demo-mockup-header .mock-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-light);
}

.demo-mockup-header .mock-app-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-left: auto;
}

.demo-mockup-header .mock-field {
  font-size: 12px;
  color: var(--text-muted);
  padding: 4px 0;
}

.demo-mockup-header .mock-field strong {
  color: var(--text-secondary);
  font-weight: 500;
}

.demo-mockup-header .mock-subject {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
}

.demo-mockup-header .mock-channel {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.demo-mockup-body {
  padding: 16px;
  min-height: 280px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-primary);
  position: relative;
}

.demo-mockup-body .demo-cursor {
  display: inline-block;
  width: 2px;
  height: 1.15em;
  background: var(--accent);
  vertical-align: text-bottom;
  margin-left: 1px;
  animation: demoCursorBlink 0.8s step-end infinite;
}

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

.demo-mockup-body .demo-line {
  min-height: 1.65em;
}

.demo-mockup-body .demo-checklist {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.demo-mockup-body .demo-checklist label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  cursor: default;
}

.demo-mockup-body .demo-checklist input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
  flex-shrink: 0;
  pointer-events: none;
}

/* Fade transition between scenarios */
.text-transform-demo.fading .demo-mockup,
.text-transform-demo.fading .demo-pill {
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* ---- SECTION SHARED ---- */
.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
  padding: 5px 16px;
  background: var(--accent-glow);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  border-radius: 100px;
}

/* Section background tints — dark mode subtle warm washes */
.bg-peach { background: #1E1A17; }
.bg-cream { background: #1A1816; }
.bg-mint { background: #181C1A; }
.bg-teal { background: #191B1C; }
.bg-yellow { background: #1C1A16; }
.bg-lavender { background: #1C1920; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 48px;
  line-height: 1.2;
}

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
              transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

/* ---- HOW IT WORKS ---- */
.how-it-works {
  padding: 100px 20px;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: 18px;
  overflow: hidden;
}

.step {
  background: var(--bg-secondary);
  padding: 40px 30px;
  position: relative;
  text-align: left;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.step:hover {
  background: var(--bg-card);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.step-number {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 18px;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  font-weight: 300;
}

.step .shortcut-key {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
}

.shortcut-key kbd {
  display: inline-block;
  padding: 5px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 7px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

/* ---- FEATURES ---- */
.features {
  padding: 100px 20px;
  position: relative;
  width: 100%;
}

.features::before {
  display: none;
}

.features-inner {
  max-width: 1000px;
  margin: 0 auto;
}

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

.feature {
  padding: 34px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--accent-rgb), 0.12);
  border: 1px solid rgba(var(--accent-rgb), 0.1);
  border-radius: 12px;
  font-size: 22px;
  margin-bottom: 20px;
}

.feature h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature p {
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.7;
}

/* ---- PRICING ---- */
.pricing {
  padding: 100px 20px;
  max-width: 1060px;
  margin: 0 auto;
  text-align: center;
}

/* Billing Tabs */
.billing-tabs {
  display: inline-flex;
  align-items: center;
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px;
  margin-top: 8px;
  margin-bottom: 8px;
}

.billing-tab {
  position: relative;
  z-index: 1;
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  background: none;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: color 0.3s;
  white-space: nowrap;
  user-select: none;
}

.billing-tab.active {
  color: var(--text-primary);
}

.billing-tab:hover:not(.active) {
  color: var(--text-secondary);
}

.tab-note {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
}

.billing-tab.active .tab-note {
  color: var(--text-secondary);
}

/* Audience Toggle */
.audience-toggle {
  display: inline-flex;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px;
  margin-bottom: 12px;
}

.audience-btn {
  padding: 8px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  background: none;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: color 0.3s, background 0.3s;
  user-select: none;
}

.audience-btn.active {
  color: var(--text-primary);
  background: var(--border-light);
}

.audience-btn:hover:not(.active) {
  color: var(--text-secondary);
}

/* ---- TEAMS PRICING ---- */
.teams-card {
  max-width: 760px;
  margin: 48px auto 0;
}

.teams-card-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.teams-left {
  padding: 36px 32px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.teams-right {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}

.teams-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.teams-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

/* Volume tier cards */
.teams-tiers {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  flex: 1;
}

.teams-tier {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--bg-secondary);
  border: 1px solid transparent;
  border-radius: 10px;
  transition: border-color 0.25s, background 0.25s;
}

.teams-tier.active {
  border-color: var(--accent);
  background: rgba(var(--accent-rgb), 0.06);
}

.tier-range {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.teams-tier.active .tier-range {
  color: var(--text-primary);
}

.tier-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.tier-price small {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
}

/* Billing toggle inside teams */
.teams-billing-toggle {
  display: flex;
  gap: 6px;
  background: var(--bg-secondary);
  border-radius: 10px;
  padding: 4px;
}

.teams-billing-btn {
  flex: 1;
  padding: 8px 14px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  background: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: color 0.25s, background 0.25s;
  white-space: nowrap;
}

.teams-billing-btn.active {
  color: var(--text-primary);
  background: var(--bg-card);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.teams-billing-btn:hover:not(.active) {
  color: var(--text-secondary);
}

.teams-save-tag {
  font-size: 11px;
  color: #4caf50;
  font-weight: 600;
}

/* Right side: configurator */
.teams-configurator {
  margin-bottom: 20px;
}

.teams-config-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.teams-size-row {
  display: flex;
  gap: 8px;
}

.teams-size-select {
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  background: var(--bg-secondary);
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  flex: 1;
}

.teams-custom-input {
  width: 80px;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  background: var(--bg-secondary);
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: 10px;
}

/* Price display */
.teams-price-display {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.teams-per-seat {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.teams-price-amount {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -1px;
}

.teams-price-unit {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 400;
}

.teams-price-details {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.teams-total {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}

.teams-price-dot {
  color: var(--border-light);
  font-size: 12px;
}

.teams-price-note {
  font-size: 13px;
  color: var(--text-muted);
}

/* Features list */
.teams-features {
  list-style: none;
  margin: 0 0 20px;
  flex: 1;
}

.teams-features li {
  padding: 5px 0;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 8px;
}

.teams-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  background: rgba(var(--accent-rgb), 0.15);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23EF7A5C' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}

.teams-features li:has(strong)::before {
  display: none;
}

.teams-features li strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* CTA button */
.teams-cta {
  width: 100%;
  justify-content: center;
  padding: 12px 24px;
  font-size: 15px;
}

/* Contact line */
.teams-contact {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

.teams-contact a {
  color: var(--accent);
  text-decoration: none;
}

.teams-contact a:hover {
  text-decoration: underline;
}

/* Power-Ups */
.power-ups-section {
  margin-top: 56px;
  text-align: center;
}

.power-ups-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.power-ups-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.power-ups-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 500px;
  margin: 0 auto;
}

.power-up-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: left;
  position: relative;
}

.power-up-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.power-up-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 12px;
}

.power-up-price {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.power-up-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: #b39ddb;
  background: rgba(179, 157, 219, 0.12);
  border: 1px solid rgba(179, 157, 219, 0.2);
  border-radius: 100px;
  padding: 3px 10px;
  margin-top: 8px;
}

.power-ups-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
}

.tab-indicator {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  border-radius: 100px;
  background: var(--border-light);
  transition: left 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), width 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.pricing-grid.three-col {
  grid-template-columns: repeat(3, 1fr);
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  text-align: left;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
}

.price-card:hover {
  border-color: var(--border-light);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.price-card.featured {
  border-color: var(--accent);
  background: linear-gradient(
    180deg,
    rgba(var(--accent-rgb), 0.08) 0%,
    var(--bg-card) 100%
  );
  box-shadow: 0 0 60px rgba(var(--accent-rgb), 0.08);
}

.price-card.featured:hover {
  box-shadow: 0 16px 60px rgba(var(--accent-rgb), 0.12);
}

.price-card.private-card {
  border-color: rgba(34, 197, 94, 0.25);
  background: linear-gradient(
    180deg,
    rgba(34, 197, 94, 0.05) 0%,
    var(--bg-card) 100%
  );
}

.price-card.private-card:hover {
  border-color: rgba(34, 197, 94, 0.4);
  box-shadow: 0 16px 48px rgba(34, 197, 94, 0.06);
}

.privacy-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 18px;
  background: var(--accent);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 16px rgba(var(--accent-rgb), 0.3);
}

.price-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}

.price {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 800;
  margin: 14px 0 4px;
  letter-spacing: -1.5px;
}

.price span {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0;
}

.price-dollar {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  vertical-align: super;
  margin-right: -2px;
}

.price-cents {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0;
}

.price-period {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0;
}


.price-highlight {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  background: rgba(var(--accent-rgb), 0.2);
  border: 1px solid rgba(var(--accent-rgb), 0.3);
  border-radius: 6px;
  padding: 4px 10px;
  vertical-align: middle;
  letter-spacing: 0;
  white-space: nowrap;
}

.price-compare {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.price-compare.savings {
  color: #4caf50;
}

.price-note {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 28px;
}

.price-card ul {
  list-style: none;
  margin: 0 0 32px;
  flex: 1;
}

.price-card li {
  padding: 8px 0;
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-card li::before {
  content: '';
  width: 18px;
  height: 18px;
  background: rgba(var(--accent-rgb), 0.15);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23EF7A5C' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.price-card li:has(strong)::before {
  display: none;
}

.price-card li strong {
  color: var(--text-primary);
  font-weight: 600;
}

.price-card.private-card li::before {
  background-color: rgba(34, 197, 94, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322c55e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

.price-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-buttons .btn {
  width: 100%;
  justify-content: center;
}

.price-trial-note {
  color: var(--accent);
  font-size: 13px;
  text-align: center;
  margin: 4px 0 0;
  font-weight: 500;
}

/* ---- DOWNLOAD SECTION ---- */
.download-section {
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.download-section::before {
  display: none;
}

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

.download-section .section-title {
  margin-bottom: 14px;
}

.download-note {
  color: var(--text-secondary);
  font-size: 17px;
  margin-bottom: 36px;
  font-weight: 300;
  line-height: 1.6;
}

.download-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 20px;
  letter-spacing: 0.2px;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}

.download-card {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  row-gap: 12px;
  padding: 32px 28px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  transition: border-color 0.2s ease, transform 0.2s ease;
  text-align: left;
}

.download-card:hover {
  border-color: var(--accent-soft);
  transform: translateY(-2px);
}

.download-card-soon:hover {
  transform: none;
  border-color: var(--border);
}

.download-card-icon {
  color: var(--text-primary);
  opacity: 0.9;
  margin-bottom: 2px;
}

.download-card-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  color: var(--text-primary);
  line-height: 1.2;
}

.card-status-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: -4px 0 0;
}

.download-card.download-card-soon .card-status-text { color: var(--accent); }

.download-card-meta {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
  align-self: start;
}

.download-card .btn {
  margin: 0;
  justify-self: stretch;
  text-align: center;
  justify-content: center;
}

.btn-coming-soon {
  cursor: not-allowed;
  opacity: 0.7;
}

.btn-coming-soon:hover {
  transform: none;
  background: transparent;
  border-color: var(--border-light);
  color: var(--text-secondary);
}

.hero-windows-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  line-height: 1.2;
  padding-top: 10px;
  padding-bottom: 10px;
}

.windows-btn-label {
  font-size: 16px;
  font-weight: 500;
}

.windows-btn-sub {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.85;
}

.download-notify-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.download-notify-link:hover {
  text-decoration: underline;
}

/* ---- ERROR TOAST ---- */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #dc2626;
  color: white;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  z-index: 1000;
  opacity: 0;
  transition: all 0.35s ease;
  pointer-events: none;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

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

/* ---- FOOTER ---- */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 20px 40px;
  background: #121010;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.3px;
}

.footer-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}

.footer-brand span {
  color: var(--accent);
  margin-left: -5px;
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text-primary);
}

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-14px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes bounceIn {
  from { opacity: 0; transform: translateY(30px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes kbdPress {
  0% { transform: translateY(0); box-shadow: 0 2px 4px rgba(0,0,0,0.15); }
  40% { transform: translateY(3px); box-shadow: 0 0px 2px rgba(0,0,0,0.1); }
  60% { transform: translateY(3px); box-shadow: 0 0px 2px rgba(0,0,0,0.1); }
  100% { transform: translateY(0); box-shadow: 0 2px 4px rgba(0,0,0,0.15); }
}

/* KBD press animation on scroll reveal */
.how-it-works.visible .shortcut-key kbd {
  animation: kbdPress 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: 0.6s;
}

.how-it-works.visible .shortcut-key kbd:last-child {
  animation-delay: 0.75s;
}

/* ---- SUCCESS PAGE ---- */
.success-page {
  text-align: center;
  padding: 100px 20px 80px;
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  width: 72px;
  height: 72px;
  background: rgba(34, 197, 94, 0.12);
  border: 2px solid rgba(34, 197, 94, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #22c55e;
  margin: 0 auto 28px;
  animation: fadeInDown 0.6s ease;
}

.success-page h1 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  animation: fadeInUp 0.7s ease;
}

.success-page > p {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 10px;
  font-weight: 300;
  animation: fadeInUp 0.8s ease;
}

.steps-box {
  text-align: left;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 32px;
  margin: 32px auto;
  animation: fadeInUp 0.9s ease;
}

.steps-box h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.steps-box ol {
  padding-left: 20px;
  color: var(--text-secondary);
}

.steps-box li {
  padding: 8px 0;
  line-height: 1.6;
  font-weight: 300;
}

.steps-box code {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  padding: 2px 8px;
  border-radius: 5px;
  font-size: 13px;
  color: var(--accent);
}

.support-note {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 32px;
  animation: fadeInUp 1s ease;
}

.support-note a {
  color: var(--accent);
  text-decoration: none;
}

.support-note a:hover {
  text-decoration: underline;
}

/* ---- LEGAL / FAQ PAGES ---- */
.legal-page {
  padding: 60px 20px 100px;
  max-width: 720px;
  margin: 0 auto;
}

.legal-page.faq-page {
  max-width: 800px;
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 42px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 8px;
  line-height: 1.15;
}

.legal-updated {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 48px;
}

.legal-content {
  color: var(--text-secondary);
  line-height: 1.8;
  font-weight: 300;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 40px;
  margin-bottom: 12px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin-bottom: 14px;
  font-size: 15px;
}

.legal-content ul,
.legal-content ol {
  padding-left: 24px;
  margin-bottom: 14px;
}

.legal-content li {
  padding: 4px 0;
  font-size: 15px;
}

.legal-content a {
  color: var(--accent-light);
  text-decoration: none;
  transition: color 0.2s;
}

.legal-content a:hover {
  color: var(--text-primary);
  text-decoration: underline;
}

.legal-content code {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2px 8px;
  border-radius: 5px;
  font-size: 13px;
  color: var(--accent);
}

.legal-content kbd {
  display: inline-block;
  padding: 3px 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 5px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.legal-content strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ---- ABOUT PAGE ---- */
.about-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 28px;
  animation: fadeInUp 1s ease;
}

.setup-steps {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.setup-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  text-align: left;
}

.setup-number {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--accent-glow);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-light);
}

.setup-content h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}

.setup-content p {
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.6;
}

.setup-content kbd {
  display: inline-block;
  padding: 3px 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 5px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.settings-section {
  max-width: 700px;
  margin: 0 auto 36px;
  text-align: left;
}

.settings-section h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.about-table {
  width: 100%;
  border-collapse: collapse;
}

.about-table td {
  padding: 10px 14px;
  font-size: 15px;
  font-weight: 300;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.6;
}

.about-table td:first-child {
  width: 160px;
  white-space: nowrap;
  color: var(--text-primary);
}

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

.about-table strong {
  color: var(--text-primary);
  font-weight: 600;
}

.about-table code {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2px 8px;
  border-radius: 5px;
  font-size: 13px;
  color: var(--accent);
}

.about-table kbd {
  display: inline-block;
  padding: 3px 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 5px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.language-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 600px;
  margin: 0 auto;
}

.language-pill {
  padding: 7px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.language-pill:hover {
  border-color: var(--accent-soft);
  color: var(--text-primary);
}

.requirements-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 700px;
  margin: 0 auto;
}

.requirement {
  text-align: center;
}

.requirement strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.requirement p {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 300;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-card:hover {
  border-color: var(--border-light);
  background: var(--bg-card-hover);
}

.faq-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.faq-card p {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.65;
}

.faq-card a {
  color: var(--accent-light);
  text-decoration: none;
}

.faq-card a:hover {
  text-decoration: underline;
}

.faq-card kbd {
  display: inline-block;
  padding: 2px 6px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-primary);
}

.faq-card code {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
  color: var(--accent);
}

.troubleshoot-list {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.troubleshoot-item h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

.troubleshoot-item p {
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.65;
}

.troubleshoot-item kbd {
  display: inline-block;
  padding: 2px 6px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-primary);
}

/* ---- TRUST BADGES ---- */
.trust-strip {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid var(--border);
  transition: transform 0.2s;
}

.trust-badge:hover {
  transform: translateY(-2px);
}

.trust-badge svg {
  color: var(--accent);
  opacity: 0.7;
  flex-shrink: 0;
}

/* Dark mode colored pills */
.trust-peach { background: rgba(239, 122, 92, 0.08); border-color: rgba(239, 122, 92, 0.15); }
.trust-mint { background: rgba(34, 197, 94, 0.08); border-color: rgba(34, 197, 94, 0.15); }
.trust-lavender { background: rgba(139, 92, 246, 0.08); border-color: rgba(139, 92, 246, 0.15); }
.trust-amber { background: rgba(245, 166, 35, 0.08); border-color: rgba(245, 166, 35, 0.15); }

/* ---- SHARE BUTTONS ---- */
.share-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px 20px;
  border-top: 1px solid var(--border);
}

.share-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

.share-buttons {
  display: flex;
  gap: 8px;
}

.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-secondary);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.share-btn:hover {
  border-color: var(--accent);
  color: var(--accent-light);
  background: var(--accent-glow);
  transform: translateY(-3px) scale(1.05);
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---- PRODUCT HUNT BADGE ---- */
.ph-badge {
  text-align: center;
  padding: 24px 20px 40px;
}

.ph-badge a {
  display: inline-block;
  transition: transform 0.2s;
}

.ph-badge a:hover {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .about-table td:first-child {
    width: auto;
    white-space: normal;
  }

  .steps-grid[style*="repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .requirements-grid {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .steps-grid[style*="repeat(4"] {
    grid-template-columns: 1fr !important;
  }

  .about-nav {
    gap: 6px;
  }
}

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

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

.faq-item h2 {
  margin-top: 0;
}

.settings-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}

.settings-table td {
  padding: 10px 14px;
  font-size: 15px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.settings-table td:first-child {
  width: 160px;
  white-space: nowrap;
}

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

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  nav {
    padding: 14px 20px;
  }

  .nav-right {
    gap: 18px;
  }

  .nav-link {
    font-size: 14px;
  }

  .hero {
    padding: 60px 20px 48px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-text {
    text-align: center;
  }

  .hero h1 {
    letter-spacing: -1.5px;
  }

  .hero-subtitle {
    font-size: 16px;
    margin: 0 auto 20px;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-note {
    text-align: center;
  }

  .text-transform-demo {
    max-width: 90vw;
    margin: 0 auto;
  }

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

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

  .pricing-grid,
  .pricing-grid.three-col {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .teams-card-inner {
    grid-template-columns: 1fr;
  }

  .teams-left {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 28px 24px;
  }

  .teams-right {
    padding: 28px 24px;
  }

  .billing-tabs {
    flex-wrap: wrap;
    border-radius: 14px;
    justify-content: center;
  }

  .billing-tab {
    padding: 8px 16px;
    font-size: 13px;
  }

  .tab-indicator {
    display: none;
  }

  .billing-tab.active {
    background: var(--border-light);
    border-radius: 10px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .section-title {
    font-size: 28px;
  }

  .how-it-works,
  .features,
  .pricing,
  .download-section {
    padding: 70px 20px;
  }

  .download-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .footer-links {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  nav {
    padding: 12px 16px;
  }

  .nav-right {
    gap: 14px;
  }

  .hero {
    padding: 48px 16px 36px;
  }

  .text-transform-demo {
    max-width: 95vw;
    margin-top: 24px;
  }

  .demo-mockup-body {
    min-height: 330px;
  }

  .demo-text {
    font-size: 14px;
  }

  .step {
    padding: 28px 22px;
  }

  .feature {
    padding: 26px;
  }

  .price-card {
    padding: 32px 24px;
  }

  .btn-large {
    padding: 14px 32px;
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .text-transform-demo,
  .demo-text .word,
  .demo-text .cursor,
  .demo-label {
    animation: none !important;
    transition: none !important;
  }
}
