﻿:root {
  --ink: #0e1118;
  --muted: #687082;
  --paper: #fbfbfd;
  --surface: #ffffff;
  --line: #e4e7ef;
  --blue: #155dfc;
  --blue-dark: #0647c7;
  --green: #0c8b67;
  --violet: #6d5dfc;
  --orange: #e5802a;
  --shadow: 0 28px 90px rgba(14, 17, 24, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(16, 24, 39, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 24, 39, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 34px 34px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

button {
  font: inherit;
  cursor: pointer;
}

.page {
  overflow: hidden;
}

.nav,
.hero,
.logo-strip,
.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(228, 231, 239, 0.72);
  background: rgba(251, 251, 253, 0.78);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.nav-status,
.hero-actions,
.logo-strip,
.plan-top {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 18px;
  font-weight: 900;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--ink);
}

.nav-links {
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-status {
  min-height: 34px;
  gap: 9px;
  padding: 0 12px;
  border: 1px solid rgba(12, 139, 103, 0.18);
  border-radius: 999px;
  color: #0b6b51;
  background: rgba(233, 248, 242, 0.82);
  font-size: 12px;
  font-weight: 900;
}

.nav-status span {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.nav-status span::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 1px solid rgba(12, 139, 103, 0.36);
  animation: statusPing 1.8s ease-out infinite;
}

.nav-cta,
.primary-btn,
.secondary-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 900;
}

.nav-cta,
.primary-btn {
  padding: 0 18px;
  color: #fff;
  border: 1px solid var(--blue);
  background: var(--blue);
}

.nav-cta {
  position: relative;
  overflow: hidden;
}

.nav-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: translateX(-120%);
  animation: ctaSweep 3.4s ease-in-out infinite;
}

.nav-cta:hover,
.primary-btn:hover {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
}

.secondary-btn {
  padding: 0 18px;
  border: 1px solid var(--line);
  background: #fff;
}

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  align-items: center;
  gap: 42px;
  padding: 28px 0 54px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(46px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

.dynamic-phrase {
  position: relative;
  display: inline-grid;
  min-width: 7.8em;
  color: var(--blue);
  vertical-align: baseline;
}

.dynamic-phrase span {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(0.28em);
  animation: rotatePhrase 8s ease-in-out infinite;
}

.dynamic-phrase span:nth-child(2) {
  animation-delay: 2s;
}

.dynamic-phrase span:nth-child(3) {
  animation-delay: 4s;
}

.dynamic-phrase span:nth-child(4) {
  animation-delay: 6s;
}

.hero-headline-code {
  max-width: 820px;
}

.hero-headline-code > span:not(.code-loop-chip) {
  display: block;
}

.code-loop-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.16em;
  width: fit-content;
  margin-top: 0.12em;
  padding: 0.08em 0.22em 0.12em;
  border: 1px solid rgba(34, 211, 238, 0.34);
  border-radius: 0.28em;
  color: #0f766e;
  background: linear-gradient(135deg, rgba(236, 253, 245, 0.94), rgba(239, 246, 255, 0.9));
  box-shadow: 0 0 34px rgba(34, 211, 238, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.85);
  animation: codeChipFloat 3.2s ease-in-out infinite;
}

.code-loop-chip::before {
  content: "</>";
  color: var(--blue);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.32em;
  line-height: 1;
}

.code-loop-chip::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.4), transparent);
  opacity: 0;
  transform: translateX(-20%);
  animation: codeChipScan 3.2s ease-in-out infinite;
  pointer-events: none;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 9px;
  font-size: 21px;
}

.lede {
  max-width: 640px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.58;
}

