/* ═══════════════════════════════════════════════════════════
   PreviewKit Pitch — Premium Design System
   Palette: Midcentury Touch
   Dusty Pink  #E8C9CF  · Dark Teal  #063737
   Terracotta  #A25524  · Olive Green #808000
   ═══════════════════════════════════════════════════════════ */

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  /* Midcentury palette */
  --teal: #063737;
  --teal-mid: #0d5c5c;
  --teal-light: #e6f0f0;
  --teal-faint: #f0f6f6;

  --terracotta: #A25524;
  --terra-mid: #c4692d;
  --terra-light: #faeee5;
  --terra-dark: #7a3f1a;

  --dusty-pink: #E8C9CF;
  --pink-light: #fdf4f5;
  --pink-mid: #d4a8af;

  --olive: #808000;
  --olive-light: #f5f5e0;
  --olive-mid: #a0a000;

  /* Neutrals — warm-tinted */
  --white: #ffffff;
  --bg: #faf8f6;
  --bg-subtle: #f4f0ec;
  --border: #e5ddd7;
  --border-light: #ede8e3;

  --ink: #1a1009;
  --ink-2: #3d2d1e;
  --ink-3: #7a6555;
  --ink-4: #b3a090;

  /* Aliases */
  --accent: var(--terracotta);
  --accent-light: var(--terra-light);
  --accent-dark: var(--terra-dark);
  --dark: var(--teal);

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 3px rgba(6, 55, 55, .07), 0 1px 2px rgba(6, 55, 55, .05);
  --shadow: 0 4px 20px rgba(6, 55, 55, .10), 0 1px 4px rgba(6, 55, 55, .06);
  --shadow-lg: 0 20px 60px rgba(6, 55, 55, .14), 0 4px 16px rgba(6, 55, 55, .08);
  --shadow-terra: 0 8px 32px rgba(162, 85, 36, .28);

  --ease-out: cubic-bezier(.22, .68, 0, 1.2);
  --ease-smooth: cubic-bezier(.4, 0, .2, 1);

  --nav-h: 64px;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ── Typography ─────────────────────────────────────────── */
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.section-headline {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -.03em;
  color: var(--ink);
}

.section-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--ink-3);
  line-height: 1.65;
  max-width: 600px;
}

/* ── Layout ─────────────────────────────────────────────── */
section {
  position: relative;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-inner {
  padding: 120px 0;
}

/* ── Progress Bar ───────────────────────────────────────── */
#pk-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--terracotta), var(--olive));
  z-index: 999;
  width: 0%;
  transition: width .1s linear;
}

/* ── Nav ────────────────────────────────────────────────── */
#pk-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 900;
  transition: background .35s, box-shadow .35s;
}

#pk-nav.scrolled {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px) saturate(1.6);
  -webkit-backdrop-filter: blur(18px) saturate(1.6);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

.nav-brand {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--white);
  transition: color .35s;
}

#pk-nav.scrolled .nav-brand {
  color: var(--teal);
}

.nav-brand span {
  color: var(--dusty-pink);
  transition: color .35s;
}

#pk-nav.scrolled .nav-brand span {
  color: var(--terracotta);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, .75);
  transition: color .25s;
}

.nav-links a:hover {
  color: white;
}

#pk-nav.scrolled .nav-links a {
  color: var(--ink-3);
}

#pk-nav.scrolled .nav-links a:hover {
  color: var(--teal);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: 999px;
  background: var(--terracotta);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -.01em;
  transition: background .2s, box-shadow .2s, transform .15s;
  box-shadow: var(--shadow-terra);
}

.nav-cta:hover {
  background: var(--terra-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 36px rgba(162, 85, 36, .35);
}

/* ── Hero — Split Layout with Case Carousel ─────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--teal);
}

/* Left pane — text */
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 60px) 56px 80px 80px;
  position: relative;
  z-index: 2;
  /* subtle diagonal gradient from teal to slightly lighter */
  background: linear-gradient(135deg, #063737 0%, #0a4a4a 100%);
}

/* Decorative corner accent */
.hero-left::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 60px;
  height: 60px;
  background: var(--white);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  opacity: 0;
}

