/* PocketPOSx marketing site — Apple-inspired light UI */

:root {
  --accent: #0b57d0;
  --accent-hover: #0a4bb5;
  --accent-active: #083d93;
  --accent-tint: rgba(11, 87, 208, 0.08);
  --accent-green: #0e8f6b;
  --accent-gradient: linear-gradient(135deg, #1560c4 0%, #0e8f6b 100%);

  --ink-900: #202124;
  --ink-700: #424245;
  --ink-500: #86868b;
  --ink-300: #a1a1a6;
  --ink-100: #d2d2d7;

  --bg: #ffffff;
  --bg-alt: #f5f5f7;
  --card: #ffffff;
  --border: #d2d2d7;
  --border-light: #e8e8ed;
  --shadow: 0 20px 45px -24px rgba(0, 0, 0, 0.18);

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --radius-pill: 980px;

  --max-width: 1120px;

  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink-900);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display",
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.47059;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-inline: 24px;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--border-light);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.04);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: 1.02rem;
  text-decoration: none;
  color: var(--ink-900);
  letter-spacing: -0.01em;
}

.brand-mark {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--ink-700);
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: -0.005em;
  transition: color 0.15s ease;
}

.nav-links a svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--ink-300);
  transition: color 0.15s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink-900);
}

.nav-links a:hover svg,
.nav-links a[aria-current="page"] svg {
  color: var(--accent);
}

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

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink-900);
}

.nav-toggle svg {
  width: 18px;
  height: 18px;
}

/* ---------- Mobile bottom tab bar (phone-app style navigation) ---------- */

.bottom-tab-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-top: 1px solid var(--border-light);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

.tab-bar-links {
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 64px;
}

.tab-bar-links li {
  flex: 1;
  display: flex;
}

.tab-bar-links a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  text-decoration: none;
  color: var(--ink-300);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: color 0.15s ease;
}

.tab-bar-links a svg {
  width: 23px;
  height: 23px;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.tab-bar-links a:active svg {
  transform: scale(0.88);
}

.tab-bar-links a[aria-current="page"] {
  color: var(--accent);
  font-weight: 700;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: -0.005em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease,
    filter 0.15s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

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

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--accent-gradient);
  color: #ffffff;
}

.btn-primary:hover {
  filter: brightness(1.08);
}

.btn-primary:active {
  filter: brightness(0.92);
}

.btn-secondary {
  background: transparent;
  color: var(--ink-900);
  border-color: var(--ink-100);
}

.btn-secondary:hover {
  border-color: var(--ink-900);
}

.btn-ghost {
  background: var(--accent-tint);
  color: var(--accent);
}

.btn-ghost:hover {
  background: rgba(13, 101, 45, 0.14);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding-block: 11px;
  color: var(--accent);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: -0.005em;
  text-decoration: none;
}

.btn-link:hover {
  text-decoration: underline;
}

.btn-link.btn-lg {
  font-size: 1.02rem;
  padding-block: 14px;
}

.cta-band .btn-link {
  color: #ffffff;
}

.btn-block {
  width: 100%;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1.02rem;
}

.btn[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* ---------- Hero ---------- */

.hero {
  padding-block: 84px 56px;
  background: var(--bg);
}

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

.eyebrow {
  display: block;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

h1 {
  font-size: clamp(2.4rem, 4.6vw, 3.75rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  font-weight: 600;
  color: var(--ink-900);
}

.lede {
  font-size: 1.2rem;
  color: var(--ink-500);
  max-width: 46ch;
  margin: 0 0 32px;
  font-weight: 400;
  letter-spacing: -0.005em;
}

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

.hero-meta {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  color: var(--ink-500);
  font-size: 0.88rem;
}

.hero-meta li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-meta ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* phone mock */

.phone-mock {
  position: relative;
  margin-inline: auto;
  width: min(300px, 84vw);
  border-radius: 40px;
  background: linear-gradient(160deg, #3a3a3c, #1d1d1f);
  padding: 12px;
  box-shadow: var(--shadow);
}

.phone-screen {
  background: var(--card);
  border-radius: 30px;
  overflow: hidden;
  padding: 18px;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.phone-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  color: var(--ink-500);
  font-weight: 500;
}

.phone-card {
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  padding: 14px;
}

.phone-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 9px;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.83rem;
}

.phone-row:last-child {
  border-bottom: none;
}

.phone-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--ink-900);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-weight: 600;
  margin-top: auto;
}

/* ---------- Sections ---------- */

section {
  padding-block: 72px;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head.left {
  margin-inline: 0;
  text-align: left;
}

.section-tag {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  display: block;
}

h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  letter-spacing: -0.025em;
  margin: 0 0 14px;
  font-weight: 600;
  color: var(--ink-900);
}

.section-sub {
  color: var(--ink-500);
  font-size: 1.08rem;
  margin: 0;
}

.alt {
  background: var(--bg-alt);
}

/* ---------- Cards / grids ---------- */

.grid {
  display: grid;
  gap: 20px;
}

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

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

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

.card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.feature-card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #ffffff;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.feature-card p {
  margin: 0;
  color: var(--ink-500);
  font-size: 0.94rem;
}

/* ---------- App preview (SVG screens) ---------- */

.preview-grid {
  margin-top: 8px;
}

.preview-card {
  text-align: center;
}

.preview-mock {
  width: 100%;
  max-width: 220px;
  margin: 0 auto 22px;
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.15));
}

.preview-mock svg {
  width: 100%;
  height: auto;
  display: block;
}

.preview-card h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.preview-card p {
  margin: 0;
  color: var(--ink-500);
  font-size: 0.92rem;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pill-list li {
  background: #ffffff;
  color: var(--ink-900);
  border: 1px solid var(--border-light);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
}

/* checklist */

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

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.98rem;
  color: var(--ink-700);
}

