/* ==================== CSS Custom Properties ==================== */
:root {
  /* Colors */
  --color-navy:        #151826;
  --color-navy-mid:    #1E2235;
  --color-orange:      #F26716;
  --color-orange-warm: #D97236;
  --color-orange-deep: #C06020;
  --color-peach:       #F2B694;
  --color-gray-light:  #F2F2F2;
  --color-gray-border: #E5E7EB;
  --color-gray-medium: #9CA3AF;
  --color-white:       #FFFFFF;
  --color-success:     #22C55E;
  --color-error:       #EF4444;
  --color-warning:     #F59E0B;

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(21,24,38,0.08);
  --shadow-md: 0 4px 16px rgba(21,24,38,0.12);
  --shadow-lg: 0 8px 32px rgba(21,24,38,0.16);
}

/* ==================== Reset / Base ==================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-navy);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--color-orange); text-decoration: none; transition: color 150ms cubic-bezier(0.4,0,0.2,1); }
a:hover { color: var(--color-orange-warm); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
code {
  font-family: var(--font-mono);
  color: var(--color-orange);
  font-size: 0.92em;
  font-weight: 500;
}
ul { list-style: none; }

/* ==================== Layout ==================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.section { padding: 96px 0; }
.section-gray { background: var(--color-gray-light); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 64px; }
.section-head h2 { font-size: 42px; font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 16px; }
.section-sub { font-size: 17px; color: var(--color-navy); opacity: 0.7; line-height: 1.65; }
.eyebrow-dark {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--color-orange);
  margin-bottom: 12px;
}

/* ==================== Buttons ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  transition: all 150ms cubic-bezier(0.4,0,0.2,1);
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn-primary { background: var(--color-orange); color: var(--color-white); }
.btn-primary:hover { background: var(--color-orange-warm); color: var(--color-white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary {
  background: transparent;
  border: 1.5px solid var(--color-orange);
  color: var(--color-orange);
}
.btn-secondary:hover { background: rgba(242,182,148,0.2); color: var(--color-orange); }
.btn-on-dark { color: var(--color-white); border-color: var(--color-white); }
.btn-on-dark:hover { background: rgba(255,255,255,0.1); color: var(--color-white); }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 16px 32px; font-size: 17px; }
.btn-full { width: 100%; }

/* ==================== Nav ==================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(21,24,38,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 32px;
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 60px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 19px;
  color: var(--color-navy);
  letter-spacing: -0.02em;
}
.nav-logo:hover { color: var(--color-navy); }
.logo-mark {
  width: 28px; height: 28px;
  background: var(--color-orange);
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--color-white);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 17px;
  line-height: 1;
}
.logo-word .logo-key { color: inherit; }
.logo-word .logo-text { color: var(--color-orange); }

.nav-links {
  display: flex;
  gap: 36px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  position: relative;
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.005em;
  padding: 6px 0;
  transition: color 150ms;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1.5px;
  background: var(--color-orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms cubic-bezier(0.4,0,0.2,1);
}
.nav-links a:hover { color: var(--color-navy); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--color-orange); }
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: var(--color-orange);
  color: var(--color-white);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: background 180ms, transform 180ms, color 180ms;
}
.nav-cta:hover {
  background: var(--color-navy);
  color: var(--color-white);
  transform: translateY(-1px);
}
.nav-cta svg { transition: transform 180ms; }
.nav-cta:hover svg { transform: translate(2px, -2px); }
.nav-toggle { display: none; }

/* ==================== Hero ==================== */
.hero {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 104px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(242,103,22,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -240px; left: -180px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(242,182,148,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.028em;
  color: var(--color-white);
  margin: 0 0 22px;
}
.hero h1 .accent { color: var(--color-orange); }
.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-sub code {
  color: var(--color-orange);
  background: rgba(242,103,22,0.1);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.92em;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Trial CTA bullets — 2x2 grid replacing the descriptive paragraph */
.trial-bullets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
  margin: 0;
  max-width: 520px;
}
.trial-bullets li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--color-navy);
  opacity: 0.82;
  letter-spacing: 0.005em;
}
.trial-bullets svg { color: var(--color-orange); flex-shrink: 0; }

/* Demo window */
.demo-window {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: perspective(1400px) rotateY(-4deg) rotateX(2deg);
  transition: transform 500ms cubic-bezier(0.4,0,0.2,1);
}
.demo-window:hover { transform: perspective(1400px) rotateY(-2deg) rotateX(1deg); }
.demo-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--color-gray-light);
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-gray-border);
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: #FF5F57; }
.dot.amber { background: #FFBD2E; }
.dot.green { background: #28CA42; }
.demo-url {
  margin-left: 12px;
  font-size: 12px;
  color: var(--color-gray-medium);
  font-family: var(--font-mono);
}
.demo-body { padding: 20px 24px; color: var(--color-navy); height: 440px; display: flex; flex-direction: column; }
.demo-field {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-gray-border);
  font-size: 14px;
}
.demo-label { color: var(--color-gray-medium); width: 60px; }
.demo-value { color: var(--color-navy); font-weight: 500; }
.demo-compose { position: relative; flex: 1; padding: 16px 0; min-height: 0; overflow: hidden; }
.demo-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-navy);
  white-space: pre-wrap;
  overflow: hidden;
}
.demo-text .cursor {
  display: inline-block;
  width: 2px;
  height: 18px;
  background: var(--color-orange);
  vertical-align: middle;
  margin-left: 1px;
  animation: blink 1s infinite;
}
.demo-text .trigger {
  font-family: var(--font-mono);
  color: var(--color-orange);
  font-weight: 500;
  background: rgba(242,103,22,0.08);
  padding: 0 4px;
  border-radius: 3px;
}
@keyframes blink { 0%,50% { opacity: 1; } 51%,100% { opacity: 0; } }

.demo-dropdown {
  position: absolute;
  top: 44px;
  left: 0;
  background: var(--color-white);
  border: 1px solid var(--color-gray-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  min-width: 260px;
  padding: 4px;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 200ms, transform 200ms;
  pointer-events: none;
}
.demo-dropdown.show { opacity: 1; transform: translateY(0); }
.demo-dd-item {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  font-size: 14px;
}
.demo-dd-item.active { background: rgba(242,103,22,0.08); }
.demo-dd-item code {
  font-family: var(--font-mono);
  color: var(--color-orange);
  font-weight: 600;
  min-width: 80px;
}
.demo-dd-item span { color: var(--color-gray-medium); }
.demo-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 12px; border-top: 1px solid var(--color-gray-border);
}
.demo-send {
  background: var(--color-orange);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
}
.demo-saved { font-size: 12px; color: var(--color-success); font-weight: 500; opacity: 0; transition: opacity 300ms; }
.demo-saved.show { opacity: 1; }