/* Right pane — carousel */
.hero-right {
  position: relative;
  background: linear-gradient(160deg, #0a4a4a 0%, #042828 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Glowing orb behind case */
.hero-right::before {
  content: '';
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(162, 85, 36, .22) 0%, transparent 70%);
  z-index: 0;
}

/* Carousel wrapper */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  opacity: 0;
  transition: opacity 1s var(--ease-smooth), transform 1s var(--ease-smooth);
  transform: translateX(32px) scale(.97);
}

.hero-slide.active {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.hero-slide img {
  max-width: 100%;
  max-height: calc(100vh - 160px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 32px;
  box-shadow:
    0 0 0 1px rgba(232, 201, 207, .12),
    0 32px 80px rgba(0, 0, 0, .55),
    0 8px 24px rgba(0, 0, 0, .35);
  display: block;
  /* Subtle float animation */
  animation: case-float 6s ease-in-out infinite;
}

@keyframes case-float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-14px);
  }
}

/* Hero text content */
.hero-eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(232, 201, 207, .12);
  border: 1px solid rgba(232, 201, 207, .28);
  margin-bottom: 32px;
  width: fit-content;
}

.hero-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dusty-pink);
  animation: pulse-dot 2.2s ease-in-out infinite;
}

.hero-eyebrow-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--dusty-pink);
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .55;
    transform: scale(.78);
  }
}

.hero-headline {
  font-size: clamp(40px, 4.5vw, 72px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -.04em;
  color: #ffffff;
  margin-bottom: 24px;
}

.hero-headline em {
  font-style: normal;
  color: var(--dusty-pink);
}

.hero-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(255, 255, 255, .6);
  line-height: 1.65;
  margin-bottom: 44px;
  max-width: 420px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Carousel dots — bottom of right pane */
.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .08);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .18);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
  backdrop-filter: blur(14px);
  z-index: 4;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, .16);
  border-color: rgba(255, 255, 255, .42);
  transform: translateY(-50%) scale(1.04);
}

.hero-arrow:focus-visible {
  outline: 2px solid rgba(232, 201, 207, .7);
  outline-offset: 4px;
}

.hero-arrow-prev {
  left: 28px;
}

.hero-arrow-next {
  right: 28px;
}

.hero-arrow-prev svg {
  transform: rotate(180deg);
}

.hero-dot.active {
  background: var(--dusty-pink);
  width: 20px;
  border-radius: 3px;
}

/* Mobile hero — stack vertically */
@media (max-width: 960px) {
  #hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    min-height: 100vh;
  }

  .hero-left {
    order: 2;
    padding: calc(var(--nav-h) + 40px) 24px 40px;
    background: linear-gradient(180deg, #063737 0%, #0a4a4a 100%);
  }

  .hero-right {
    order: 1;
    min-height: 62vw;
    max-height: 68vw;
  }

  .hero-slide img {
    max-height: 62vw;
    border-radius: 20px;
  }

  .hero-arrow {
    width: 44px;
    height: 44px;
  }

  .hero-arrow-prev {
    left: 16px;
  }

  .hero-arrow-next {
    right: 16px;
  }

  .hero-headline {
    font-size: clamp(36px, 8vw, 52px);
  }

  .hero-sub {
    font-size: 15px;
  }
}

/* ── Buttons ────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--terracotta);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.01em;
  transition: background .2s, box-shadow .2s, transform .15s;
  box-shadow: var(--shadow-terra);
}

.btn-primary:hover {
  background: var(--terra-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(162, 85, 36, .38);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, .35);
  color: rgba(255, 255, 255, .85);
  font-size: 15px;
  font-weight: 500;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(8px);
  transition: border-color .2s, background .2s, transform .15s;
}

.btn-secondary:hover {
  border-color: rgba(232, 201, 207, .6);
  color: white;
  background: rgba(232, 201, 207, .12);
  transform: translateY(-1px);
}

/* ── Section: Trust Strip ───────────────────────────────── */
#trust {
  background: var(--bg);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 20px 0;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-3);
  white-space: nowrap;
}

.trust-check {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  flex-shrink: 0;
}

.trust-label {
  letter-spacing: 0.01em;
}

/* ── Section: Problem ───────────────────────────────────── */
#problem {
  background: var(--bg);
  border-top: 1px solid var(--border-light);
}

