:root {
  --background: #09090f;
  --foreground: #f5f7fb;
  --muted-foreground: #9fa6b7;
  --primary: #3b82f6;
  --primary-foreground: #ffffff;
  --secondary: rgba(255, 255, 255, 0.03);
  --card: #12121a;
  --card-foreground: #f5f7fb;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
  --container-3xl: 48rem;
  --container-4xl: 56rem;
  --container-5xl: 64rem;
  --container-6xl: 72rem;
  --container-7xl: 80rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--foreground);
  background:
    radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.08), transparent 50%),
    linear-gradient(180deg, #09090f 0%, #0b0b12 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 88%);
}

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

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

button,
a.button {
  font: inherit;
}

main,
header,
footer,
section {
  position: relative;
  z-index: 1;
}

.container {
  width: min(calc(100% - 48px), var(--container-7xl));
  margin: 0 auto;
}

.narrow-6 {
  max-width: var(--container-6xl);
}

.narrow-5 {
  max-width: var(--container-5xl);
}

.narrow-4 {
  max-width: var(--container-4xl);
}

.narrow-3 {
  max-width: var(--container-3xl);
}

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

.max-3 {
  max-width: 48rem;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.stack-8 {
  display: grid;
  gap: 2rem;
}

.section {
  padding: 6rem 0;
}

.section-muted {
  background: rgba(255, 255, 255, 0.025);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(24px);
  background: rgba(9, 9, 15, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: 0.75rem;
  border: 1px solid transparent;
  padding: 0.95rem 2rem;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

.button-primary:hover {
  background: #2f74e4;
  box-shadow: 0 18px 38px rgba(59, 130, 246, 0.18);
}

.button-secondary {
  background: transparent;
  color: var(--foreground);
  border-color: var(--border);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
}

.button-lg {
  padding: 1rem 2rem;
}

.button-block {
  width: 100%;
}

.payment-option-group {
  display: grid;
  gap: 0.75rem;
  text-align: left;
  margin: 1.5rem 0 1rem;
}

.payment-option-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--foreground);
}

.payment-select-wrap {
  position: relative;
}

.payment-select-wrap::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  width: 0.65rem;
  height: 0.65rem;
  border-right: 2px solid rgba(255, 255, 255, 0.72);
  border-bottom: 2px solid rgba(255, 255, 255, 0.72);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.payment-select {
  width: 100%;
  border-radius: 0.9rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--foreground);
  padding: 0.95rem 3rem 0.95rem 1rem;
  font: inherit;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.payment-select:focus {
  outline: 2px solid rgba(59, 130, 246, 0.35);
  outline-offset: 2px;
}

.payment-help {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--muted-foreground);
}

.hero-section {
  padding-top: 5rem;
  padding-bottom: 8rem;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 4rem;
  align-items: center;
}

h1 {
  font-size: clamp(3.35rem, 5.8vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  max-width: 13.8ch;
}

.hero-lead,
.section-lead,
p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.75;
}

.hero-lead {
  font-size: 1.32rem;
  line-height: 1.8;
  max-width: 44rem;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.48rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #c1c8d6;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  font-size: 0.96rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1rem;
}

.hero-visual-wrap {
  display: flex;
  justify-content: center;
}

.telegram-card {
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
  background: #0e1621;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.telegram-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: #17212b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.telegram-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.telegram-avatar-ring {
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  border: 2px solid #fff;
}

.telegram-name {
  font-size: 0.875rem;
  color: #fff;
}

.telegram-meta {
  font-size: 0.75rem;
  color: #8b98a5;
}

.telegram-body {
  min-height: 20rem;
  padding: 1rem;
  display: grid;
  gap: 1rem;
  background: #0e1621;
}

.message-row {
  display: flex;
}

.message-row.end {
  justify-content: flex-end;
}

.message-row.start {
  justify-content: flex-start;
}