.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.trust {
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.hero-stage {
  position: relative;
  min-height: 590px;
  display: grid;
  place-items: center;
}

.palette-card,
.terminal-card {
  position: relative;
  width: min(560px, 100%);
  border: 1px solid rgba(228, 231, 239, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.palette-card {
  z-index: 2;
  padding: 14px;
  animation: floatMain 7s ease-in-out infinite;
}

.palette-search {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.command-symbol {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--ink);
  font-weight: 900;
}

.typed-command {
  position: relative;
  overflow: hidden;
  display: inline-block;
  max-width: 360px;
  white-space: nowrap;
  animation: revealText 4.8s steps(39) infinite;
}

.cursor {
  width: 2px;
  height: 22px;
  background: var(--blue);
  animation: blink 0.8s steps(2) infinite;
}

.command-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.command-item {
  min-height: 72px;
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transform: translateX(0);
}

.command-item strong,
.command-item small {
  display: block;
}

.command-item small {
  margin-top: 4px;
  color: var(--muted);
}

.command-item kbd {
  min-height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #f8fafc;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
}

.provider-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.chatgpt {
  background: var(--green);
}

.claude {
  background: var(--orange);
}

.gemini {
  background: var(--violet);
}

.item-one {
  animation: selectOne 6s ease-in-out infinite;
}

.item-two {
  animation: selectTwo 6s ease-in-out infinite;
}

.item-three {
  animation: selectThree 6s ease-in-out infinite;
}

.terminal-card {
  z-index: 1;
  margin-top: -30px;
  overflow: hidden;
  background: #111827;
  animation: floatTerminal 8s ease-in-out infinite;
}

.terminal-top {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  background: #1d2432;
}

.terminal-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff605c;
}

.terminal-top span:nth-child(2) {
  background: #ffbd44;
}

.terminal-top span:nth-child(3) {
  background: #00ca4e;
}

.terminal-body {
  padding: 22px;
  color: #e5f5ee;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
  line-height: 1.7;
}

.terminal-body p {
  margin-bottom: 8px;
}

.terminal-body b {
  color: #7dd3fc;
}

.dim {
  color: #93a4b8;
}

.success {
  color: #86efac;
}

.output {
  color: #fff;
  animation: outputGlow 2s ease-in-out infinite;
}

.sync-pill {
  position: absolute;
  z-index: 3;
  min-height: 38px;
  display: flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(14, 17, 24, 0.12);
  color: #293244;
  font-size: 13px;
  font-weight: 900;
}

.pill-one {
  left: 0;
  top: 118px;
  animation: pillDrift 7s ease-in-out infinite;
}

.pill-two {
  right: 0;
  top: 222px;
  animation: pillDrift 7s ease-in-out infinite 0.8s;
}

.pill-three {
  left: 10%;
  bottom: 86px;
  animation: pillDrift 7s ease-in-out infinite 1.4s;
}

.logo-strip {
  min-height: 92px;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.logo-strip strong {
  color: var(--ink);
  font-size: 18px;
}

.section {
  padding: 78px 0 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.workflow-grid,
.pricing-grid,
.faq-grid {
  display: grid;
  gap: 16px;
}

.workflow-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.workflow-grid article,
.plan,
.faq-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.workflow-grid article {
  padding: 24px;
}

.workflow-grid span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
}

.workflow-grid p,
.plan p,
.faq-grid p {
  color: var(--muted);
  line-height: 1.62;
}

.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px;
}

.plan {
  padding: 28px;
}

.plan.featured {
  border: 2px solid var(--ink);
  box-shadow: 12px 12px 0 rgba(21, 93, 252, 0.1);
}

.plan-top {
  justify-content: space-between;
  gap: 14px;
}

.plan-top span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--green);
  background: #e9f8f2;
  font-size: 12px;
  font-weight: 950;
}

.plan > strong {
  display: block;
  margin: 16px 0 8px;
  font-size: 46px;
  line-height: 1;
}

.plan ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.plan li::before {
  content: "\2713";
  margin-right: 8px;
  color: var(--green);
  font-weight: 950;
}

.plan .primary-btn,
.plan .secondary-btn {
  width: 100%;
}

.pricing-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.pricing-head .section-heading {
  margin-bottom: 0;
}

.pricing-lede {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.62;
}

.billing-toggle {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(14, 17, 24, 0.07);
}

.billing-option {
  min-height: 42px;
  padding: 0 14px;
  border: 0;
  border-radius: 8px;
  color: var(--muted);
  background: transparent;
  font-weight: 900;
}

.billing-option span {
  display: inline-flex;
  margin-left: 6px;
  color: var(--green);
  font-size: 12px;
}

.billing-option.active {
  color: #fff;
  background: var(--ink);
}

.billing-option.active span {
  color: #a7f3d0;
}

.pricing-layout {
  display: grid;
  gap: 18px;
}

.launch-offer {
  max-width: 1040px;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px) auto;
  align-items: center;
  gap: 18px;
  padding: 20px;
  margin: 0 auto;
  border: 1px solid rgba(21, 93, 252, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 8% 16%, rgba(45, 212, 191, 0.18), transparent 28%),
    linear-gradient(90deg, rgba(21, 93, 252, 0.1), rgba(255, 255, 255, 0) 68%),
    #fff;
  box-shadow: 0 22px 58px rgba(14, 17, 24, 0.08);
}

.launch-copy span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.launch-copy h3 {
  margin: 6px 0 7px;
  font-size: 24px;
}