.problem-header {
  margin-bottom: 64px;
}

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

.problem-card {
  padding: 36px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform .3s var(--ease-smooth), box-shadow .3s;
}

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

.problem-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--pink-light);
  border: 1px solid var(--dusty-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--terracotta);
}

.problem-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--teal);
  margin-bottom: 10px;
}

.problem-body {
  font-size: 15px;
  color: var(--ink-3);
  line-height: 1.65;
}

/* ── Section: Solution ──────────────────────────────────── */
#solution {
  background: var(--white);
}

.solution-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}

.solution-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.pillar {
  padding: 40px 32px;
  background: var(--white);
  transition: background .25s;
}

.pillar:hover {
  background: var(--teal-faint);
}

.pillar-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--olive);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.pillar-label {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--teal);
  margin-bottom: 10px;
}

.pillar-sub {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.6;
}

/* ── Section: How It Works ──────────────────────────────── */
#how-it-works {
  background: var(--teal);
  color: white;
  overflow: hidden;
}

#how-it-works .eyebrow {
  color: var(--dusty-pink);
}

#how-it-works .section-headline {
  color: white;
}

.how-header {
  margin-bottom: 72px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(12.5% + 14px);
  right: calc(12.5% + 14px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 201, 207, .3) 10%, rgba(232, 201, 207, .3) 90%, transparent);
}

.step {
  padding: 0 24px 0 0;
}

.step-num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(232, 201, 207, .25);
  background: rgba(232, 201, 207, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--dusty-pink);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.step-label {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: white;
  margin-bottom: 12px;
}

.step-body {
  font-size: 14px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.65;
}

/* ── Section: Impact ────────────────────────────────────── */
#impact {
  background: var(--white);
}

.impact-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 80px;
}

.impact-stat {
  padding: 48px 36px;
  background: var(--bg);
  text-align: center;
  transition: background .25s;
}

.impact-stat:hover {
  background: var(--teal-faint);
}

.stat-value {
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
  color: var(--teal);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.stat-unit {
  font-size: .48em;
  font-weight: 700;
  color: var(--terracotta);
}

.stat-label {
  font-size: 14px;
  color: var(--ink-3);
  font-weight: 500;
  margin-top: 10px;
}

.buyer-header {
  text-align: center;
  margin-bottom: 48px;
}

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

.buyer-card {
  padding: 36px 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform .3s var(--ease-smooth), box-shadow .3s, background .25s;
}

.buyer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  background: white;
}

.buyer-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-bottom: 18px;
}

.buyer-label {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--teal);
  margin-bottom: 8px;
}

.buyer-body {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.65;
}

/* ── Section: Comparison ────────────────────────────────── */
#comparison {
  background: var(--bg);
  border-top: 1px solid var(--border-light);
}

.comparison-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: white;
}

.comparison-table th {
  padding: 20px 28px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--bg-subtle);
  color: var(--ink-3);
  border-bottom: 1px solid var(--border);
}

.comparison-table th:not(:first-child) {
  text-align: center;
}

.comparison-table th:last-child {
  background: var(--teal);
  color: var(--dusty-pink);
}

.comparison-table td {
  padding: 18px 28px;
  font-size: 14px;
  border-bottom: 1px solid var(--border-light);
  vertical-align: middle;
}

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

.comparison-table tr:hover td {
  background: var(--teal-faint);
}

.comparison-table td:first-child {
  font-weight: 600;
  color: var(--ink-2);
}

.comparison-table td:nth-child(2) {
  text-align: center;
  color: var(--ink-3);
}

.td-before {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.td-before::before {
  content: '✕';
  color: var(--pink-mid);
  font-weight: 700;
  font-size: 12px;
}

.td-after {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--olive);
}

.td-after::before {
  content: '✓';
  font-weight: 800;
  font-size: 14px;
  color: var(--teal);
}

.comparison-table td:last-child {
  text-align: center;
  background: rgba(6, 55, 55, .03);
}

/* ── Section: Infrastructure ────────────────────────────── */
#infrastructure {
  background: var(--white);
}

.infra-header {
  max-width: 640px;
  margin-bottom: 72px;
}

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

.infra-card {
  padding: 44px 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  position: relative;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s, transform .3s var(--ease-smooth);
}