/* ==================== Social proof ==================== */
.proof { padding: 48px 0; background: var(--color-white); border-bottom: 1px solid var(--color-gray-border); }
.proof-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gray-medium);
  margin-bottom: 28px;
}
.proof-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 48px;
  align-items: center;
}
.proof-icon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-gray-medium);
  font-size: 15px;
  font-weight: 500;
  transition: color 150ms;
}
.proof-icon:hover { color: var(--color-navy); }
.proof-icon svg { width: 22px; height: 22px; }

/* ==================== How It Works (redesigned) ==================== */
.how-wrap {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: start;
}
.how-left h2 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.how-sub {
  font-size: 17px;
  color: var(--color-navy);
  opacity: 0.7;
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 420px;
}
.how-illo {
  background: linear-gradient(145deg, #FFFFFF, #F8F8F8);
  border: 1px solid var(--color-gray-border);
  border-radius: 20px;
  padding: 28px;
  max-width: 420px;
  box-shadow: var(--shadow-sm);
}
.how-illo svg { width: 100%; height: auto; display: block; }

.how-steps {
  position: relative;
  padding: 8px 0;
}
.how-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  padding: 18px 0 40px;
  position: relative;
}
.how-step:last-child { padding-bottom: 0; }
.how-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 35px;
  top: 84px;
  bottom: 20px;
  width: 2px;
  background-image: linear-gradient(to bottom, var(--color-gray-border) 50%, transparent 50%);
  background-size: 2px 10px;
}
.step-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1px solid var(--color-gray-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-sm);
  transition: transform 200ms cubic-bezier(0.4,0,0.2,1), border-color 200ms, box-shadow 200ms;
}
.step-circle span {
  font-family: var(--font-mono);
  font-size: 17px;
  font-weight: 500;
  color: var(--color-navy);
  opacity: 0.85;
}
.how-step:hover .step-circle {
  border-color: var(--color-orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.how-step:hover .step-circle span { color: var(--color-orange); opacity: 1; }
.step-body { padding-top: 14px; }
.step-body h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.step-body p {
  color: var(--color-navy);
  opacity: 0.72;
  font-size: 16px;
  line-height: 1.65;
  max-width: 460px;
}

@media (max-width: 960px) {
  .how-wrap { grid-template-columns: 1fr; gap: 48px; }
  .how-left h2 { font-size: 40px; }
  .how-illo { max-width: 320px; }
}

/* ==================== Features (bento grid) ==================== */
.features .container { max-width: 1320px; }
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(240px, auto);
  gap: 20px;
}
.bento {
  position: relative;
  border-radius: 18px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--color-gray-border);
  display: flex;
  flex-direction: column;
  transition: transform 220ms cubic-bezier(0.4,0,0.2,1), box-shadow 220ms;
  gap: 14px;
  min-height: 240px;
}
.bento:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.bento-xl   { grid-column: span 2; grid-row: span 2; min-height: 500px; }
.bento-wide { grid-column: span 2; grid-row: span 1; }
.bento-sm   { grid-column: span 1; grid-row: span 1; min-height: 260px; }

.bento-peach {
  background: linear-gradient(155deg, rgba(242,182,148,0.35), rgba(242,103,22,0.08));
  border-color: rgba(242,103,22,0.2);
}
.bento-peach-soft {
  background: rgba(242,182,148,0.2);
  border-color: rgba(242,103,22,0.15);
}
.bento-white { background: var(--color-white); }
.bento-navy {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
}
.bento-navy .bento-body h3 { color: var(--color-white); }
.bento-navy .bento-body p { color: rgba(255,255,255,0.75); opacity: 1; }

.bento-body { display: flex; flex-direction: column; gap: 8px; }
.bento-body h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--color-navy);
}
.bento-xl .bento-body h3 { font-size: 26px; }
.bento-body p {
  color: var(--color-navy);
  opacity: 0.72;
  font-size: 14.5px;
  line-height: 1.55;
  max-width: 440px;
}
.bento-navy .bento-body p { opacity: 1; }
.bento-body code {
  background: rgba(242,103,22,0.08);
  padding: 1px 6px;
  border-radius: 4px;
}
.bento-navy .bento-body code { background: rgba(242,103,22,0.2); }

.bento-tag {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-orange);
  background: rgba(242,103,22,0.12);
  padding: 4px 10px;
  border-radius: 9999px;
  margin-bottom: 4px;
}

/* Bento: emoji illustrations */
.bento-emoji {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 112px;
  height: 112px;
  filter: drop-shadow(0 8px 18px rgba(21,24,38,0.14));
  transition: transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  z-index: 1;
}
.bento:hover .bento-emoji { transform: translateY(-4px) rotate(-5deg) scale(1.04); }

.bento-emoji-xl {
  width: 160px;
  height: 160px;
  top: 28px;
  right: 28px;
  filter: drop-shadow(0 12px 28px rgba(21,24,38,0.2));
}

.bento-sm .bento-emoji {
  width: 88px;
  height: 88px;
  top: 20px;
  right: 20px;
}

.bento-body {
  position: relative;
  z-index: 1;
  padding-right: 120px;
}
.bento-xl .bento-body { padding-right: 170px; }
.bento-sm .bento-body { padding-right: 96px; }

/* Bento: Slash mini demo */
.bento-visual {
  margin-top: auto;
  background: var(--color-white);
  border: 1px solid var(--color-gray-border);
  border-radius: 12px;
  padding: 16px;
  box-shadow: var(--shadow-sm);
}
.mini-demo { font-size: 14px; }
.mini-input {
  padding: 8px 12px;
  border-bottom: 1px solid var(--color-gray-border);
  margin-bottom: 8px;
  color: var(--color-navy);
}
.mini-trigger {
  font-family: var(--font-mono);
  color: var(--color-orange);
  background: rgba(242,103,22,0.08);
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 500;
}
.mini-cursor {
  display: inline-block;
  width: 2px; height: 15px;
  background: var(--color-orange);
  vertical-align: middle;
  margin-left: 2px;
  animation: blink 1s infinite;
}
.mini-dd {
  display: flex; flex-direction: column; gap: 2px;
}
.mini-dd-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  border-radius: 6px;
  font-size: 13px;
}
.mini-dd-item.active { background: rgba(242,103,22,0.08); }
.mini-dd-item code {
  font-family: var(--font-mono);
  color: var(--color-orange);
  font-weight: 600;
}
.mini-dd-item span { color: var(--color-gray-medium); }
.mini-dd-item kbd {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-gray-medium);
  background: var(--color-gray-light);
  border: 1px solid var(--color-gray-border);
  padding: 1px 6px;
  border-radius: 4px;
}

