:root {
  --bg: #ffffff;
  --panel: #ffffff;
  --text: #0f172a;
  --muted: rgba(15, 23, 42, 0.72);
  --border: rgba(15, 23, 42, 0.12);
  --shadow: none;

  --blue: #08a6ff;
  --lav: #cfc5ff;
  --orange: #ff5b3e;
  --cream: #fff6e8;
  --surface: #f8fafc;

  --brand: var(--blue);

  --radius: 18px;
  --radius-sm: 12px;
  --container: 1120px;
  --announce-h: 34px;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

a:hover {
  text-decoration: none;
}

:focus-visible {
  outline: 3px solid rgba(8, 166, 255, 0.35);
  outline-offset: 2px;
  border-radius: 10px;
}

code {
  font-family: var(--mono);
  font-size: 0.95em;
  color: rgba(15, 23, 42, 0.86);
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger > * {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 420ms ease, transform 420ms ease;
  transition-delay: calc(var(--stagger-i, 0) * 70ms);
}

.stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.subtle-card {
  background: rgba(2, 6, 23, 0.01);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  padding: 10px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--border);
}

.skip-link:focus {
  left: 12px;
  z-index: 9999;
}

.announce {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #0b0f1a;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.announce-inner {
  min-height: var(--announce-h);
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.announce-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 2px 0;
  border-radius: 0;
  border: none;
  background: transparent;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: opacity 160ms ease;
  line-height: 1;
}

.announce-link:hover {
  opacity: 0.9;
}

.announce-arrow {
  font-family: var(--mono);
  opacity: 0.95;
}

.site-header {
  position: sticky;
  top: var(--announce-h);
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 8px 10px;
}

.brand:hover {
  text-decoration: none;
  background: rgba(2, 6, 23, 0.03);
}

.brand-mark {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.brand-name {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav {
  display: none;
  gap: 18px;
  color: rgba(15, 23, 42, 0.78);
}

.nav a {
  padding: 8px 10px;
  border-radius: 999px;
  position: relative;
}

.nav a:hover {
  text-decoration: none;
  background: rgba(2, 6, 23, 0.03);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  background: rgba(67, 56, 202, 0.0);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: 50% 50%;
  transition: transform 160ms ease, background 160ms ease;
}

.nav a:hover::after {
  background: rgba(8, 166, 255, 0.55);
  transform: scaleX(1);
}

.nav a[aria-current="page"]::after {
  background: rgba(8, 166, 255, 0.9);
  transform: scaleX(1);
}

.header-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 999px;
  font-weight: 650;
  border: 1px solid var(--border);
  background: #ffffff;
  box-shadow: none;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease,
    box-shadow 120ms ease;
  text-decoration: none;
  user-select: none;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: none;
  text-decoration: none;
  background: rgba(2, 6, 23, 0.02);
  border-color: rgba(15, 23, 42, 0.18);
  box-shadow: none;
}

.btn:active {
  transform: translateY(0) scale(0.99);
}

.btn-primary {
  border-color: rgba(8, 166, 255, 0.35);
  background: var(--brand);
  color: #ffffff;
}

.btn-primary:hover {
  background: #0097f2;
}

.btn-ghost {
  background: transparent;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.18);
  opacity: 0;
  transform: translateX(-120%);
  transition: opacity 180ms ease, transform 260ms ease;
  pointer-events: none;
}

.btn:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.btn-block {
  width: 100%;
}

.hero {
  padding: 74px 0 78px;
}


.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}

.hero-aside {
  display: grid;
  gap: 14px;
}

.hero-aside-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.02);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.hero-link:hover {
  transform: none;
  background: rgba(15, 23, 42, 0.03);
  border-color: rgba(15, 23, 42, 0.18);
}

.corner-mock {
  border-radius: calc(var(--radius) + 10px);
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #ffffff;
  overflow: hidden;
}

.corner-mock-bar {
  display: flex;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(15, 23, 42, 0.015);
}

