:root {
  --primary: #1a73e8;
  --primary-hover: #1f7bf0;
  --primary-dark: #1666d5;
  --chip-blue: #0b74ff;
  --ink: #0f172a;
  --bg-deep: #020617;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 12% 8%, #0f172a 0, #0b1328 38%, #020617 68%);
  background-attachment: fixed;
  padding: 48px 24px 64px;
  display: flex;
  justify-content: center;
}

/* 25% zoom for desktop (1.25x scale) */
@media (min-width: 1024px) {
  body {
    zoom: 125%;
  }
}

.page {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(140% 160% at 0% 0%, rgba(255, 255, 255, 0.12), transparent 62%),
    linear-gradient(145deg, rgba(15, 23, 42, 0.76), rgba(15, 23, 42, 0.9));
  backdrop-filter: blur(16px) saturate(1.2);
  box-shadow:
    0 14px 38px rgba(15, 23, 42, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #1a73e8;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 2px 8px rgba(26, 115, 232, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  align-items: center;
}

.logo-text span {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1px;
  color: #e5f0ff;
  line-height: 1;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 18px;
  padding: 0 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--chip-blue);
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.52)),
    linear-gradient(135deg, rgba(59, 130, 246, 0.14), rgba(14, 165, 233, 0.14));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  letter-spacing: 0.15px;
  white-space: nowrap;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.16);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.16);
  cursor: pointer;
  transform: translateY(0);
  transition:
    transform 140ms ease,
    box-shadow 140ms ease,
    background 140ms ease,
    border-color 140ms ease,
    color 140ms ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-0.5px);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.22);
}

.btn-primary {
  background-image: linear-gradient(145deg, var(--primary), var(--primary-dark));
  border-color: var(--primary);
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-primary:hover {
  background-image: linear-gradient(145deg, var(--primary-hover), #1866cf);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(26, 115, 232, 0.24);
  color: #0f274f;
}

.btn-ghost:hover {
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.24);
  border-color: rgba(37, 99, 235, 0.5);
}

.main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero {
  width: 100%;
}

.hero-shell {
  padding: 18px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.glass-card {
  position: relative;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background-image:
    radial-gradient(120% 120% at 10% 0%, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.05) 45%, rgba(255, 255, 255, 0.02)),
    linear-gradient(145deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08));
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px) saturate(1.25);
  box-shadow:
    0 14px 44px rgba(15, 23, 42, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  padding: 18px 18px 20px;
  color: var(--ink);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  max-width: 560px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(15, 23, 42, 0.95);
}

.hero-kicker span.label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
}

h1 {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.1px;
  color: #0a0f1a;
}

.hero-sub {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  color: rgba(15, 23, 42, 0.98);
  line-height: 1.5;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.hero-footnote {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(15, 23, 42, 0.92);
}

.model-benefit {
  margin-top: 4px;
  padding: 10px 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px) saturate(1.1);
  box-shadow:
    0 8px 20px rgba(15, 23, 42, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.model-benefit-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(15, 23, 42, 0.88);
}

.model-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  padding: 16px 0;
  height: 60px;
  background: 
    linear-gradient(110deg, 
      rgba(59, 130, 246, 0.22) 0%, 
      rgba(147, 51, 234, 0.24) 25%,
      rgba(236, 72, 153, 0.22) 50%,
      rgba(14, 165, 233, 0.24) 75%,
      rgba(59, 130, 246, 0.22) 100%
    );
  background-size: 200% 100%;
  animation: shimmer 10s linear infinite;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 6px 16px rgba(15, 23, 42, 0.18);
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  display: flex;
  align-items: center;
}

@keyframes shimmer {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

.model-track {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 16px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 45s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
}

.model-track-dup {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .model-track,
  .model-track-dup {
    animation: none;
    transform: translate3d(0, 0, 0);
  }
  .model-carousel {
    animation: none;
  }
}

.model-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  min-height: 32px;
  color: rgba(15, 23, 42, 0.95);
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.35)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.48), rgba(226, 232, 240, 0.42));
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 2px 10px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(14px) saturate(1.5);
  -webkit-backdrop-filter: blur(14px) saturate(1.5);
  text-align: center;
  white-space: nowrap;
  flex-shrink: 0;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}

.model-benefit-sub {
  margin: 6px 0 0;
  font-size: 10.5px;
  color: rgba(15, 23, 42, 0.7);
}

@keyframes marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes bg-shift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-6%, 4%, 0) scale(1.05);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-gmail-shell {
  position: relative;
  padding: 12px 12px 10px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow:
    0 20px 60px rgba(15, 23, 42, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.gmail-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.gmail-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(148, 163, 184, 0.95);
}

.gmail-breadcrumb-dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.9);
}

.gmail-avatar {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: linear-gradient(145deg, #38bdf8, #1d4ed8);
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.9);
}

.gmail-thread-card {
  margin-top: 6px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.9);
  background: linear-gradient(160deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.9));
  padding: 10px 12px 14px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gmail-line {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(148, 163, 184, 0.4), transparent);
  margin-bottom: 4px;
}

.gmail-line.short {
  width: 55%;
}