/* Bento: Variables */
.bento-vars { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.var-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  background: rgba(242,103,22,0.08);
  border: 1px solid rgba(242,103,22,0.2);
  border-radius: 8px;
  font-size: 12.5px;
}
.var-chip code { color: var(--color-orange); background: transparent; padding: 0; }

/* Bento: Chips (works everywhere) */
.bento-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.bento-chips span {
  font-size: 12.5px;
  padding: 5px 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 9999px;
  color: rgba(255,255,255,0.9);
}
.bento-chips span:last-child {
  background: transparent;
  color: var(--color-peach);
  border-color: rgba(242,182,148,0.35);
}

/* Bento: Folders */
.bento-folders { display: flex; flex-direction: column; gap: 6px; margin-top: 6px; }
.folder-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: var(--color-white);
  border: 1px solid var(--color-gray-border);
  border-left: 3px solid var(--chip-color, var(--color-orange));
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--color-navy);
}
.folder-chip .dot-color {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--chip-color);
}

/* Bento: Analytics stat */
.bento-stat {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
}
.stat-n {
  font-size: 42px;
  font-weight: 800;
  color: var(--color-orange);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-unit { font-size: 22px; font-weight: 700; margin-left: 2px; }
.stat-label { font-size: 12.5px; color: var(--color-gray-medium); margin-top: 4px; }
.stat-spark { width: 120px; height: 40px; flex-shrink: 0; }

.stat-group {
  display: flex;
  align-items: flex-end;
  gap: 24px;
}
.stat-item { display: flex; flex-direction: column; }
.stat-divider {
  width: 1px;
  align-self: stretch;
  background: var(--color-gray-border);
  margin: 6px 0;
}

/* Import & export format chips */
.bento-formats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}
.format-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 10px;
  background: var(--color-white);
  border: 1px solid rgba(242,103,22,0.22);
  color: var(--color-navy);
  border-radius: 9999px;
}
.format-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-orange);
}
.format-file {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--color-orange);
  background: rgba(255,255,255,0.6);
}

/* Import & export: from/to rows */
.io-list {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(242,103,22,0.22);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: var(--color-navy);
}
.io-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
}
.io-dir {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-orange);
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(242,103,22,0.25);
  padding: 3px 8px;
  border-radius: 6px;
  min-width: 42px;
  text-align: center;
  flex-shrink: 0;
}
.io-mono {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--color-orange-warm);
}

@media (max-width: 960px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
  .bento, .bento-xl, .bento-wide, .bento-sm { grid-column: span 2; grid-row: auto; min-height: 200px; }
}
@media (max-width: 560px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento, .bento-xl, .bento-wide, .bento-sm { grid-column: span 1; }
}

/* ==================== AI Features (dark) ==================== */
.ai-dark {
  background: linear-gradient(160deg, #151826 0%, #1E2235 60%, #151826 100%);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}
.ai-dark::before {
  content: "";
  position: absolute;
  bottom: -200px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse at 50% 100%, rgba(242,103,22,0.2) 0%, rgba(242,103,22,0.08) 35%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.ai-dark::after {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(217,114,54,0.18) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.ai-dark .container { position: relative; z-index: 1; }

.eyebrow-light {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-peach);
  margin-bottom: 14px;
}

/* AI Features — card grid with mini illustrations */
.ai-features { padding: 110px 0; }
.ai-features .container { max-width: 1320px; }
.ai-features-head {
  max-width: 720px;
  margin: 0 0 56px;
}
.ai-features-head h2 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--color-white);
  margin: 0;
}

.ai-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ai-feature-card {
  background: rgba(30, 34, 53, 0.55);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: border-color 220ms, transform 220ms;
}
.ai-feature-card:hover {
  border-color: rgba(242,103,22,0.32);
  transform: translateY(-2px);
}
.ai-feature-icon {
  display: inline-flex;
  width: 22px; height: 22px;
  color: var(--color-orange);
  margin-bottom: 18px;
}
.ai-feature-icon svg { width: 100%; height: 100%; }
.ai-feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--color-white);
  margin: 0 0 12px;
  line-height: 1.25;
}
.ai-feature-card > p {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.6);
  margin: 0 0 28px;
}
.ai-feature-illo { margin-top: auto; }

/* Card 1 — Snippet preview */
.snippet-preview {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.snippet-preview-row code {
  font-family: var(--font-mono);
  color: var(--color-orange);
  font-size: 13.5px;
  font-weight: 600;
  background: rgba(242,103,22,0.1);
  padding: 3px 10px;
  border-radius: 6px;
}
.snippet-preview-meta {
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
}
.snippet-preview-avatars {
  display: flex;
  margin-top: 4px;
}
.mini-avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--bg, var(--color-orange));
  color: var(--color-white);
  font-size: 10px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #1A1D2E;
  margin-left: -6px;
  letter-spacing: 0.02em;
}
.mini-avatar:first-child { margin-left: 0; }
.mini-avatar-xs {
  width: 22px; height: 22px; font-size: 9.5px; border-width: 1px;
}
.snippet-preview-tag {
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

/* Card 2 — Inline rewrite (overlapping cards) */
.ai-feature-illo-rewrite {
  position: relative;
  height: 160px;
}
.rewrite-card-big {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 14px;
  width: 78%;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: transform 250ms cubic-bezier(0.4,0,0.2,1);
}
.ai-feature-card:hover .rewrite-card-big { transform: rotate(-2deg); }
.rewrite-card-author {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.rewrite-name {
  font-size: 12.5px;
  color: rgba(255,255,255,0.78);
  font-weight: 500;
}
.rewrite-time {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-left: auto;
}
.rewrite-lines {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-left: 30px;
}
.rewrite-lines .line {
  height: 6px;
  border-radius: 4px;
  background: rgba(255,255,255,0.1);
}
.rewrite-lines .line-60 { width: 60%; }
.rewrite-lines .line-50 { width: 50%; }
.rewrite-tool {
  display: inline-block;
  width: 16px; height: 16px;
  margin: 10px 0 0 30px;
  color: var(--color-orange);
}
.rewrite-tool svg { width: 100%; height: 100%; }
.rewrite-card-small {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  width: 36%;
  aspect-ratio: 3 / 5;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 250ms cubic-bezier(0.4,0,0.2,1);
}
.ai-feature-card:hover .rewrite-card-small { transform: rotate(2deg); }
.play-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
}
.play-icon svg { width: 14px; height: 14px; margin-left: 2px; }

/* Card 3 — Auto-reply chat */
.chat-prompt {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.chat-spark {
  width: 14px; height: 14px;
  display: inline-block;
  color: var(--color-peach);
}
.chat-spark svg { width: 100%; height: 100%; }
.chat-prompt p {
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  margin: 0;
}
.chat-input-mock {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chat-label {
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
}
.chat-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chat-controls-left { display: flex; gap: 6px; }
.chat-icon-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  padding: 0;
}
.chat-icon-btn svg { width: 13px; height: 13px; }
.chat-send {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--color-orange);
  color: var(--color-white);
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  padding: 0;
}
.chat-send svg { width: 13px; height: 13px; }

/* Card 4 — Custom prompts library */
.prompt-library {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 6px;
  display: flex;
  flex-direction: column;
}
.prompt-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13px;
  transition: background 180ms;
}
.prompt-row-active { background: rgba(242,103,22,0.1); }
.prompt-row code {
  font-family: var(--font-mono);
  color: var(--color-orange);
  font-weight: 600;
  font-size: 12.5px;
  min-width: 78px;
}
.prompt-row span {
  color: rgba(255,255,255,0.62);
  flex: 1;
}
.prompt-row kbd {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 1px 6px;
}