.corner-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.18);
}

.corner-mock-body {
  position: relative;
  min-height: 360px;
  padding: 18px;
}

.corner-lines {
  display: grid;
  gap: 10px;
  padding-right: 90px;
}

.corner-line {
  height: 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
}

.corner-carlos {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 74px;
  height: 74px;
  border-radius: 22px;
  background: rgba(255, 246, 232, 0.55);
  border: 1px solid rgba(15, 23, 42, 0.10);
  display: grid;
  place-items: center;
}

.corner-carlos-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  animation: carlos 1.9s ease-in-out infinite;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px 0;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(15, 23, 42, 0.04);
  color: rgba(15, 23, 42, 0.8);
  width: fit-content;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.35rem, 4.4vw, 3.55rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 850;
}

.hero h1 .accent {
  position: relative;
  display: inline-block;
  padding: 0 8px;
  border-radius: 16px;
  color: rgba(15, 23, 42, 0.92);
}

.hero h1 .accent::before {
  content: "";
  position: absolute;
  inset: -5px -6px -5px -6px;
  background: rgba(255, 246, 232, 0.72);
  border: none;
  border-radius: 16px;
  z-index: -1;
  opacity: 0;
  animation: highlightFade 420ms ease 200ms forwards;
}

@keyframes highlightFade {
  to {
    opacity: 1;
  }
}

.lead {
  margin: 16px 0 0 0;
  color: rgba(15, 23, 42, 0.78);
  font-size: 1.1rem;
  max-width: 60ch;
}

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

.hero-badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  color: rgba(15, 23, 42, 0.72);
}

.hero-badges li {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(2, 6, 23, 0.015);
  font-size: 0.95rem;
}

.hero-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.preview {
  padding: 16px;
}

.preview-top {
  display: flex;
  gap: 8px;
  padding: 6px 8px 12px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.18);
}

.preview-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: center;
  padding: 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(2, 6, 23, 0.015);
}

.preview-shot {
  margin: 0;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #ffffff;
}

.preview-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.mock {
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #ffffff;
  overflow: hidden;
}

.mock-bar {
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  background: rgba(2, 6, 23, 0.015);
}

.mock-pill {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.16);
}

.mock-screen {
  position: relative;
  min-height: 240px;
  padding: 18px;
}

.mock-lines {
  display: grid;
  gap: 10px;
  padding-right: 84px;
}

.mock-line {
  height: 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
}

.w-55 {
  width: 55%;
}
.w-65 {
  width: 65%;
}
.w-70 {
  width: 70%;
}
.w-80 {
  width: 80%;
}
.w-90 {
  width: 90%;
}

.mock-corner {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  justify-items: center;
  gap: 6px;
}

.mock-taco {
  width: 56px;
  height: 56px;
  filter: none;
  animation: carlos 1.9s ease-in-out infinite;
  transform-origin: 50% 80%;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

@keyframes carlos {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-2deg);
  }
  25% {
    transform: translate3d(0, -2px, 0) rotate(1deg);
  }
  50% {
    transform: translate3d(0, 0, 0) rotate(2deg);
  }
  75% {
    transform: translate3d(0, -1px, 0) rotate(-1deg);
  }
}

.mock-label {
  font-family: var(--mono);
  font-size: 0.82rem;
  color: rgba(15, 23, 42, 0.72);
}

.hero-card-footer {
  padding: 14px 16px 18px;
  border-top: 1px solid var(--border);
  background: rgba(2, 6, 23, 0.015);
}

.section {
  padding: 62px 0;
}