.infra-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--terracotta));
  opacity: 0;
  transition: opacity .3s;
}

.infra-card:hover {
  border-color: var(--teal-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.infra-card:hover::before {
  opacity: 1;
}

.infra-index {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 20px;
}

.infra-label {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--teal);
  margin-bottom: 14px;
}

.infra-body {
  font-size: 15px;
  color: var(--ink-3);
  line-height: 1.65;
}

/* ── Section: Contact ───────────────────────────────────── */
#contact {
  background: var(--bg);
  border-top: 1px solid var(--border-light);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.contact-left {
  position: sticky;
  top: 120px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: -.01em;
}

.form-field input,
.form-field textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--teal-mid);
  box-shadow: 0 0 0 3px rgba(6, 55, 55, .10);
}

.form-field textarea {
  min-height: 120px;
}

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

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 999px;
  background: var(--terracotta);
  color: white;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.01em;
  transition: background .2s, box-shadow .2s, transform .15s;
  box-shadow: var(--shadow-terra);
  cursor: pointer;
  border: none;
  font-family: inherit;
  width: fit-content;
  margin-top: 4px;
}

.form-submit:hover {
  background: var(--terra-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(162, 85, 36, .32);
}

.contact-email-note {
  margin-top: 24px;
  font-size: 13px;
  color: var(--ink-4);
}

.contact-email-note a {
  color: var(--terracotta);
  font-weight: 500;
}

/* ── Footer ─────────────────────────────────────────────── */
#pk-footer {
  background: var(--teal);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.04em;
  color: white;
}

.footer-brand span {
  color: var(--dusty-pink);
}

.footer-tagline {
  font-size: 13px;
  color: rgba(232, 201, 207, .45);
  margin-top: 4px;
}

.footer-email {
  font-size: 14px;
  color: rgba(255, 255, 255, .45);
  transition: color .2s;
}

.footer-email:hover {
  color: var(--dusty-pink);
}