@media (max-width: 1100px) {
  .ai-features-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 640px) {
  .ai-features-grid { grid-template-columns: 1fr; gap: 16px; }
  .ai-features-head h2 { font-size: 34px; }
  .ai-features { padding: 80px 0; }
}

/* ==================== Pricing ==================== */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1140px;
  margin: 0 auto;
}
@media (max-width: 960px) {
  .price-grid { grid-template-columns: 1fr; }
}
.price-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-border);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 200ms cubic-bezier(0.4,0,0.2,1), box-shadow 200ms;
}
.price-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.price-card-pro {
  border-top: 4px solid var(--color-orange);
  box-shadow: 0 4px 24px rgba(242,103,22,0.12);
}
.pro-badge {
  position: absolute;
  top: -14px; right: 32px;
  background: var(--color-orange);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}
.price-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.price-head h3 { font-size: 22px; font-weight: 700; }
.price-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-orange);
  background: rgba(242,182,148,0.2);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.price-amount { display: flex; align-items: baseline; gap: 8px; margin-bottom: 12px; }
.price-n { font-size: 48px; font-weight: 800; letter-spacing: -0.02em; }
.price-per { color: var(--color-gray-medium); font-size: 15px; }
.price-sub { color: var(--color-navy); opacity: 0.7; font-size: 15px; margin-bottom: 24px; }
.price-list { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.price-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; line-height: 1.5; }
.price-list svg { width: 18px; height: 18px; color: var(--color-orange); flex-shrink: 0; margin-top: 2px; }

/* ==================== Pricing page ==================== */
.pricing-page {
  padding: 72px 0 40px;
  background: var(--color-white);
  position: relative;
  overflow: hidden;
}
.pricing-page::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(242,103,22,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.pricing-head {
  text-align: left;
  max-width: 820px;
  margin-bottom: 36px;
  position: relative;
}
.pricing-head h1 {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 6px 0 20px;
}
.pricing-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-navy);
  opacity: 0.7;
  max-width: 640px;
}

/* Billing switch */
.billing-switch {
  position: relative;
  display: inline-flex;
  padding: 5px;
  background: var(--color-gray-light);
  border: 1px solid var(--color-gray-border);
  border-radius: 9999px;
  margin-bottom: 48px;
  isolation: isolate;
}
.billing-switch button {
  position: relative;
  z-index: 1;
  padding: 10px 22px;
  border-radius: 9999px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-gray-medium);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 220ms cubic-bezier(0.4,0,0.2,1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.billing-switch button.active { color: var(--color-white); }
.billing-switch button:hover:not(.active) { color: var(--color-navy); }
.save-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 2px 8px;
  background: rgba(34,197,94,0.2);
  color: #16A34A;
  border-radius: 9999px;
  transition: background 220ms, color 220ms;
}
.billing-switch button.active .save-tag {
  background: rgba(255,255,255,0.22);
  color: var(--color-white);
}
.switch-glider {
  position: absolute;
  top: 5px; left: 5px;
  height: calc(100% - 10px);
  background: var(--color-orange);
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(242,103,22,0.35);
  transition: transform 320ms cubic-bezier(0.4,0,0.2,1), width 320ms cubic-bezier(0.4,0,0.2,1);
  z-index: 0;
  pointer-events: none;
}

/* Plan cards */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1140px;
  margin: 0 auto;
}
.plan-card {
  background: linear-gradient(160deg, rgba(242,182,148,0.22), rgba(242,182,148,0.08));
  border: 1px solid rgba(242,103,22,0.16);
  border-radius: 20px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: transform 220ms cubic-bezier(0.4,0,0.2,1), box-shadow 220ms;
}
.plan-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(21,24,38,0.08); }
.plan-card-highlight {
  background: linear-gradient(160deg, rgba(242,103,22,0.12), rgba(242,182,148,0.2));
  border: 1.5px solid rgba(242,103,22,0.4);
  box-shadow: 0 8px 28px rgba(242,103,22,0.12);
}
.plan-tag {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--color-orange);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 9999px;
}
.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 12px;
}
.plan-amount {
  font-size: 68px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--color-navy);
  font-variant-numeric: tabular-nums;
  transition: color 180ms;
}
.plan-period {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-navy);
  opacity: 0.7;
  letter-spacing: -0.01em;
}
.plan-name {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--color-navy);
  margin-bottom: 4px;
}
.plan-billing {
  font-size: 14px;
  color: var(--color-navy);
  opacity: 0.6;
  margin-bottom: 28px;
}
.plan-list {
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.plan-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-navy);
}
.plan-list em { font-style: normal; opacity: 0.55; font-size: 13px; margin-left: 4px; }
.plan-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--color-orange);
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.plan-check svg { width: 12px; height: 12px; }
.plan-cta { margin-top: auto; }

@media (max-width: 960px) {
  .pricing-head h1 { font-size: 44px; }
  .plan-grid { grid-template-columns: 1fr; max-width: 480px; }
}

/* ==================== Comparison Table ==================== */
.compare { padding-top: 64px; }
.compare-scroll {
  overflow-x: auto;
  border: 1px solid var(--color-gray-border);
  border-radius: 20px;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}
.compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 14.5px;
}
.compare-table thead th {
  padding: 24px 20px;
  text-align: center;
  font-weight: 600;
  color: var(--color-navy);
  border-bottom: 1px solid var(--color-gray-border);
  background: var(--color-white);
  position: sticky;
  top: 0;
}
.compare-table thead th:first-child { text-align: left; }
.compare-plan {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 4px 14px;
  border-radius: 9999px;
  background: var(--color-gray-light);
  color: var(--color-navy);
}
.compare-plan-pro {
  background: rgba(242,103,22,0.12);
  color: var(--color-orange);
}
.compare-table tbody th {
  text-align: left;
  font-weight: 500;
  color: var(--color-navy);
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-gray-border);
  width: 40%;
}
.compare-table tbody td {
  padding: 16px 20px;
  text-align: center;
  color: var(--color-navy);
  border-bottom: 1px solid var(--color-gray-border);
  font-variant-numeric: tabular-nums;
}
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody td em { font-style: normal; font-size: 12px; opacity: 0.55; margin-left: 4px; }
.compare-section-row td {
  padding: 18px 20px 10px !important;
  text-align: left !important;
  font-size: 11.5px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase;
  color: var(--color-orange) !important;
  background: rgba(242,103,22,0.04);
  border-bottom: 1px solid var(--color-gray-border) !important;
}
.compare-table td.yes::after {
  content: "";
  display: inline-block;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--color-orange) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/12px no-repeat;
  vertical-align: middle;
}
.compare-table td.yes em { vertical-align: middle; }
.compare-table td.no::after {
  content: "—";
  color: var(--color-gray-medium);
  font-size: 16px;
}
.compare-table tbody tr:hover th,
.compare-table tbody tr:hover td { background: rgba(242,103,22,0.03); }
.compare-label-col { width: 36%; }

@media (max-width: 720px) {
  .pricing-head h1 { font-size: 34px; }
  .compare { padding-top: 32px; }
  .compare-table { min-width: 600px; font-size: 13px; }
}

/* ==================== Reviews carousel ==================== */
.reviews { padding: 96px 0; overflow: hidden; }
.reviews-title {
  text-align: center;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--color-navy);
  margin-bottom: 56px;
}

.reviews-viewport {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0 -24px;
  padding: 160px 0 40px;
}
.reviews-viewport::-webkit-scrollbar { display: none; }

.reviews-track {
  display: flex;
  gap: 20px;
  padding: 0 max(24px, calc(50% - 540px));
  width: max-content;
}
.review-card {
  flex: 0 0 260px;
  scroll-snap-align: center;
  background: var(--color-white);
  border: 1px solid var(--color-gray-border);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 14px rgba(21,24,38,0.05);
  transform-origin: 50% 100%;
  transition: box-shadow 220ms;
  will-change: transform;
}
.review-card:hover { box-shadow: 0 10px 24px rgba(21,24,38,0.1); }

.review-tag {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.review-card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--color-navy);
  opacity: 0.72;
  margin-bottom: 20px;
  flex: 1;
}
.review-card code {
  font-size: 12px;
  padding: 1px 5px;
  background: rgba(242,103,22,0.08);
  border-radius: 4px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--color-gray-border);
}
.review-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--color-orange);
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 11.5px;
  flex-shrink: 0;
}
.review-author strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-navy);
  line-height: 1.3;
}
.review-author span {
  font-size: 12px;
  color: var(--color-gray-medium);
}

/* Nav */
.reviews-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}
.rev-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--color-gray-border);
  background: var(--color-white);
  color: var(--color-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 200ms, background 200ms, color 200ms, transform 200ms;
}
.rev-btn:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
  transform: translateY(-1px);
}
.rev-btn.rev-next {
  background: var(--color-orange);
  color: var(--color-white);
  border-color: var(--color-orange);
}
.rev-btn.rev-next:hover {
  background: var(--color-orange-warm);
  border-color: var(--color-orange-warm);
  color: var(--color-white);
}
.rev-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.reviews-dots {
  display: flex;
  gap: 5px;
  align-items: center;
}
.dot-dash {
  width: 14px;
  height: 2px;
  background: var(--color-gray-border);
  border-radius: 2px;
  transition: background 220ms, width 220ms;
}
.dot-dash.active {
  background: var(--color-orange);
  width: 22px;
}

@media (max-width: 720px) {
  .reviews-title { font-size: 28px; }
  .review-card { flex-basis: 240px; }
  .reviews-track { padding: 0 24px; }
}

/* ==================== Team page ==================== */
.team-page { padding: 56px 0 120px; background: var(--color-white); }

.team-page-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--color-navy);
  padding: 14px 0 0;
  margin-bottom: 56px;
}
.team-page-eyebrow,
.team-page-join {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.team-page-eyebrow { color: var(--color-orange); }
.team-page-join {
  color: var(--color-orange);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 150ms;
}
.team-page-join::after {
  content: '↗';
  font-family: inherit;
  font-size: 13px;
  letter-spacing: 0;
}
.team-page-join:hover { color: var(--color-orange-warm); }

.team-page-intro { max-width: 760px; margin: 0 0 88px; }
.team-page-intro h1 {
  font-size: 96px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--color-navy);
  margin: 0 0 18px;
}
.team-page-sub {
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-navy);
  opacity: 0.7;
  max-width: 460px;
}

.team-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: start;
}

.team-page-card {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.team-page-card.is-text-top {
  /* text first, photo below — creates the staggered/checker visual */
  flex-direction: column;
}
/* Default ordering when is-photo-top: photo, info */
/* For is-text-top, source order is already info, photo */

.team-page-photo {
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  background: var(--color-gray-light);
}
.team-page-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 700ms cubic-bezier(0.4,0,0.2,1);
}
.team-page-card:hover .team-page-photo img { transform: scale(1.04); }

.team-page-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 4px;
}

.team-page-role {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-orange);
}
.team-page-name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--color-navy);
  line-height: 1.15;
  text-transform: uppercase;
  margin: 2px 0 6px;
}
.team-page-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-navy);
  opacity: 0.65;
  margin: 0;
  max-width: 220px;
}

@media (max-width: 960px) {
  .team-page-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 28px; }
  .team-page-intro h1 { font-size: 72px; }
}
@media (max-width: 560px) {
  .team-page { padding: 40px 0 88px; }
  .team-page-grid { grid-template-columns: 1fr; gap: 40px; }
  .team-page-intro { margin-bottom: 56px; }
  .team-page-intro h1 { font-size: 48px; }
}