.section.alt {
  background: var(--surface);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.section-blue {
  background: var(--blue);
  color: #ffffff;
}

.section-lav {
  background: var(--lav);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.section-orange {
  background: var(--orange);
  color: #ffffff;
}

.section-blue .muted,
.section-orange .muted {
  color: rgba(255, 255, 255, 0.86);
}

.section-blue a,
.section-orange a {
  color: inherit;
}

.section-blue a {
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.55);
  text-underline-offset: 3px;
}

.section-blue a:hover {
  text-decoration-color: rgba(255, 255, 255, 0.9);
}

.section-orange .btn {
  border-color: rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #ffffff;
}

.section-orange .btn:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.45);
}

.section-orange .btn-primary {
  background: #ffffff;
  color: rgba(15, 23, 42, 0.92);
  border-color: #ffffff;
}

.section-orange .btn-primary:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.92);
}

.section-orange .btn::before {
  background: rgba(255, 255, 255, 0.16);
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.legal-note {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px dashed rgba(15, 23, 42, 0.18);
  color: rgba(15, 23, 42, 0.72);
  font-family: var(--mono);
  font-size: 0.9rem;
  transition: transform 160ms ease;
  transform-origin: 20% 80%;
}

.legal-note:hover {
  transform: rotate(4deg);
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.section-head h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1.06;
  font-weight: 850;
}

.muted {
  color: var(--muted);
  margin: 0;
}

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

.pricing-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

.pricing-copy .muted {
  margin-top: 12px;
}

.settings-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
}

.settings-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.1rem);
  letter-spacing: -0.04em;
  line-height: 1.02;
  font-weight: 880;
}

.settings-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.settings-note {
  margin-top: 14px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.86);
}

.settings-mock {
  display: grid;
}

.settings-panel {
  border-radius: calc(var(--radius) + 8px);
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  overflow: hidden;
  max-width: 520px;
}

.settings-panel-head {
  padding: 18px 18px 12px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.settings-panel-title {
  font-size: 2rem;
  letter-spacing: -0.03em;
  font-weight: 850;
  color: rgba(15, 23, 42, 0.92);
}

.settings-panel-body {
  padding: 16px 18px 18px;
  display: grid;
  gap: 14px;
}

.settings-block {
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.06);
  padding: 16px;
}

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

.settings-row-label {
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: rgba(15, 23, 42, 0.88);
}

.toggle {
  width: 54px;
  height: 32px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.18);
  border: 1px solid rgba(15, 23, 42, 0.10);
  position: relative;
}

.toggle-knob {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 220ms ease;
}

.toggle.is-on {
  background: rgba(255, 91, 62, 0.95);
  border-color: rgba(255, 91, 62, 0.35);
}

.toggle.is-on .toggle-knob {
  transform: translateX(22px);
}

.settings-block-title {
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: rgba(15, 23, 42, 0.88);
  margin-bottom: 12px;
}

.chip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.chip {
  text-align: center;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.10);
  border: 1px solid rgba(15, 23, 42, 0.10);
  color: rgba(15, 23, 42, 0.85);
  font-weight: 650;
}

.chip.is-active {
  background: rgba(15, 23, 42, 0.86);
  border-color: rgba(15, 23, 42, 0.72);
  color: #ffffff;
}

.slider {
  position: relative;
  height: 40px;
}

.slider-track {
  position: absolute;
  left: 0;
  right: 0;
  top: 18px;
  height: 6px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.16);
}

.slider-fill {
  position: absolute;
  left: 0;
  width: 62%;
  top: 18px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 91, 62, 0.95);
}

.slider-thumb {
  position: absolute;
  left: calc(62% - 10px);
  top: 10px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #ffffff;
  border: 2px solid rgba(255, 91, 62, 0.95);
}

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 18px 18px 16px;
  box-shadow: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.card:hover {
  transform: none;
  border-color: rgba(15, 23, 42, 0.18);
  background: rgba(2, 6, 23, 0.01);
}

.card h3 {
  margin: 0;
  font-size: 1.06rem;
  letter-spacing: -0.02em;
  font-weight: 780;
}

.card p {
  margin-top: 8px;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #ffffff;
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 750;
  background: rgba(8, 166, 255, 0.18);
  border: 1px solid rgba(8, 166, 255, 0.35);
  color: rgba(15, 23, 42, 0.9);
}