/* ── Scroll Reveal ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease-smooth), transform .7s var(--ease-smooth);
}

.reveal.reveal-left {
  transform: translateX(-32px);
}

.reveal.reveal-right {
  transform: translateX(32px);
}

.reveal.reveal-scale {
  transform: scale(.96) translateY(16px);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: .1s;
}

.reveal-delay-2 {
  transition-delay: .2s;
}

.reveal-delay-3 {
  transition-delay: .3s;
}

.reveal-delay-4 {
  transition-delay: .4s;
}

.reveal-delay-5 {
  transition-delay: .5s;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — Tablet (≤960px)
   ══════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .container {
    padding: 0 24px;
  }

  .section-inner {
    padding: 72px 0;
  }

  /* Nav */
  .nav-links {
    display: none;
  }

  /* Hero — stack vertically, image first */
  #hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: 100vh;
  }

  .hero-left {
    order: 2;
    padding: 36px 32px 56px;
    background: linear-gradient(180deg, #063737 0%, #042828 100%);
    text-align: center;
    align-items: center;
  }

  .hero-eyebrow-badge {
    margin: 0 auto 24px;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

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

  .hero-right {
    order: 1;
    min-height: 52vw;
    max-height: 58vw;
  }

  /* Grids */
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .solution-pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }

  .steps-grid::before {
    display: none;
  }

  .impact-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .buyer-values {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .infra-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-left {
    position: static;
  }

  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — Mobile (≤600px) — Consumer grade
   ══════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  :root {
    --nav-h: 56px;
  }

  .container {
    padding: 0 20px;
  }

  .section-inner {
    padding: 56px 0;
  }

  /* ── Nav ── */
  #pk-nav.scrolled {
    background: rgba(255, 255, 255, .96);
  }

  .nav-brand {
    font-size: 16px;
  }

  /* Nav CTA — compact pill, never overflow */
  .nav-cta {
    padding: 8px 14px;
    font-size: 13px;
    gap: 4px;
    white-space: nowrap;
  }

  .nav-cta svg {
    display: none;
  }

  /* hide arrow on tiny screens */

  /* ── Hero ── */
  #hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: 100svh;
    /* use svh so browser chrome doesn't clip */
  }

  /* Image pane — tall enough to really show the case */
  .hero-right {
    order: 1;
    min-height: 72vw;
    max-height: 80vw;
    background: linear-gradient(180deg, #063737 0%, #042424 100%);
  }

  .hero-slide {
    padding: 24px 28px;
  }

  .hero-slide img {
    max-height: 72vw;
    border-radius: 20px;
    box-shadow:
      0 0 0 1px rgba(232, 201, 207, .15),
      0 24px 56px rgba(0, 0, 0, .6);
  }

  /* Remove float on mobile — causes layout jank */
  .hero-slide img {
    animation: none;
  }

  /* Dots */
  .hero-dots {
    bottom: 12px;
    gap: 6px;
  }

  .hero-dot {
    width: 5px;
    height: 5px;
  }

  .hero-dot.active {
    width: 16px;
  }

  /* Text pane */
  .hero-left {
    order: 2;
    padding: 32px 20px 52px;
    text-align: left;
    align-items: flex-start;
    background: #063737;
  }

  .hero-eyebrow-badge {
    margin-bottom: 20px;
  }

  .hero-headline {
    font-size: clamp(36px, 9.5vw, 48px);
    margin-bottom: 16px;
  }

  .hero-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, .65);
    margin-bottom: 32px;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    justify-content: center;
    padding: 15px 20px;
    font-size: 15px;
    border-radius: 14px;
    /* softer on mobile */
  }

  /* ── Typography ── */
  .section-headline {
    font-size: clamp(28px, 8vw, 40px);
  }

  .section-sub {
    font-size: 15px;
  }

  .eyebrow {
    font-size: 10px;
  }

  /* ── Problem ── */
  #problem .section-inner {
    padding: 52px 0;
  }

  .problem-header {
    margin-bottom: 36px;
  }

  .problem-card {
    padding: 24px 20px;
    border-radius: var(--radius);
  }

  .problem-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
  }

  .problem-title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .problem-body {
    font-size: 14px;
  }

  /* ── Solution ── */
  .solution-header {
    margin-bottom: 36px;
  }

  .solution-pillars {
    grid-template-columns: 1fr;
    gap: 2px;
    border-radius: var(--radius);
  }

  .pillar {
    padding: 24px 20px;
  }

  .pillar-label {
    font-size: 17px;
  }

  /* ── How It Works ── */
  .how-header {
    margin-bottom: 40px;
  }

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

  /* Vertical connector line between steps */
  .step {
    display: grid;
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto auto;
    gap: 0 16px;
    padding: 0 0 32px 0;
    position: relative;
  }

  /* Vertical line */
  .step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 21px;
    top: 44px;
    bottom: 0;
    width: 1px;
    background: rgba(232, 201, 207, .2);
  }

  .step-num {
    width: 44px;
    height: 44px;
    font-size: 11px;
    margin-bottom: 0;
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: start;
    flex-shrink: 0;
  }

  .step-label {
    font-size: 17px;
    margin-bottom: 6px;
    grid-column: 2;
    grid-row: 1;
  }

  .step-body {
    font-size: 14px;
    grid-column: 2;
    grid-row: 2;
  }

  /* ── Impact stats ── */
  .impact-header {
    margin-bottom: 36px;
  }

  .impact-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    margin-bottom: 52px;
    border-radius: var(--radius);
  }

  .impact-stat {
    padding: 28px 16px;
  }

  .stat-value {
    font-size: clamp(36px, 10vw, 52px);
  }

  .stat-label {
    font-size: 12px;
  }

  .buyer-header {
    margin-bottom: 28px;
  }

  .buyer-header .section-headline {
    font-size: clamp(22px, 7vw, 32px);
  }

  .buyer-card {
    padding: 22px 18px;
    border-radius: var(--radius);
  }

  .buyer-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 14px;
  }

  .buyer-label {
    font-size: 15px;
  }

  .buyer-body {
    font-size: 13px;
  }

  /* ── Comparison table — horizontal scroll ── */
  #comparison .section-inner {
    padding: 52px 0;
  }

  .comparison-header {
    margin-bottom: 32px;
  }

  .comparison-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    /* hint that it scrolls */
    background:
      linear-gradient(to right, white 30%, rgba(255, 255, 255, 0)),
      linear-gradient(to right, rgba(255, 255, 255, 0), white 70%) right;
    background-color: white;
  }

  .comparison-table {
    min-width: 520px;
    box-shadow: none;
    border-radius: 0;
  }

  .comparison-table th {
    padding: 14px 16px;
    font-size: 10px;
  }

  .comparison-table td {
    padding: 13px 16px;
    font-size: 13px;
  }

  /* ── Infrastructure ── */
  .infra-header {
    margin-bottom: 36px;
  }

  .infra-card {
    padding: 28px 22px;
    border-radius: var(--radius);
  }

  .infra-label {
    font-size: 18px;
  }

  .infra-body {
    font-size: 14px;
  }

  /* ── Contact ── */
  .contact-inner {
    gap: 32px;
  }

  .contact-left .section-headline {
    font-size: clamp(28px, 8vw, 40px);
  }

  .contact-left .section-sub {
    font-size: 15px;
  }

  .contact-email-note {
    margin-top: 16px;
  }

  .form-field input,
  .form-field textarea {
    font-size: 16px;
    /* prevents iOS zoom on focus */
    padding: 13px 14px;
  }

  .form-submit {
    width: 100%;
    justify-content: center;
    padding: 15px;
    border-radius: 14px;
  }

  /* ── Footer ── */
  #pk-footer {
    padding: 36px 0;
  }

  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-brand {
    font-size: 15px;
  }

  .footer-tagline {
    font-size: 12px;
  }

  .footer-email {
    font-size: 13px;
  }
}