/* ==================== Contact page ==================== */
.contact-page { padding: 72px 0 96px; background: var(--color-white); }

.contact-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}
.contact-eyebrow {
  display: inline-block;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 18px;
}
.contact-head h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--color-navy);
  margin: 0 0 16px;
}
.contact-head > p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-navy);
  opacity: 0.65;
  margin: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1080px;
  margin: 0 auto;
}

/* LEFT: Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-field-label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-navy);
  opacity: 0.72;
}
.contact-field input,
.contact-field textarea {
  width: 100%;
  background: var(--color-white);
  border: 1px solid var(--color-gray-border);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14px;
  color: var(--color-navy);
  transition: border-color 180ms, box-shadow 180ms;
  resize: vertical;
}
.contact-field textarea { min-height: 110px; }
.contact-field input::placeholder,
.contact-field textarea::placeholder { color: var(--color-gray-medium); }
.contact-field input:focus,
.contact-field textarea:focus {
  outline: 0;
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(242,103,22,0.12);
}

.contact-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--color-navy);
  opacity: 0.75;
  margin: 6px 0 4px;
  cursor: pointer;
}
.contact-check input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: var(--color-navy);
  margin: 0;
  cursor: pointer;
}
.contact-check a {
  color: var(--color-navy);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.contact-check a:hover { color: var(--color-orange); }

.contact-submit {
  background: var(--color-orange);
  color: var(--color-white);
  border: 0;
  border-radius: 8px;
  padding: 14px 20px;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 180ms, transform 180ms;
}
.contact-submit:hover {
  background: var(--color-navy);
  transform: translateY(-1px);
}

.contact-alt {
  margin-top: 40px;
}
.contact-alt h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0 0 16px;
}
.contact-alt-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-alt-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-navy);
  font-size: 14px;
  transition: color 160ms;
}
.contact-alt-item:hover { color: var(--color-orange); }
.contact-alt-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--color-gray-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
  flex-shrink: 0;
}

/* RIGHT: Benefits + Locations */
.contact-benefits { margin-bottom: 40px; }
.contact-benefits h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0 0 18px;
}
.contact-benefits ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--color-navy);
  opacity: 0.78;
}
.contact-bullet-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--color-navy);
  color: var(--color-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-bullet-check svg { width: 12px; height: 12px; }

.contact-locations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
}
.contact-location {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-location-head {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-navy);
  font-size: 14px;
}
.contact-location-pin {
  color: var(--color-orange);
  display: inline-flex;
}
.contact-location-head strong {
  font-weight: 700;
  color: var(--color-navy);
}
.contact-location-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--color-navy);
  opacity: 0.7;
  padding-left: 22px;
}
.contact-location-role {
  font-weight: 600;
  opacity: 0.9;
}
.contact-location-body a {
  color: var(--color-navy);
  transition: color 160ms;
  word-break: break-word;
}
.contact-location-body a:hover { color: var(--color-orange); }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .contact-head h1 { font-size: 40px; }
}
@media (max-width: 520px) {
  .contact-locations { grid-template-columns: 1fr; }
  .contact-head h1 { font-size: 32px; }
  .contact-page { padding: 48px 0 72px; }
}

/* ==================== Blog page ==================== */
.blog-page { padding: 64px 0 96px; background: var(--color-white); }

.blog-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}
.blog-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-orange);
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}
.blog-intro h1 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--color-navy);
  margin: 0 0 14px;
}
.blog-intro > p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-navy);
  opacity: 0.68;
  margin: 0 0 28px;
}
.blog-search {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-white);
  border: 1px solid var(--color-gray-border);
  border-radius: 10px;
  padding: 10px 14px;
  width: min(340px, 100%);
  transition: border-color 180ms, box-shadow 180ms;
}
.blog-search:focus-within {
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(242,103,22,0.12);
}
.blog-search svg { color: var(--color-gray-medium); }
.blog-search input {
  border: 0;
  outline: 0;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  color: var(--color-navy);
  flex: 1;
  min-width: 0;
}
.blog-search input::placeholder { color: var(--color-gray-medium); }