.check-list svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--accent);
  margin-top: 2px;
}

/* ---------- Pricing ---------- */

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

.price-card {
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.price-card.highlight {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.price-card .badge {
  position: absolute;
  top: -14px;
  right: 28px;
  background: var(--accent);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.plan-name {
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}

.plan-desc {
  color: var(--ink-500);
  font-size: 0.92rem;
  margin-bottom: 24px;
}

.plan-price {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.plan-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink-500);
}

.plan-cadence {
  color: var(--ink-500);
  font-size: 0.86rem;
  margin-bottom: 28px;
}

.price-card .check-list {
  margin-bottom: 28px;
  flex-grow: 1;
}

/* ---------- Steps ---------- */

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

.step {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.step-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ink-900);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.step h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.step p {
  margin: 0;
  color: var(--ink-500);
  font-size: 0.92rem;
}

/* ---------- CTA band ---------- */

.cta-band {
  background: linear-gradient(160deg, #0b2f66, #052e24);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  color: #fff;
  text-align: center;
}

.cta-band h2 {
  color: #fff;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 52ch;
  margin: 0 auto 28px;
}

.cta-band .btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.cta-band .btn-secondary:hover {
  border-color: #fff;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- FAQ ---------- */

.faq {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
  background: transparent;
}

.faq-item:first-child {
  border-top: 1px solid var(--border-light);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 4px;
  font-weight: 500;
  font-size: 1.02rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

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

.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--ink-300);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-item p {
  margin: 0;
  padding: 0 4px 22px;
  color: var(--ink-500);
}

/* ---------- Store badges / download ---------- */

.store-badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ink-900);
  color: #fff;
  padding: 12px 20px;
  border-radius: 14px;
  text-decoration: none;
  min-width: 210px;
}

.store-badge svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.store-badge small {
  display: block;
  font-size: 0.68rem;
  opacity: 0.75;
}

.store-badge strong {
  display: block;
  font-size: 1rem;
}

.store-badge[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
}

.device-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.spec-card {
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  padding: 22px;
  text-align: center;
}

.spec-card strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.spec-card span {
  color: var(--ink-500);
  font-size: 0.85rem;
}

/* ---------- Legal pages ---------- */

.legal-page {
  padding-block: 64px 88px;
}

.legal-header {
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 32px;
  margin-bottom: 44px;
}

.legal-updated {
  color: var(--ink-500);
  font-size: 0.9rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 96px;
  border-radius: var(--radius-md);
  padding: 20px;
  background: var(--bg-alt);
}

.legal-toc strong {
  display: block;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-500);
  margin-bottom: 14px;
}

.legal-toc ol {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.legal-toc a {
  text-decoration: none;
  color: var(--ink-700);
  font-size: 0.9rem;
}

.legal-toc a:hover {
  color: var(--accent);
}

.legal-body h2 {
  font-size: 1.32rem;
  margin-top: 44px;
  scroll-margin-top: 96px;
}

.legal-body h2:first-child {
  margin-top: 0;
}

.legal-body p,
.legal-body li {
  color: var(--ink-700);
  font-size: 0.98rem;
}

.legal-body a {
  color: var(--accent);
  text-decoration: none;
}

.legal-body a:hover {
  text-decoration: underline;
}

.legal-body ul {
  padding-left: 22px;
}

.legal-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.92rem;
}

.legal-body th,
.legal-body td {
  border-bottom: 1px solid var(--border-light);
  padding: 12px;
  text-align: left;
  vertical-align: top;
}

.legal-body th {
  color: var(--ink-500);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.contact-callout {
  background: var(--accent-tint);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  margin-top: 44px;
}

.contact-callout a {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
}

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 30px;
}

.contact-card .feature-icon {
  margin-bottom: 20px;
}

.contact-card h2 {
  margin: 0 0 8px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.contact-card p {
  color: var(--ink-500);
  margin: 0 0 18px;
}

/* ---------- 404 ---------- */

.error-page {
  text-align: center;
  padding-block: 120px;
}

.error-code {
  font-size: 5.5rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink-900);
  line-height: 1;
  margin-bottom: 10px;
}

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--border-light);
  background: var(--bg-alt);
  padding-block: 44px 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

.footer-brand p {
  color: var(--ink-500);
  font-size: 0.78rem;
  max-width: 32ch;
  margin: 14px 0 0;
}

.footer-col strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer-col a {
  text-decoration: none;
  color: var(--ink-500);
  font-size: 0.78rem;
}

.footer-col a:hover {
  color: var(--ink-900);
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--ink-500);
  font-size: 0.72rem;
}

.footer-bottom a {
  text-decoration: none;
  color: var(--ink-500);
}

.footer-bottom a:hover {
  color: var(--ink-900);
  text-decoration: underline;
}

/* ---------- Responsive ---------- */

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

  .phone-mock {
    order: -1;
  }

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

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

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

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

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }

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

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

  .device-specs {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  /* On phones, navigation moves entirely to the bottom tab bar, so the
     top bar collapses to just the logo — the same top/bottom split as a
     native app. */
  .nav-links,
  .nav-actions {
    display: none;
  }

  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px));
  }

  .bottom-tab-bar {
    display: block;
  }

  .grid-4,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

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

  h1 {
    font-size: 2.2rem;
  }

  .hero {
    padding-block: 52px 36px;
  }

  section {
    padding-block: 52px;
  }

  .cta-band {
    padding: 44px 24px;
    border-radius: var(--radius-md);
  }
}

/* ---------- Scroll / entrance animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

.reveal-hero {
  transform: translateY(18px);
  transition-duration: 0.9s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .btn:hover,
  .feature-card:hover {
    transform: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}