/* ═══════════════════════════════════════════════════════
   DEMO SECTION — PREMIUM
   ═══════════════════════════════════════════════════════ */

#demo {
  background: var(--bg);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

/* HEADER */
.demo-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

#demo .section-sub {
  margin: 0 auto;
}

/* GRID */
.demo-ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

/* COLUMN */
.demo-ba-col {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* LABEL */
.demo-ba-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-3);
}

.demo-ba-col.is-before .demo-ba-label {
  color: var(--ink-3);
}

.demo-ba-col.is-after .demo-ba-label {
  color: var(--teal);
}

.demo-ba-label-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.demo-ba-col.is-before .demo-ba-label-dot {
  background: var(--pink-mid);
}

.demo-ba-col.is-after .demo-ba-label-dot {
  background: var(--teal-mid);
}

/* WINDOW */
.demo-window {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  transition: box-shadow .3s var(--ease-smooth), transform .3s var(--ease-smooth);
}

.demo-window:hover {
  box-shadow: 0 32px 80px rgba(6, 55, 55, .18), 0 4px 16px rgba(6, 55, 55, .08);
  transform: translateY(-4px);
}

.demo-ba-col.is-after .demo-window {
  border-color: rgba(6, 55, 55, .18);
}

/* FAKE BROWSER TOP */
.demo-chrome {
  height: 40px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border-light);
  gap: 0;
  flex-shrink: 0;
}

.demo-chrome-dots {
  display: flex;
  gap: 6px;
}

.demo-chrome-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.demo-chrome-dots span:nth-child(1) { background: #ff5f57; }
.demo-chrome-dots span:nth-child(2) { background: #febc2e; }
.demo-chrome-dots span:nth-child(3) { background: #28c840; }

.demo-chrome-bar {
  margin-left: 14px;
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-4);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 3px 10px;
  flex: 1;
  max-width: 260px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* VIDEO WRAP */
.demo-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--teal);
  overflow: hidden;
}

/* VIDEO */
.demo-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* PLAY OVERLAY */
.demo-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 55, 55, .32);
  transition: opacity .35s var(--ease-smooth);
  cursor: pointer;
}

.demo-play-overlay.is-playing {
  opacity: 0;
  pointer-events: none;
}

/* PLAY BUTTON */
.demo-play-btn {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .95);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .28);
  transition: transform .2s var(--ease-out), background .2s;
}

.demo-play-btn:hover {
  transform: scale(1.08);
  background: #fff;
}

.demo-play-btn svg {
  width: 22px;
  height: 22px;
  fill: var(--teal);
}

.demo-play-btn.is-playing svg.icon-play { display: none; }
.demo-play-btn:not(.is-playing) svg.icon-pause { display: none; }

/* SHOPIFY STRIP */
.demo-shopify-strip {
  margin-top: 88px;
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding: 56px 48px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.demo-shopify-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--terracotta));
}