.gmail-line.medium {
  width: 72%;
}

.gmail-line.long {
  width: 92%;
}

.gmail-quoted {
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px dashed rgba(51, 65, 85, 0.9);
  opacity: 0.8;
}

.gmail-quoted .gmail-line {
  background: linear-gradient(90deg, rgba(71, 85, 105, 0.9), transparent);
}

.hero-composer-overlay {
  margin-top: auto;
}

.glass-composer {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(248, 250, 252, 0.94);
  backdrop-filter: blur(10px) saturate(1.05);
  box-shadow:
    0 10px 24px rgba(15, 23, 42, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  padding: 10px 12px 12px;
}

.composer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 2px 2px 6px;
}

.composer-top-left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.composer-ai-label {
  font-size: 12px;
  font-weight: 700;
  color: #0f5cc1;
  letter-spacing: 0.1px;
}

.composer-title {
  font-size: 12px;
  font-weight: 700;
  color: #0f172a;
}

.composer-tabset {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #edf2ff;
  border-radius: 999px;
  padding: 3px;
  border: 1px solid rgba(59, 130, 246, 0.16);
}

.composer-tab {
  padding: 4px 10px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
  color: #0f172a;
  cursor: default;
  background: transparent;
  box-shadow: none;
}

.composer-tab.active {
  background: #1a73e8;
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 2px 6px rgba(26, 115, 232, 0.35);
}

.composer-top-right {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.model-pill {
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.55);
  font-size: 10px;
  font-weight: 600;
  color: #0f172a;
}

.model-pill.small {
  font-size: 10px;
  padding: 2px 6px;
}

.ai-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 14px;
  border-radius: 18px;
  border: none;
  background: #1a73e8;
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 2px 6px rgba(26, 115, 232, 0.35);
  cursor: pointer;
  transform: translateY(0);
  transition: transform 140ms ease, box-shadow 140ms ease, background-color 140ms ease;
  white-space: nowrap;
}

.ai-pill:hover {
  background: #1f7bf0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 3px 8px rgba(26, 115, 232, 0.42);
  transform: translateY(-0.5px);
}

.icon-close {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 4px 12px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transform: translateY(0);
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.icon-close:hover {
  transform: translateY(-0.5px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 6px 16px rgba(15, 23, 42, 0.35);
  background: rgba(255, 255, 255, 0.16);
}

.composer-field {
  width: 100%;
  min-height: 120px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 10px;
  margin-bottom: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.95));
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.8),
    0 4px 12px rgba(15, 23, 42, 0.08);
  font-size: 12px;
  font-weight: 500;
  color: rgba(15, 23, 42, 0.68);
}

.composer-field p {
  margin: 0;
  color: rgba(15, 23, 42, 0.65);
}

.composer-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 11px;
}

.composer-footer-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: rgba(15, 23, 42, 0.65);
  font-weight: 500;
}

.composer-footer-actions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.composer-btn {
  height: 32px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.9);
  color: #0f172a;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 2px 6px rgba(15, 23, 42, 0.12);
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.composer-btn:hover {
  transform: translateY(-0.5px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 3px 8px rgba(15, 23, 42, 0.16);
}

.composer-btn.ghost {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(15, 23, 42, 0.12);
}

.composer-btn.primary {
  background: linear-gradient(145deg, var(--primary), var(--primary-dark));
  border-color: var(--primary);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 2px 6px rgba(26, 115, 232, 0.35);
}

.how-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

@media (max-width: 820px) {
  .how-strip {
    grid-template-columns: minmax(0, 1fr);
  }
}

.how-text h2 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 600;
  color: #e5f0ff;
}

.how-text p {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(226, 232, 240, 0.9);
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

@media (max-width: 720px) {
  .how-steps {
    grid-template-columns: minmax(0, 1fr);
  }
}

.how-step {
  font-size: 12px;
  color: #f1f5f9;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.26);
  background: rgba(15, 23, 42, 0.85);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.45);
}

.how-step span.num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-right: 6px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.18);
  border: 1px solid rgba(59, 130, 246, 0.6);
  font-size: 11px;
  font-weight: 600;
  color: #bfdbfe;
}


.gmail-toolbar {
  --toolbar-bg: #f8f9fa;
  --toolbar-border: #e0e0e0;
  --toolbar-icon: #5f6368;
  --toolbar-icon-hover: #202124;
  --toolbar-hover-bg: rgba(0,0,0,0.04);
  --toolbar-accent: #1a73e8;
  --toolbar-accent-bg: rgba(26,115,232,0.12);
  --toolbar-disabled: #bdc1c6;
  
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px;
  padding: 6px 8px;
  background: var(--toolbar-bg);
  border: 1px solid var(--toolbar-border);
  border-radius: 8px;
  font-family: 'Google Sans', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  user-select: none;
  max-width: 100%;
  overflow: visible;
}

.gmail-toolbar .sep {
  width: 1px;
  height: 20px;
  background: var(--toolbar-border);
  margin: 0 4px;
}

.gmail-toolbar button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 4px;
  border: none;
  background: transparent;
  border-radius: 4px;
  cursor: pointer;
  color: var(--toolbar-icon);
  transition: background 0.1s ease;
}