.launch-copy p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.launch-progress {
  display: grid;
  gap: 10px;
}

.launch-count {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.launch-count strong {
  font-size: 32px;
  line-height: 1;
}

.launch-count small {
  color: var(--muted);
  font-weight: 850;
}

.progress-track {
  overflow: hidden;
  height: 10px;
  border-radius: 999px;
  background: #e9eef8;
}

.progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--green));
  box-shadow: 0 0 18px rgba(21, 93, 252, 0.28);
}

.pricing-grid {
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
}

.pricing-terminal {
  overflow: hidden;
  max-width: 940px;
  width: 100%;
  margin: 0 auto;
  border: 1px solid #253044;
  border-radius: 10px;
  background: #101827;
  box-shadow: 0 26px 70px rgba(14, 17, 24, 0.18);
}

.pricing-terminal-top {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #0b1220;
}

.pricing-terminal-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ef4444;
}

.pricing-terminal-top span:nth-child(2) {
  background: #f59e0b;
}

.pricing-terminal-top span:nth-child(3) {
  background: #22c55e;
}

.pricing-terminal-top strong {
  margin-left: 8px;
  color: #93a4b8;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
}

.pricing-terminal .pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: none;
  padding: 16px;
}

.plan {
  position: relative;
  overflow: hidden;
  min-height: 0;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.terminal-plan {
  padding: 18px;
  border-color: rgba(148, 163, 184, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: #dbeafe;
}

.terminal-plan.featured {
  border: 1px solid rgba(34, 211, 238, 0.55);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 0 1px rgba(34, 211, 238, 0.18), 0 0 30px rgba(34, 211, 238, 0.12);
}

.terminal-plan.selected {
  border-color: rgba(34, 211, 238, 0.64);
}

.terminal-plan:hover,
.terminal-plan.selected {
  transform: translateY(-3px);
  box-shadow: inset 0 0 0 1px rgba(34, 211, 238, 0.18), 0 0 34px rgba(34, 211, 238, 0.14);
}

.cli-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cli-head h3 {
  color: #fff;
  font-size: 24px;
}

.cli-head span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(16, 185, 129, 0.32);
  border-radius: 999px;
  color: #34d399;
  background: rgba(16, 185, 129, 0.1);
  font-size: 12px;
  font-weight: 900;
}

.terminal-plan .price-line {
  margin: 18px 0 10px;
}

.terminal-plan .price-line strong {
  color: #fff;
}

.terminal-plan .price-line small {
  color: #8ea4be;
}

.cli-command {
  min-height: 38px;
  margin-bottom: 14px;
  color: #bfdbfe;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
}

.cli-cursor {
  display: inline-block;
  width: 8px;
  height: 16px;
  margin-left: 4px;
  background: var(--green);
  animation: blink 0.9s steps(2) infinite;
  vertical-align: -2px;
}

.terminal-plan ul {
  display: grid;
  gap: 9px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  color: #a7f3d0;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
}

.terminal-plan li::before {
  content: "+ ";
  color: #22d3ee;
}

.terminal-plan .secondary-btn {
  color: #dbeafe;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(148, 163, 184, 0.24);
}

.plan::after {
  content: "";
  position: absolute;
  inset: auto 24px 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: var(--blue);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.plan:hover,
.plan.selected {
  transform: translateY(-6px);
  border-color: rgba(21, 93, 252, 0.5);
  box-shadow: 0 24px 65px rgba(14, 17, 24, 0.1);
}

.plan.selected::after {
  opacity: 1;
  transform: translateY(0);
}

.plan.featured {
  background:
    radial-gradient(circle at 92% 12%, rgba(21, 93, 252, 0.13), transparent 28%),
    #fff;
  box-shadow: 14px 14px 0 rgba(21, 93, 252, 0.1);
}

.plan-ribbon {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-size: 12px;
  font-weight: 950;
  animation: ribbonPulse 2.6s ease-in-out infinite;
}

.plan-top {
  align-items: flex-start;
}

.plan-top p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.45;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 16px 0 8px;
}

.price-line strong {
  font-size: 46px;
  line-height: 1;
}

.price-line small {
  color: var(--muted);
  font-size: 16px;
  font-weight: 850;
}

.price-note {
  min-height: 52px;
}

.device-meter {
  display: flex;
  gap: 8px;
  margin: 20px 0 4px;
}

.device {
  position: relative;
  width: 46px;
  height: 30px;
  display: inline-block;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.device::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: -5px;
  height: 4px;
  border-radius: 999px;
  background: #d9deea;
}

.device.active {
  border-color: rgba(21, 93, 252, 0.45);
  background: linear-gradient(145deg, #eaf1ff, #ffffff);
  box-shadow: 0 10px 24px rgba(21, 93, 252, 0.12);
}

.plan-select {
  border: 1px solid var(--line);
}

.pricing-cta {
  max-width: 1040px;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: baseline;
  gap: 18px;
  padding: 18px;
  margin: 2px auto 0;
  border: 1px solid rgba(21, 93, 252, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(21, 93, 252, 0.08), rgba(255, 255, 255, 0) 60%),
    #fff;
  box-shadow: 0 22px 58px rgba(14, 17, 24, 0.08);
}

.lifetime-offer {
  max-width: 1040px;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  padding: 22px;
  margin: 0 auto;
  border: 1px solid rgba(12, 139, 103, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 20%, rgba(12, 139, 103, 0.12), transparent 30%),
    linear-gradient(90deg, rgba(12, 139, 103, 0.08), rgba(255, 255, 255, 0) 60%),
    #fff;
  box-shadow: 0 22px 58px rgba(14, 17, 24, 0.08);
}

.lifetime-offer span {
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.lifetime-offer h3 {
  margin: 6px 0 8px;
}

.lifetime-offer p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.lifetime-offer strong {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 42px;
  line-height: 1;
}

.lifetime-offer small {
  color: var(--muted);
  font-size: 15px;
  font-weight: 850;
}

.pricing-cta span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.pricing-cta strong {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 5px;
  font-size: 32px;
}

.pricing-cta small,
.pricing-cta p {
  color: var(--muted);
}

.pricing-cta p {
  margin-bottom: 0;
  line-height: 1.45;
}

.cta-flow {
  display: grid;
  grid-template-columns: auto 30px auto 30px auto;
  align-items: center;
  gap: 8px;
}

.cta-flow span {
  min-height: 36px;
  display: grid;
  place-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: none;
}

.cta-flow i {
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  animation: flowPulse 1.4s ease-in-out infinite;
}

.cta-flow i:nth-of-type(2) {
  animation-delay: 0.35s;
}

.faq {
  padding-bottom: 90px;
}

.faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-grid article {
  padding: 22px;
}

@keyframes revealText {
  0%,
  15% {
    width: 0;
  }
  55%,
  82% {
    width: 390px;
  }
  100% {
    width: 0;
  }
}

@keyframes rotatePhrase {
  0%,
  8% {
    opacity: 0;
    transform: translateY(0.28em);
  }
  14%,
  24% {
    opacity: 1;
    transform: translateY(0);
  }
  30%,
  100% {
    opacity: 0;
    transform: translateY(-0.28em);
  }
}

@keyframes codeChipFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.06em);
  }
}