.demo-shopify-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--terracotta);
}

.demo-shopify-headline {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--teal);
  margin-bottom: 14px;
  line-height: 1.15;
}

.demo-shopify-headline em {
  font-style: normal;
  color: var(--terracotta);
}

.demo-shopify-sub {
  font-size: 15px;
  color: var(--ink-3);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.demo-shopify-code {
  background: var(--teal);
  color: rgba(232, 201, 207, .9);
  padding: 24px 28px;
  border-radius: var(--radius);
  text-align: left;
  font-size: 13px;
  font-family: "SF Mono", "Fira Code", "Cascadia Code", Consolas, monospace;
  overflow-x: auto;
  line-height: 1.7;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 4px 16px rgba(6,55,55,.2);
}

.demo-shopify-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 14px 28px;
  background: var(--terracotta);
  color: #fff;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.01em;
  box-shadow: var(--shadow-terra);
  transition: background .2s, box-shadow .2s, transform .15s;
}

.demo-shopify-cta:hover {
  background: var(--terra-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(162, 85, 36, .38);
}

/* MOBILE */
@media (max-width: 768px) {
  .demo-ba-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .demo-shopify-strip {
    padding: 36px 24px;
    border-radius: var(--radius-lg);
    margin-top: 56px;
  }
}

/* ══════════════════════════════════════════════════════════
   PRICING
   ══════════════════════════════════════════════════════════ */

#pricing {
  background: var(--teal);
  padding: 100px 0 80px;
}

#pricing .eyebrow {
  color: var(--dusty-pink);
}

#pricing .section-headline {
  color: #fff;
}

.pricing-header {
  text-align: center;
  margin-bottom: 56px;
}

.pricing-toggle-wrap {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 4px;
  margin-top: 28px;
  gap: 2px;
}

.pricing-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 22px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: rgba(255,255,255,.55);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, color .2s;
  font-family: inherit;
  letter-spacing: -.01em;
}

.pricing-toggle-btn.active {
  background: rgba(255,255,255,.13);
  color: #fff;
}

.pricing-toggle-btn:hover:not(.active) {
  color: rgba(255,255,255,.8);
}

.pricing-toggle-save {
  background: var(--terracotta);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.pricing-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
  box-sizing: border-box;
  transition: transform .2s, box-shadow .2s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
}

.pricing-card--popular {
  background: rgba(255,255,255,.11);
  border-color: rgba(255,255,255,.22);
  padding-top: 44px;
}

.pricing-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--terracotta);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 10px;
}

.pricing-price {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  margin-bottom: 12px;
  line-height: 1;
}

.pricing-currency {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  align-self: flex-start;
  margin-top: 6px;
}

.pricing-amount {
  font-size: 58px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.03em;
  line-height: 1;
}

.pricing-period {
  font-size: 15px;
  color: rgba(255,255,255,.5);
  margin-bottom: 8px;
}

.pricing-orders {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 13px;
  color: rgba(255,255,255,.7);
  margin-bottom: 16px;
  width: fit-content;
}

.pricing-orders svg {
  flex-shrink: 0;
  opacity: .7;
}

.pricing-desc {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.55;
  margin-bottom: 20px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,.8);
  line-height: 1.45;
}

.pricing-features li svg {
  flex-shrink: 0;
  color: var(--terracotta);
  margin-top: 1px;
}

.pricing-cta {
  display: block;
  text-align: center;
  padding: 13px 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, border-color .2s, transform .15s;
  background: transparent;
}

.pricing-cta:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.4);
  transform: translateY(-1px);
}

.pricing-cta--primary {
  background: var(--terracotta);
  border-color: var(--terracotta);
  box-shadow: var(--shadow-terra);
}

.pricing-cta--primary:hover {
  background: var(--terra-dark);
  border-color: var(--terra-dark);
  box-shadow: 0 12px 40px rgba(162,85,36,.45);
}

.pricing-overage {
  margin-top: 32px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.pricing-overage-label {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.pricing-overage-sub {
  font-size: 14px;
  color: rgba(255,255,255,.5);
}

.pricing-overage-rate {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  white-space: nowrap;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 8px 18px;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .pricing-overage {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}