.steps h3 {
  margin: 0;
  letter-spacing: -0.02em;
}

.steps p {
  margin-top: 6px;
}

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

.price-card {
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #ffffff;
  box-shadow: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.price-card:hover {
  transform: none;
  border-color: rgba(15, 23, 42, 0.18);
  background: #ffffff;
}

.price-card header p {
  margin: 8px 0 0;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 10px 0 0;
}

.amount {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.unit {
  color: rgba(15, 23, 42, 0.62);
}

.pill {
  font-size: 0.78rem;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: rgba(2, 6, 23, 0.03);
  color: rgba(15, 23, 42, 0.78);
  margin-left: 8px;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 16px 0 18px;
  display: grid;
  gap: 10px;
}

.checklist li {
  padding-left: 26px;
  position: relative;
  color: rgba(15, 23, 42, 0.82);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 14px;
  height: 14px;
  border-radius: 6px;
  background: rgba(8, 166, 255, 0.95);
}

.price-card-soon {
  opacity: 0.88;
}

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

.shot {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.shot img {
  display: block;
  width: 100%;
  height: auto;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
}

.reviews-head h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.15rem);
  letter-spacing: -0.04em;
  line-height: 1.02;
  font-weight: 880;
}

.reviews-stars {
  margin-top: 12px;
  display: inline-flex;
  gap: 10px;
  color: rgba(255, 255, 255, 0.95);
}

.review-star {
  width: 30px;
  height: 30px;
  display: block;
  fill: rgba(255, 255, 255, 0.94);
  stroke: rgba(255, 255, 255, 0.7);
  stroke-width: 1.6;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.reviews-head p {
  margin-top: 10px;
}

.reviews-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.review {
  margin: 0;
  padding: 16px;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.10);
}

.review p {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.review cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  color: rgba(255, 255, 255, 0.86);
}

.fineprint {
  margin-top: 14px;
  font-size: 0.95rem;
}

.cta {
  padding: 64px 0;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 22px;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.02);
  box-shadow: none;
}

.cta-inner h2 {
  margin: 0;
  letter-spacing: -0.03em;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.site-footer {
  padding: 34px 0 46px;
  border-top: 1px solid var(--border);
  background: rgba(2, 6, 23, 0.015);
}

.footer-grid {
  display: grid;
  gap: 18px;
}

.footer-brand {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-brand .brand-mark {
  width: 44px;
  height: 44px;
}

.footer-title {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(15, 23, 42, 0.78);
}

.footer-links a {
  position: relative;
  padding-bottom: 2px;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(8, 166, 255, 0.65);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 160ms ease;
}

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

.footer-note {
  margin: 0;
  font-size: 0.95rem;
}

@media (min-width: 820px) {
  .nav {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 26px;
    align-items: center;
  }

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

  .legal-head {
    grid-template-columns: 1fr auto;
    align-items: start;
    column-gap: 18px;
  }

  .legal-head h1,
  .legal-head p.muted {
    grid-column: 1;
  }

  .legal-head .legal-note {
    grid-column: 2;
    grid-row: 1 / span 2;
    justify-self: end;
    margin-top: 2px;
  }

  .settings-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 26px;
  }

  .settings-mock {
    justify-content: end;
  }

  .pricing-hero {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-bottom: 22px;
  }

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

  .cta-inner {
    grid-template-columns: 1.25fr 0.75fr;
    align-items: center;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1.1fr 1fr auto;
    align-items: center;
  }

  .footer-note {
    text-align: right;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
    transition-delay: 0ms;
  }

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

  .mock-taco,
  .corner-carlos-img {
    animation: none;
  }

  .card,
  .price-card,
  .review,
  .hero-link {
    transition: none;
  }

  .card:hover,
  .price-card:hover,
  .hero-link:hover {
    transform: none;
  }
}