.message {
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.message-user {
  max-width: 75%;
  border-radius: 1rem 1rem 0.25rem 1rem;
  background: var(--primary);
  color: #fff;
}

.message-assistant {
  max-width: 85%;
  border-radius: 1rem 1rem 1rem 0.25rem;
  background: #182533;
  color: #e8e9ed;
}

.message-list {
  display: grid;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.message-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.message-bullet {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 999px;
  background: var(--primary);
  margin-top: 0.55rem;
  flex: 0 0 auto;
}

.telegram-input-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: #17212b;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.telegram-input {
  flex: 1;
  background: #0e1621;
  color: #7f8b9a;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
}

.telegram-send {
  color: var(--primary);
  padding: 0.5rem;
  font-size: 1rem;
}

.section-kicker {
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2.25rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 18ch;
}

.wide-title {
  display: block;
  max-width: none;
  width: fit-content;
  white-space: nowrap;
  margin-left: auto;
  margin-right: auto;
}

.inside-title {
  font-size: clamp(1.95rem, 2.55vw, 2.35rem);
  max-width: none;
}

.diff-title {
  max-width: none;
}

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

.section-lead {
  margin-bottom: 4rem;
}

.card {
  background: var(--card);
  color: var(--card-foreground);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
}

.interactive-card {
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.interactive-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}

.accent-card {
  border-color: rgba(59, 130, 246, 0.32);
}

.section-muted .section-kicker,
.section-muted h2,
.section-muted .section-lead {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.problem-grid,
.inside-grid,
.build-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.problem-grid h3 {
  font-size: 1.05rem;
  line-height: 1.4;
}

.problem-grid p {
  font-size: 0.97rem;
  line-height: 1.75;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.metric-card {
  padding: 0.9rem 0.8rem 0.85rem;
  text-align: center;
  border-radius: 0.75rem;
}

.metric-icon {
  width: 2.9rem;
  height: 2.9rem;
  margin: 0 auto 0.12rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem;
}

.metric-icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  flex: 0 0 auto;
}

.icon-blue svg,
.icon-cyan svg,
.icon-violet svg,
.icon-amber svg,
.icon-rose svg,
.icon-emerald svg {
  stroke-width: 1.9;
}

.icon-blue { color: #60a5fa; }
.icon-cyan { color: #22d3ee; }
.icon-violet { color: #a78bfa; }
.icon-amber { color: #fbbf24; }
.icon-rose { color: #fb7185; }
.icon-emerald { color: #34d399; }
.icon-indigo { color: #818cf8; }
.icon-sky { color: #38bdf8; }

.metric-card strong {
  display: block;
  font-size: 1.5rem;
  line-height: 1;
}

.metric-card span {
  font-size: 0.78rem;
  color: var(--muted-foreground);
}

.template-preview-title {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
  margin: 2.8rem 0 1.25rem;
}

.code-preview {
  max-width: 42rem;
  margin: 0 auto;
  overflow: hidden;
}

.code-preview-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  background: #10141d;
  border-bottom: 1px solid var(--border);
}

.code-preview-filename {
  margin-left: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.95rem;
}

.dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
}

.dot.red {
  background: #ff5f57;
}

.dot.yellow {
  background: #febc2e;
}

.dot.green {
  background: #28c840;
}

.code-preview-body {
  padding: 1.5rem 2rem;
  background: #0d1117;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.code-preview-body p {
  color: #d7e3f4;
  font-size: 0.95rem;
  line-height: 1.85;
}

.templates-card {
  max-width: 32rem;
  margin: 2rem auto 0;
  background: #0d1117;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.templates-card h3 {
  text-align: center;
  margin-bottom: 1.25rem;
}

.template-rows {
  display: grid;
  gap: 0.75rem;
}

.template-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  background: #161b22;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #dce5f5;
}

.template-file-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.template-icon {
  width: 1rem;
  height: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.template-icon svg {
  width: 100%;
  height: 100%;
}

.template-row span:last-child {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.build-card {
  padding: 1.5rem;
}

.build-card-featured {
  border-color: rgba(59, 130, 246, 0.45);
  background: rgba(18, 18, 26, 0.8);
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.08);
}

.build-label {
  font-size: 0.875rem;
  color: var(--primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.build-divider {
  margin-top: 0.25rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.build-result {
  font-size: 1rem;
}

.timeline {
  position: relative;
  display: grid;
  gap: 1.15rem;
  margin-top: 2rem;
}

.timeline-plain {
  max-width: 44rem;
  margin: 2.5rem auto 0;
  text-align: left;
}

.timeline-line {
  position: absolute;
  left: 1.9rem;
  top: 0.25rem;
  bottom: 0.25rem;
  width: 2px;
  background: rgba(255, 255, 255, 0.14);
}

.timeline-item {
  position: relative;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.timeline-item-plain {
  gap: 1.15rem;
  min-height: 4.2rem;
}

.timeline-step {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.16);
  border: 4px solid var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #76a7ff;
  font-weight: 600;
  flex: 0 0 auto;
  z-index: 1;
}

.timeline-copy {
  padding-top: 0.28rem;
}

.timeline-copy h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.timeline-copy p {
  font-size: 0.98rem;
  line-height: 1.6;
}

.timeline-card {
  flex: 1;
  padding: 1.5rem;
}

.timeline-note {
  margin-top: 2.6rem;
  color: var(--muted-foreground);
  text-align: center;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.proof-card {
  padding: 1.4rem;
  min-height: 18rem;
}

.proof-card-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

.terminal-window {
  overflow: hidden;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #080a0f;
}

.terminal-bar {
  display: flex;
  gap: 0.4rem;
  padding: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.terminal-bar span {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.terminal-body {
  padding: 1rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.82rem;
  line-height: 1.75;
  color: #dbeafe;
}

.terminal-muted { color: #94a3b8; }
.terminal-ok { color: #34d399; }

.mini-chat {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.2rem;
}

.mini-message {
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  font-size: 0.92rem;
  line-height: 1.55;
}

.mini-message-user {
  margin-left: 2rem;
  background: var(--primary);
  color: var(--primary-foreground);
  border-bottom-right-radius: 0.3rem;
}

.mini-message-assistant {
  margin-right: 1rem;
  background: rgba(255, 255, 255, 0.06);
  color: var(--foreground);
  border-bottom-left-radius: 0.3rem;
}

.file-stack {
  display: grid;
  gap: 0.75rem;
}

.file-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0.95rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.file-row span {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.9rem;
}

.file-row em {
  color: var(--muted-foreground);
  font-style: normal;
  font-size: 0.86rem;
}

.proof-checklist {
  max-width: 64rem;
  margin: 0 auto;
  padding: 1.6rem;
}

.proof-checklist h3 {
  margin-bottom: 1rem;
  text-align: center;
}

.proof-checks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem 1.25rem;
  color: var(--muted-foreground);
  font-size: 0.95rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

.benefit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  text-align: left;
}

.benefit-icon {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-top: 0.15rem;
  flex: 0 0 auto;
}

.benefit-icon svg {
  width: 100%;
  height: 100%;
}

.sample-section {
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.03), rgba(14, 165, 233, 0.02));
}

.sample-card {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(16rem, 0.75fr);
  gap: 2rem;
  align-items: center;
  max-width: 62rem;
  margin: 2.75rem auto 0;
  padding: 2.5rem;
  text-align: left;
  border-color: rgba(59, 130, 246, 0.24);
}

.sample-copy h3 {
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
}

.sample-copy p {
  margin-bottom: 1.25rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.sample-list {
  display: grid;
  gap: 0.65rem;
  color: var(--muted-foreground);
  font-size: 0.95rem;
}

.sample-actions {
  display: grid;
  gap: 0.9rem;
}

.center-cta-row {
  justify-content: center;
}

.pricing-card {
  max-width: 32rem;
  margin: 0 auto;
  padding: 3rem;
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 24px 60px rgba(59, 130, 246, 0.1);
}

.price {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}

.pricing-copy {
  margin-bottom: 2rem;
}

.pricing-benefits {
  display: grid;
  gap: 0.65rem;
  margin-top: 2rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  text-align: left;
}

.pricing-benefit {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.pricing-benefit-icon {
  width: 1rem;
  height: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-top: 0.16rem;
  flex: 0 0 auto;
}

.pricing-benefit-icon svg {
  width: 100%;
  height: 100%;
}

.faq-list {
  display: grid;
  gap: 0.65rem;
}

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  width: 100%;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease;
}

.faq-item summary:hover {
  background: rgba(255, 255, 255, 0.03);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-arrow {
  color: var(--muted-foreground);
  transition: transform 0.2s ease;
  flex: 0 0 auto;
}

.faq-item[open] .faq-arrow {
  transform: rotate(180deg);
}

.faq-content {
  padding: 0 1.25rem 1rem;
  color: var(--muted-foreground);
  line-height: 1.65;
  text-align: left;
  font-size: 0.98rem;
}

.final-cta-section {
  padding: 8rem 0;
}

.final-cta-title {
  max-width: 18ch;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}

.footer-inner {
  text-align: center;
}

.footer-inner p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

@media (max-width: 1100px) {
  .hero-grid,
  .problem-grid,
  .inside-grid,
  .build-grid,
  .benefit-grid,
  .proof-grid,
  .metrics-grid {
    grid-template-columns: 1fr 1fr;
  }

  .timeline-line {
    left: 1.75rem;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 24px), var(--container-7xl));
  }

  .header-inner,
  .hero-grid,
  .problem-grid,
  .inside-grid,
  .build-grid,
  .benefit-grid,
  .proof-grid,
  .proof-checks,
  .metrics-grid,
  .sample-card {
    grid-template-columns: 1fr;
  }

  .header-inner {
    gap: 1rem;
    align-items: flex-start;
  }

  .hero-section {
    padding-top: 3.5rem;
    padding-bottom: 5rem;
  }

  .section {
    padding: 4.5rem 0;
  }

  h1 {
    font-size: 2.6rem;
  }

  h2 {
    font-size: 2rem;
  }

  .wide-title {
    width: auto;
    white-space: normal;
  }

  .cta-row {
    flex-direction: column;
  }

  .button,
  .button-block {
    width: 100%;
  }

  .timeline-line {
    left: 1.5rem;
  }

  .timeline-step {
    width: 3rem;
    height: 3rem;
  }

  .timeline-item {
    gap: 1rem;
  }

  .sample-card,
  .pricing-card {
    padding: 2rem 1.5rem;
  }

  .code-preview-body {
    padding: 1.25rem 1rem;
  }
}