@keyframes codeChipScan {
  0%,
  46% {
    opacity: 0;
    transform: translateX(-28%);
  }
  58% {
    opacity: 1;
  }
  76%,
  100% {
    opacity: 0;
    transform: translateX(28%);
  }
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

@keyframes statusPing {
  0% {
    opacity: 0.85;
    transform: scale(0.65);
  }
  100% {
    opacity: 0;
    transform: scale(1.55);
  }
}

@keyframes ctaSweep {
  0%,
  46% {
    transform: translateX(-120%);
  }
  78%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes floatMain {
  50% {
    transform: translateY(-12px);
  }
}

@keyframes floatTerminal {
  50% {
    transform: translateY(10px);
  }
}

@keyframes selectOne {
  0%,
  24%,
  100% {
    border-color: var(--line);
    transform: translateX(0);
  }
  8%,
  18% {
    border-color: rgba(12, 139, 103, 0.45);
    transform: translateX(8px);
    box-shadow: 0 12px 28px rgba(12, 139, 103, 0.12);
  }
}

@keyframes selectTwo {
  0%,
  30%,
  58%,
  100% {
    border-color: var(--line);
    transform: translateX(0);
  }
  36%,
  50% {
    border-color: rgba(229, 128, 42, 0.5);
    transform: translateX(8px);
    box-shadow: 0 12px 28px rgba(229, 128, 42, 0.12);
  }
}

@keyframes selectThree {
  0%,
  62%,
  100% {
    border-color: var(--line);
    transform: translateX(0);
  }
  70%,
  86% {
    border-color: rgba(109, 93, 252, 0.5);
    transform: translateX(8px);
    box-shadow: 0 12px 28px rgba(109, 93, 252, 0.12);
  }
}

@keyframes outputGlow {
  50% {
    text-shadow: 0 0 14px rgba(134, 239, 172, 0.55);
  }
}

@keyframes pillDrift {
  50% {
    transform: translateY(-12px);
  }
}

@keyframes flowPulse {
  0%,
  100% {
    opacity: 0.25;
    transform: scaleX(0.55);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes ribbonPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(21, 93, 252, 0.2);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(21, 93, 252, 0);
  }
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .nav-status {
    margin-left: auto;
  }

  .hero,
  .workflow-grid,
  .pricing-grid,
  .pricing-layout,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .pricing-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: auto;
  }

  .hero-stage {
    min-height: 560px;
  }

  .pricing-grid {
    max-width: none;
  }

  .pricing-cta {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .launch-offer {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .lifetime-offer {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
}

@media (max-width: 640px) {
  .nav,
  .hero,
  .logo-strip,
  .section {
    width: min(100% - 28px, 1180px);
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 31px;
  }

  .lede {
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-btn,
  .secondary-btn,
  .nav-cta,
  .billing-toggle {
    width: 100%;
  }

  .nav {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .nav-status {
    order: 3;
    width: 100%;
    justify-content: center;
    margin-left: 0;
  }

  .billing-toggle {
    align-items: stretch;
    flex-direction: column;
  }

  .billing-option {
    width: 100%;
  }

  .cta-flow {
    grid-template-columns: 1fr;
  }

  .cta-flow i {
    width: 2px;
    height: 20px;
    justify-self: center;
    transform-origin: center;
  }

  .hero-stage {
    min-height: 500px;
  }

  .typed-command {
    max-width: 210px;
  }

  .sync-pill {
    display: none;
  }

  .command-item {
    grid-template-columns: 28px 1fr;
  }

  .command-item kbd {
    display: none;
  }

  .terminal-body {
    font-size: 12px;
  }
}

.pricing-terminal .terminal-plan,
.pricing-terminal .terminal-plan.featured {
  border-color: rgba(148, 163, 184, 0.22);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
}

.pricing-terminal .terminal-plan.featured,
.pricing-terminal .terminal-plan.selected {
  border-color: rgba(34, 211, 238, 0.64);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 0 1px rgba(34, 211, 238, 0.18), 0 0 34px rgba(34, 211, 238, 0.14);
}

.site-footer {
  padding: 18px 20px 42px;
}

.footer-shell {
  width: min(1120px, 100%);
  margin: 0 auto;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(240, 253, 250, 0.72)),
    radial-gradient(circle at 12% 20%, rgba(45, 212, 191, 0.18), transparent 32%),
    radial-gradient(circle at 92% 24%, rgba(37, 99, 235, 0.12), transparent 34%);
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.footer-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
}

.footer-brand {
  flex-shrink: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.site-footer a {
  color: rgba(15, 23, 42, 0.72);
  font-weight: 700;
  text-decoration: none;
}

.footer-links a {
  padding: 9px 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.site-footer a:hover,
.footer-links a:hover {
  color: #0f172a;
  border-color: rgba(20, 184, 166, 0.32);
  background: rgba(255, 255, 255, 0.78);
}

.footer-guarantee {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  margin: 0 24px 24px;
  padding: 18px;
  border: 1px solid rgba(20, 184, 166, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.guarantee-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: #042f2e;
  font-size: 24px;
  font-weight: 900;
  background: linear-gradient(135deg, #6ee7b7, #22d3ee);
  box-shadow: 0 10px 28px rgba(20, 184, 166, 0.22);
}

.footer-guarantee p {
  margin: 0;
  color: rgba(15, 23, 42, 0.72);
  font-size: 14px;
  line-height: 1.65;
}

.footer-guarantee strong {
  color: #07111f;
}

.footer-guarantee a {
  color: #0f766e;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .footer-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-guarantee {
    grid-template-columns: 1fr;
  }
}

.legal-page {
  min-height: 100vh;
}

.legal-card {
  width: min(760px, calc(100% - 40px));
  margin: 74px auto 120px;
  padding: 42px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.1);
}

.legal-card h1 {
  margin: 8px 0 20px;
  color: #07111f;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.95;
}

.legal-card p {
  margin: 0 0 18px;
  color: rgba(15, 23, 42, 0.76);
  font-size: 18px;
  line-height: 1.65;
}

.legal-card a {
  color: #0f766e;
  font-weight: 800;
}

.legal-card .legal-updated {
  margin-top: 28px;
  color: rgba(15, 23, 42, 0.48);
  font-size: 14px;
}