.blog-filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  padding: 8px;
  background: var(--color-gray-light);
  border-radius: 12px;
}
.blog-tabs {
  display: flex;
  gap: 4px;
  flex: 1;
  flex-wrap: wrap;
}
.blog-tab {
  background: transparent;
  border: 0;
  padding: 8px 14px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--color-navy);
  opacity: 0.72;
  cursor: pointer;
  transition: background 160ms, color 160ms, opacity 160ms;
}
.blog-tab:hover { opacity: 1; background: rgba(21,24,38,0.04); }
.blog-tab.is-active {
  background: var(--color-white);
  opacity: 1;
  box-shadow: 0 1px 2px rgba(21,24,38,0.06);
}
.blog-sort-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-white);
  border: 1px solid var(--color-gray-border);
  border-radius: 8px;
  padding: 8px 14px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--color-navy);
  cursor: pointer;
  transition: border-color 160ms;
}
.blog-sort-btn:hover { border-color: var(--color-navy); }
.blog-sort-btn svg { color: var(--color-gray-medium); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 24px;
  margin-bottom: 48px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blog-card-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 4px;
  transition: transform 260ms cubic-bezier(0.4,0,0.2,1);
}
.blog-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.25), transparent 55%);
  pointer-events: none;
}
.blog-card:hover .blog-card-media { transform: translateY(-2px); }
.blog-card-arrow {
  position: absolute;
  top: 12px; right: 12px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  color: var(--color-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: background 180ms, transform 180ms;
}
.blog-card:hover .blog-card-arrow {
  background: var(--color-orange);
  color: var(--color-white);
  transform: translate(2px, -2px);
}

/* Media backgrounds — decorative gradient placeholders on brand */
.blog-media-1 { background:
  radial-gradient(circle at 80% 20%, rgba(255,255,255,0.35), transparent 40%),
  linear-gradient(135deg, #F26716 0%, #D97236 55%, #F2B694 100%);
}
.blog-media-2 { background:
  radial-gradient(circle at 25% 30%, rgba(242,182,148,0.35), transparent 45%),
  linear-gradient(145deg, #1E2235 0%, #151826 100%);
}
.blog-media-3 { background:
  radial-gradient(circle at 70% 75%, rgba(242,103,22,0.35), transparent 50%),
  linear-gradient(150deg, #F2F2F2 0%, #F2B694 100%);
}
.blog-media-4 { background:
  radial-gradient(circle at 20% 80%, rgba(255,255,255,0.4), transparent 45%),
  linear-gradient(120deg, #F2B694 0%, #F26716 100%);
}
.blog-media-5 { background:
  radial-gradient(circle at 75% 25%, rgba(242,103,22,0.3), transparent 50%),
  linear-gradient(135deg, #151826 0%, #F26716 140%);
}
.blog-media-6 { background:
  radial-gradient(circle at 30% 35%, rgba(242,182,148,0.5), transparent 50%),
  linear-gradient(155deg, #F2F2F2 0%, #E5E7EB 100%);
}

.blog-card-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 0;
  margin-top: 4px;
}
.tag-product      { color: var(--color-orange); }
.tag-productivity { color: #22C55E; }
.tag-engineering  { color: var(--color-navy); }
.tag-guides       { color: #D97236; }
.tag-case         { color: #9333EA; }

.blog-card h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--color-navy);
  margin: 2px 0 0;
}
.blog-card h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 160ms;
}
.blog-card h3 a:hover { color: var(--color-orange); }

.blog-card > p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-navy);
  opacity: 0.65;
  margin: 0;
}
.blog-card > p code {
  font-family: var(--font-mono);
  color: var(--color-orange);
  background: rgba(242,103,22,0.08);
  padding: 1px 5px;
  border-radius: 4px;
  font-size: 0.92em;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}
.blog-card-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--color-gray-light);
  flex-shrink: 0;
}
.blog-card-meta > div {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.blog-card-meta strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-navy);
}
.blog-card-meta span {
  font-size: 12px;
  color: var(--color-gray-medium);
}

/* Newsletter card in-grid */
.blog-newsletter {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--color-gray-border);
  border-radius: 14px;
  background: var(--color-white);
  box-shadow: 0 1px 2px rgba(21,24,38,0.03);
}
.bn-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(242,103,22,0.1);
  color: var(--color-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.blog-newsletter h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0;
}
.blog-newsletter > p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--color-navy);
  opacity: 0.7;
  margin: 0;
}
.bn-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
}
.bn-form input {
  border: 1px solid var(--color-gray-border);
  border-radius: 8px;
  padding: 9px 12px;
  font-family: inherit;
  font-size: 13.5px;
  color: var(--color-navy);
  background: var(--color-white);
  transition: border-color 160ms, box-shadow 160ms;
}
.bn-form input:focus {
  outline: 0;
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(242,103,22,0.12);
}
.bn-form button {
  background: var(--color-orange);
  color: var(--color-white);
  border: 0;
  border-radius: 8px;
  padding: 9px 14px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 160ms;
}
.bn-form button:hover { background: var(--color-orange-warm); }
.bn-legal {
  font-size: 12px;
  color: var(--color-gray-medium);
  margin: 2px 0 0;
}
.bn-legal a { color: var(--color-navy); text-decoration: underline; text-underline-offset: 2px; }
.bn-legal a:hover { color: var(--color-orange); }

/* Pagination */
.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--color-gray-border);
}
.pg-nav {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--color-gray-border);
  border-radius: 8px;
  padding: 8px 14px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--color-navy);
  cursor: pointer;
  transition: border-color 160ms, color 160ms;
}
.pg-nav:hover:not(:disabled) { border-color: var(--color-navy); }
.pg-nav:disabled { opacity: 0.4; cursor: not-allowed; }
.pg-numbers { display: flex; align-items: center; gap: 4px; }
.pg-num {
  background: transparent;
  border: 0;
  width: 34px; height: 34px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--color-navy);
  opacity: 0.68;
  cursor: pointer;
  transition: background 160ms, color 160ms, opacity 160ms;
}
.pg-num:hover { background: var(--color-gray-light); opacity: 1; }
.pg-num.is-active {
  background: var(--color-navy);
  color: var(--color-white);
  opacity: 1;
}
.pg-ellipsis {
  color: var(--color-gray-medium);
  padding: 0 4px;
}

@media (max-width: 960px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-intro h1 { font-size: 34px; }
  .blog-filters { flex-direction: column; align-items: stretch; }
  .blog-sort { align-self: flex-end; }
}
@media (max-width: 560px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-pagination { flex-direction: column; gap: 14px; }
  .blog-page { padding: 48px 0 64px; }
}

/* ==================== FAQ (2-col redesigned) ==================== */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.faq-head { position: sticky; top: 100px; }
.faq-head h2 {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 4px 0 16px;
}
.faq-head p {
  color: var(--color-navy);
  opacity: 0.7;
  font-size: 16px;
  line-height: 1.65;
  max-width: 380px;
}
.faq-head a {
  color: var(--color-orange);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}
.faq-list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  background: transparent;
  border: none;
  border-top: 1px solid var(--color-gray-border);
  border-radius: 0;
  box-shadow: none;
  transition: none;
}
.faq-item:last-child { border-bottom: 1px solid var(--color-gray-border); }
.faq-item[open] { border-color: var(--color-gray-border); box-shadow: none; }
.faq-item summary {
  list-style: none;
  padding: 22px 40px 22px 0;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  color: var(--color-navy);
  position: relative;
  transition: color 150ms;
}
.faq-item summary:hover { color: var(--color-orange); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary { color: var(--color-navy); }
.faq-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px; height: 24px;
  border: 1.25px solid var(--color-navy);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.55;
  transition: opacity 200ms, border-color 200ms;
}
.faq-item:hover .faq-icon { opacity: 1; border-color: var(--color-orange); }
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--color-navy);
  top: 50%; left: 50%;
  transition: transform 200ms, background 200ms;
}
.faq-item:hover .faq-icon::before, .faq-item:hover .faq-icon::after { background: var(--color-orange); }
.faq-icon::before { width: 10px; height: 1.5px; transform: translate(-50%,-50%); }
.faq-icon::after { width: 1.5px; height: 10px; transform: translate(-50%,-50%); }
.faq-item[open] .faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq-body { padding: 0 48px 22px 0; }
.faq-body p { color: var(--color-navy); opacity: 0.72; font-size: 15.5px; line-height: 1.7; }
.faq-body a { color: var(--color-orange); text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 960px) {
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-head { position: static; }
}

/* ==================== Trial + Newsletter ==================== */
.trial-cta {
  padding: 48px 0 80px;
  background: var(--color-white);
}
.nowrap { white-space: nowrap; }
.trial-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.trial-card {
  border-radius: 20px;
  padding: 44px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  background:
    radial-gradient(circle at 100% 0%, rgba(242,103,22,0.18), transparent 50%),
    linear-gradient(135deg, rgba(242,182,148,0.35), rgba(242,182,148,0.1));
  border: 1px solid rgba(242,103,22,0.22);
}
.trial-copy .eyebrow-dark { margin-bottom: 8px; }
.trial-copy h2 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 10px;
  max-width: 640px;
}
.trial-copy p {
  color: var(--color-navy);
  opacity: 0.72;
  font-size: 16px;
  max-width: 540px;
}
.trial-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.trial-note { font-size: 12.5px; color: var(--color-gray-medium); text-align: right; }