.gmail-toolbar button:hover {
  background: var(--toolbar-hover-bg);
}

.gmail-toolbar button:hover svg {
  fill: var(--toolbar-icon-hover);
}

.gmail-toolbar button.active {
  background: var(--toolbar-accent-bg);
}

.gmail-toolbar button.active svg {
  fill: var(--toolbar-accent);
}

.gmail-toolbar button.disabled {
  pointer-events: none;
}

.gmail-toolbar button.disabled svg {
  fill: var(--toolbar-disabled);
}

.gmail-toolbar button svg {
  width: 18px;
  height: 18px;
  fill: var(--toolbar-icon);
  transition: fill 0.1s ease;
}

.gmail-toolbar .dropdown {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 0 6px;
  font-size: 13px;
  font-weight: 400;
}

.gmail-toolbar .dropdown svg.arrow {
  width: 12px;
  height: 12px;
}

.gmail-toolbar .text-color {
  position: relative;
}

.gmail-toolbar .text-color .bar {
  position: absolute;
  bottom: 4px;
  left: 6px;
  right: 6px;
  height: 3px;
  background: #000;
  border-radius: 1px;
}

.gmail-toolbar .mini-arrow {
  min-width: 14px;
  padding: 0;
}

.gmail-toolbar .mini-arrow svg {
  width: 10px;
  height: 10px;
}

.gmail-toolbar .ai-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #1a73e8;
  margin-left: 4px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  min-width: auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gmail-toolbar .ai-btn:hover {
  background: #1f7bf0;
  transform: translateY(-0.5px) scale(1.05);
}

.gmail-toolbar .ai-btn svg {
  display: none;
}

.toolbar-caption {
  margin-top: 0;
  font-size: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 6px 8px;
  border-radius: 8px;
  background: rgba(148, 163, 184, 0.15);
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 2px 6px rgba(15, 23, 42, 0.3);
}

.toolbar-caption span:first-child {
  font-weight: 700;
  font-size: 11px;
  color: rgba(226, 232, 240, 0.95);
  letter-spacing: 0.01em;
}

.toolbar-caption span:last-child {
  font-weight: 500;
  font-size: 10px;
  color: rgba(148, 163, 184, 0.85);
}

.pricing-section {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

@media (max-width: 840px) {
  .pricing-section {
    grid-template-columns: minmax(0, 1fr);
  }
}

.pricing-copy h2 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 600;
  color: #e5f0ff;
}

.pricing-copy p {
  margin: 0 0 10px;
  font-size: 13px;
  color: rgba(226, 232, 240, 0.9);
}

.model-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 16px 0 12px;
}

@media (max-width: 720px) {
  .model-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .model-pricing-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.model-pricing-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.4);
}

.model-pricing-name {
  font-size: 12px;
  font-weight: 600;
  color: #e5f0ff;
  line-height: 1.2;
}

.model-pricing-details {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.model-pricing-cost {
  font-size: 15px;
  font-weight: 700;
  color: #22c55e;
  letter-spacing: -0.01em;
}

.model-pricing-unit {
  font-size: 10px;
  font-weight: 500;
  color: rgba(226, 232, 240, 0.75);
}

.pricing-note {
  margin: 0 0 12px;
  font-size: 11px;
  color: rgba(226, 232, 240, 0.7);
  font-style: italic;
}

.pricing-pillrow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11px;
  color: rgba(226, 232, 240, 0.86);
}

.pricing-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-self: start;
  margin-top: -85px;
}

@media (max-width: 620px) {
  .pricing-card-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.pricing-card {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background-image:
    radial-gradient(120% 120% at 10% 0%, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04) 45%, rgba(255, 255, 255, 0.01)),
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05));
  background-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px) saturate(1.22);
  box-shadow:
    0 12px 32px rgba(15, 23, 42, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  padding: 16px 16px 16px;
  font-size: 12px;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 260px;
  justify-content: space-between;
}

.plan-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.plan-title {
  font-size: 13px;
  font-weight: 600;
  color: #f8fafc;
  line-height: 1.3;
}

.plan-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  color: var(--chip-blue);
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.55)),
    linear-gradient(135deg, rgba(59, 130, 246, 0.18), rgba(14, 165, 233, 0.18));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 1px 2px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.plan-price {
  font-size: 14px;
  font-weight: 600;
  color: #f8fafc;
  line-height: 1.3;
  margin-top: 4px;
}

.plan-meta {
  font-size: 11px;
  color: rgba(226, 232, 240, 0.92);
  line-height: 1.4;
}

.plan-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.plan-footnote {
  margin-top: auto;
  padding-top: 8px;
  font-size: 11px;
  color: rgba(226, 232, 240, 0.85);
  line-height: 1.4;
}

footer {
  margin-top: 4px;
  font-size: 11px;
  color: rgba(148, 163, 184, 0.82);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

footer a {
  color: rgba(191, 219, 254, 0.95);
  text-decoration: none;
  font-weight: 500;
  font-size: 11px;
}

footer a:hover {
  text-decoration: underline;
}