@media (max-width: 860px) {
  .trial-card { grid-template-columns: 1fr; padding: 36px 28px; gap: 24px; }
  .trial-actions { align-items: flex-start; }
  .trial-note { text-align: left; }
  .news-form input { width: 100%; }
}

/* ==================== Footer ==================== */
.footer-wrap {
  background: var(--color-navy);
  padding: 48px 16px 0;
}
.footer-card {
  background: var(--color-white);
  max-width: 1480px;
  margin: 0 auto;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  padding: 56px 60px 0;
  overflow: hidden;
  position: relative;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.15fr 1.8fr 1.15fr;
  gap: 56px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 0;
  border-bottom: none;
  align-items: start;
}
.footer-brand .nav-logo { color: var(--color-navy); }
.footer-brand .nav-logo .logo-key { color: var(--color-navy); }
.footer-brand > p {
  color: var(--color-gray-medium);
  font-size: 14.5px;
  line-height: 1.65;
  margin-top: 20px;
  max-width: 340px;
}
.footer-social {
  display: flex;
  gap: 18px;
  margin-top: 22px;
}
.footer-social a {
  color: var(--color-gray-medium);
  transition: color 150ms;
  display: inline-flex;
}

/* Footer newsletter column */
.footer-news {
  max-width: 380px;
}
.footer-news h5 {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 10px;
  letter-spacing: 0;
}
.footer-news > p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-gray-medium);
  margin-bottom: 18px;
  max-width: 340px;
}
.footer-news-form {
  display: flex;
  gap: 8px;
  position: relative;
}
.footer-news-form input {
  flex: 1;
  padding: 12px 14px;
  background: var(--color-gray-light);
  border: 1px solid var(--color-gray-border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  color: var(--color-navy);
  outline: none;
  min-width: 0;
  transition: border-color 150ms, background 150ms, box-shadow 150ms;
}
.footer-news-form input::placeholder { color: var(--color-gray-medium); }
.footer-news-form input:focus {
  background: var(--color-white);
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(242,103,22,0.12);
}
.footer-subscribe {
  padding: 12px 22px;
  background: var(--color-orange);
  color: var(--color-white);
  border-radius: 10px;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 150ms, transform 150ms;
  flex-shrink: 0;
}
.footer-subscribe:hover {
  background: var(--color-orange-warm);
  transform: translateY(-1px);
}
.footer-news-success {
  position: absolute;
  left: 0; top: calc(100% + 8px);
  font-size: 12.5px;
  color: var(--color-success);
  font-weight: 500;
  opacity: 0;
  transition: opacity 200ms;
}
.footer-news-success.show { opacity: 1; }
.footer-social a:hover { color: var(--color-navy); }

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h4 {
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li { line-height: 1.2; }
.footer-col a {
  color: var(--color-navy);
  font-size: 14px;
  opacity: 0.75;
  transition: opacity 150ms, color 150ms;
  display: inline;
}
.footer-col a:hover { opacity: 1; color: var(--color-orange); }
.footer-careers { display: flex; align-items: center; gap: 8px; }
.hiring-pill {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: 9999px;
  background: rgba(242,103,22,0.1);
  color: var(--color-orange);
  border: 1px solid rgba(242,103,22,0.25);
}

.footer-bottom-row {
  width: 100%;
  margin: 40px auto 0;
  padding: 24px 0;
  border-top: 1px solid var(--color-gray-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--color-gray-medium);
  gap: 24px;
  flex-wrap: wrap;
}
.footer-bottom-row p { margin: 0; }

.footer-legal {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-legal a {
  color: var(--color-navy);
  opacity: 0.72;
  font-size: 13px;
  font-weight: 500;
  transition: opacity 150ms, color 150ms;
}
.footer-legal a:hover { opacity: 1; color: var(--color-orange); }

.footer-giant {
  position: relative;
  margin-top: 16px;
  overflow: hidden;
  padding-bottom: 40px;
}
.footer-giant::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  margin: 0 auto;
  width: 100%;
  max-width: 780px;
  height: 70%;
  background: rgba(242,103,22,0.07);
  filter: blur(100px);
  pointer-events: none;
}
.footer-giant h1 {
  position: relative;
  font-family: var(--font-sans);
  font-size: clamp(3rem, 15vw, 14rem);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1.5px #D4D4D4;
  letter-spacing: -0.035em;
  user-select: none;
}

@media (max-width: 960px) {
  .footer-card { padding: 48px 24px 0; border-top-left-radius: 20px; border-top-right-radius: 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .footer-news { max-width: none; }
  .footer-news > p { max-width: none; }
  .footer-bottom-row { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 500px) {
  .footer-cols { grid-template-columns: 1fr; }
  .footer-news-form { flex-direction: column; align-items: stretch; }
  .footer-subscribe { width: 100%; }
}

/* ==================== Reveal animation ==================== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 600ms cubic-bezier(0.4,0,0.2,1), transform 600ms cubic-bezier(0.4,0,0.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ==================== Responsive (global) ==================== */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero h1 { font-size: 42px; }
  .demo-window { transform: none; }
}

@media (max-width: 960px) {
  .hero h1 { font-size: 48px; }
}

@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .hero { padding: 56px 0 64px; }
  .hero h1 { font-size: 36px; line-height: 1.08; }
  .hero-sub { font-size: 16px; }
  .trial-bullets { grid-template-columns: 1fr; gap: 10px; }
  .demo-body { height: auto; min-height: 380px; }
  .section-head h2 { font-size: 30px; }
  .how-left h2 { font-size: 34px; }
  .trial-copy h2 { font-size: 26px; }
  .faq-head h2 { font-size: 32px; }
  .price-grid { grid-template-columns: 1fr; }
  .nav-inner { gap: 16px; padding: 0 20px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--color-white);
    flex-direction: column;
    padding: 16px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--color-gray-border);
    justify-content: flex-start;
  }
  .nav-cta { padding: 8px 14px; font-size: 13px; }
  .nav-toggle { display: inline-flex; background: none; border: none; color: var(--color-navy); cursor: pointer; padding: 4px; }
  .btn-sm { padding: 8px 14px; font-size: 13px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
}
