﻿:root {
  --ink: #0b1238;
  --ink-2: #26315d;
  --muted: #68738f;
  --navy: #10145f;
  --navy-2: #071038;
  --blue: #2458ff;
  --cyan: #00a9c8;
  --lime: #b8cf31;
  --paper: #f7f9fc;
  --white: #ffffff;
  --line: rgba(11, 18, 56, .12);
  --line-strong: rgba(11, 18, 56, .2);
  --shadow: 0 28px 80px rgba(16, 20, 95, .18);
  --soft-shadow: 0 16px 46px rgba(16, 20, 95, .10);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  background:
    radial-gradient(circle at 10% 6%, rgba(184, 207, 49, .20), transparent 28rem),
    radial-gradient(circle at 88% 10%, rgba(36, 88, 255, .14), transparent 26rem),
    linear-gradient(180deg, #f7fbff 0%, #fbfcf8 46%, #f3faf7 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .19;
  background-image:
    linear-gradient(rgba(16, 20, 95, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 20, 95, .06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  width: min(1210px, calc(100% - 32px));
  margin: 14px auto 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 14px 44px rgba(16, 20, 95, .10);
  backdrop-filter: blur(20px);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 54px rgba(16, 20, 95, .15);
}

.brand {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border-radius: 18px;
}

.brand img {
  width: 138px;
  height: auto;
  padding: 6px 8px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  box-shadow: 0 10px 24px rgba(16, 20, 95, .16), inset 0 1px 0 rgba(255, 255, 255, .18);
}

.nav {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(13, 21, 63, .08);
  border-radius: 999px;
  background: rgba(244, 247, 255, .82);
  color: var(--ink-2);
  font-size: .92rem;
  font-weight: 800;
}

.nav a {
  padding: 10px 13px;
  border-radius: 999px;
  opacity: .82;
  transition: opacity .18s ease, color .18s ease, background .18s ease;
  white-space: nowrap;
}

.nav a:hover {
  color: var(--blue);
  opacity: 1;
  background: #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: var(--navy);
  transition: transform .2s ease, opacity .2s ease;
}

.site-header.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: .01em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.header-cta,
.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  box-shadow: 0 16px 30px rgba(34, 84, 255, .25);
}

.btn.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, .86);
  border: 1px solid var(--line);
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.btn.full {
  width: 100%;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(430px, 1fr);
  gap: 54px;
  align-items: center;
  width: min(1210px, calc(100% - 32px));
  min-height: calc(100vh - 92px);
  margin: 0 auto;
  padding: 78px 0 44px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 8px;
  border-radius: 999px;
  background: var(--lime);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Archivo", sans-serif;
  letter-spacing: -.035em;
  line-height: .98;
}

h1 {
  max-width: 790px;
  font-size: clamp(2.05rem, 3.8vw, 3.4rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(2.1rem, 4.3vw, 4.45rem);
  font-weight: 900;
}

h3 {
  font-size: 1.35rem;
  font-weight: 800;
}

.hero-lead {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--ink-2);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.58;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span,
.badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .80);
  color: var(--ink-2);
  font-size: .92rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  border-radius: 36px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 42px;
  background:
    radial-gradient(circle at 80% 10%, rgba(184, 207, 49, .30), transparent 18rem),
    linear-gradient(135deg, rgba(36, 88, 255, .13), rgba(255, 255, 255, .6));
}

.hero-visual img,
.product-showcase img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 36px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.floating-card {
  position: absolute;
  display: grid;
  gap: 4px;
  max-width: 230px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 18px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 16px 40px rgba(16, 20, 95, .14);
  backdrop-filter: blur(14px);
}

.floating-card strong {
  color: var(--navy);
  font-family: "Archivo", sans-serif;
}

.floating-card span {
  color: var(--muted);
  font-size: .86rem;
  font-weight: 700;
}

.floating-card-top {
  top: 18px;
  left: 18px;
}

.floating-card-bottom {
  right: 18px;
  bottom: 18px;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1210px, calc(100% - 32px));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--line);
  box-shadow: var(--soft-shadow);
}

.proof-band div {
  padding: 26px;
  background: rgba(255, 255, 255, .86);
}

.proof-band strong {
  display: block;
  color: var(--ink);
  font-family: "Archivo", sans-serif;
  font-size: 1.08rem;
}

.proof-band span {
  display: block;
  margin-top: 8px;
  color: var(--ink-2);
  line-height: 1.45;
}

.section {
  width: min(1210px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0;
}

.split,
.showcase,
.security {
  display: grid;
  grid-template-columns: .88fr 1fr;
  gap: 54px;
  align-items: start;
}

.section-copy p,
.pricing-heading p,
.security p,
.cta-section p,
.showcase-copy p,
.centered-heading p {
  color: var(--ink-2);
  font-size: 1.08rem;
  line-height: 1.65;
}

.steps {
  display: grid;
  gap: 14px;
}

.steps article {
  position: relative;
  padding: 25px 25px 25px 88px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 10px 30px rgba(16, 20, 95, .05);
}

.steps span {
  position: absolute;
  left: 24px;
  top: 24px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  background: var(--navy);
  font-weight: 900;
}

.steps p,
.feature-card p,
.platform-card p,
.plan-card p,
.plan-card li,
.footer p,
.footer span,
.mini-list span,
.metric-row span {
  color: var(--ink-2);
  line-height: 1.55;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.centered-heading {
  margin-inline: auto;
  text-align: center;
}

.centered-heading .eyebrow {
  justify-content: center;
}

.platform-section {
  padding-top: 104px;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.platform-card,
.feature-card,
.plan-card,
.showcase-copy {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .84);
  box-shadow: var(--soft-shadow);
}

.platform-card {
  min-height: 240px;
  padding: 24px;
  border-radius: 24px;
}

.platform-card.wide-card {
  grid-column: span 2;
  background:
    radial-gradient(circle at 88% 14%, rgba(184, 207, 49, .22), transparent 14rem),
    linear-gradient(145deg, #fff, #eff6ff);
}

.platform-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 16px;
  color: var(--navy);
  background: #e8f1ff;
  font-weight: 900;
}

.product-showcase img {
  min-height: 430px;
}

.showcase-copy {
  padding: 36px;
  border-radius: 30px;
}

.mini-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.mini-list span {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  font-weight: 800;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-grid .section-heading {
  grid-column: 1 / -1;
}

.feature-card {
  min-height: 220px;
  padding: 24px;
  border-radius: 24px;
}

.feature-card.tall {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 456px;
}

.feature-dark {
  color: #fff;
  background:
    radial-gradient(circle at 90% 8%, rgba(184, 207, 49, .34), transparent 16rem),
    linear-gradient(145deg, var(--navy), var(--navy-2));
}

.feature-dark p,
.feature-dark .metric-row span {
  color: rgba(255, 255, 255, .82);
}

.metric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.metric-row div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  background: rgba(255, 255, 255, .09);
}

.metric-row strong {
  display: block;
  color: #fff;
  font-family: "Archivo", sans-serif;
  font-size: 1.55rem;
}

.pricing {
  display: block;
}

.pricing-heading {
  max-width: 880px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
  border-radius: 30px;
}

.plan-name {
  color: var(--blue);
  font-size: .92rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.plan-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin-top: 18px;
}

.plan-price strong {
  font-family: "Archivo", sans-serif;
  font-size: clamp(2.3rem, 4vw, 3.2rem);
  letter-spacing: -.05em;
}

.plan-price span {
  color: var(--muted);
  font-weight: 800;
}

.plan-card ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.plan-card li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--lime);
  font-weight: 900;
}

.plan-card .btn {
  margin-top: auto;
}

.featured-plan {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 86% 0%, rgba(184, 207, 49, .38), transparent 18rem),
    linear-gradient(145deg, var(--navy), var(--navy-2));
  transform: translateY(-10px);
  box-shadow: 0 34px 86px rgba(16, 20, 95, .26);
}

.featured-plan p,
.featured-plan li,
.featured-plan .plan-price span {
  color: rgba(255, 255, 255, .82);
}

.featured-plan .plan-name {
  color: var(--lime);
}

.plan-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--lime);
  font-size: .8rem;
  font-weight: 900;
}

.security-list {
  display: grid;
  gap: 12px;
}

.security-list p {
  margin: 0;
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, .78);
}

.cta-section {
  display: flex;
  justify-content: space-between;
  gap: 34px;
  align-items: center;
  width: min(1210px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 48px;
  border-radius: 36px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 0%, rgba(184, 207, 49, .38), transparent 22rem),
    linear-gradient(135deg, var(--navy), #17248f);
  box-shadow: var(--shadow);
}

.cta-section .eyebrow,
.cta-section p {
  color: #fff;
}

.cta-section .btn.secondary {
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .28);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(1210px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0;
}

.footer img {
  width: 136px;
  padding: 7px 10px;
  border-radius: 14px;
  background: var(--navy);
}

.footer > div:last-child {
  display: grid;
  gap: 8px;
  align-content: center;
  text-align: right;
}

.footer a {
  color: var(--blue);
  font-weight: 900;
}


/* Painel Pix Web mockup based on the real dashboard */
.desktop-shell {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 28px;
  background: #0b1f3a;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, .74);
}

.web-screen {
  overflow: hidden;
  border-radius: inherit;
  background:
    radial-gradient(circle at 86% 20%, rgba(29, 211, 176, .20), transparent 18rem),
    linear-gradient(135deg, #eef7ff, #fbf7ff 58%, #ffffff);
  transform-origin: center;
}

.web-topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 66px;
  padding: 14px 22px;
  color: #fff;
  background: #0b1f3a;
}

.web-brand-mini {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 160px;
}

.web-brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1dd3b0, #5a8dee);
  color: #0b1f3a;
  font-weight: 900;
}

.web-brand-mini strong,
.web-brand-mini small {
  display: block;
  line-height: 1.05;
}

.web-brand-mini small {
  margin-top: 4px;
  color: rgba(255, 255, 255, .72);
  font-size: .74rem;
}

.web-nav-mini {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  font-size: .82rem;
  font-weight: 800;
  white-space: nowrap;
}

.web-nav-mini span {
  color: #d7e3ff;
}

.web-nav-mini .active {
  color: #1dd3b0;
}

.web-exit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 36px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 10px;
  font-weight: 900;
}

.web-main {
  padding: 28px;
}

.web-welcome {
  position: relative;
  overflow: hidden;
  min-height: 156px;
  padding: 34px 28px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 46px rgba(16, 20, 95, .08);
}

.web-welcome::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -90px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 211, 176, .32), rgba(90, 141, 238, .08) 60%, transparent 72%);
}

.web-welcome h3 {
  position: relative;
  z-index: 1;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  color: #10142f;
}

.web-welcome p {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 20px 0 0;
  color: #536079;
  font-size: .94rem;
}

.web-welcome span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-top: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #dc2626;
  background: #fee2e2;
  font-size: .78rem;
  font-weight: 800;
}

.web-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.web-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 22px;
  border: 1px solid rgba(226, 232, 240, .95);
  border-radius: 16px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 42px rgba(15, 23, 42, .07);
}

.web-card::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -52px;
  width: 124px;
  height: 124px;
  border-radius: 50%;
  background: var(--card-soft, #dbeafe);
}

.web-card i {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 17px;
  color: var(--card-color, #1d4ed8);
  background: var(--card-bg, #dbeafe);
  font-style: normal;
  font-weight: 900;
}

.web-card small {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 12px;
  color: #64748b;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.web-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 12px;
  color: #061631;
  font-family: "Archivo", sans-serif;
  font-size: 1.12rem;
}

.web-card p {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  color: #263854;
  font-size: .92rem;
  line-height: 1.45;
}

.web-card b {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 14px;
  color: #00796b;
  font-size: .86rem;
}

.card-blue { --card-soft: #dbeafe; --card-bg: #dbeafe; --card-color: #2563eb; }
.card-mint { --card-soft: #ccfbf1; --card-bg: #ccfbf1; --card-color: #0f766e; }
.card-gold { --card-soft: #fef3c7; --card-bg: #fef3c7; --card-color: #c45b00; }
.card-purple { --card-soft: #ede9fe; --card-bg: #ede9fe; --card-color: #7c3aed; }

.product-mock-stage {
  position: relative;
  min-height: 470px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 36px;
  background:
    radial-gradient(circle at 18% 20%, rgba(184, 207, 49, .18), transparent 18rem),
    linear-gradient(145deg, #ffffff, #eaf4ff);
  box-shadow: var(--shadow);
}

.product-mock-stage .compact-desktop {
  width: 82%;
  transform: scale(.92);
  transform-origin: left top;
}

.product-mock-stage .web-topbar {
  min-height: 54px;
  padding: 10px 16px;
}

.product-mock-stage .web-nav-mini {
  gap: 10px;
  font-size: .66rem;
}

.product-mock-stage .web-main {
  padding: 18px;
}

.product-mock-stage .web-welcome {
  min-height: 118px;
  padding: 24px;
}

.product-mock-stage .web-cards {
  grid-template-columns: repeat(2, 1fr);
}

.product-mock-stage .web-card {
  min-height: 156px;
  padding: 16px;
}

.product-mock-stage .web-card p,
.product-mock-stage .web-card b,
.product-mock-stage .web-exit,
.product-mock-stage .web-nav-mini span:nth-child(n+4) {
  display: none;
}

.phone-shell {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: min(210px, 34%);
  padding: 10px;
  border-radius: 34px;
  background: #11183f;
  box-shadow: 0 24px 60px rgba(16, 20, 95, .28);
}

.phone-screen {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 360px;
  padding: 26px 16px;
  border-radius: 25px;
  background:
    radial-gradient(circle at 80% 10%, rgba(184, 207, 49, .32), transparent 9rem),
    linear-gradient(180deg, #0f1c67, #08103f);
  color: #fff;
}

.phone-check {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b8cf31, #22c55e);
  color: #08103f;
  font-weight: 900;
}

.phone-qr {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  width: 132px;
  height: 132px;
  padding: 12px;
  border: 8px solid #fff;
  border-radius: 12px;
  background: #fff;
}

.phone-qr span {
  background: #10142f;
}

.phone-qr span:nth-child(3n) {
  background: #b8cf31;
}

.phone-screen strong {
  font-size: 1rem;
}

.phone-screen small {
  color: rgba(255, 255, 255, .72);
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .97);
    box-shadow: var(--soft-shadow);
  }

  .site-header.nav-open .nav {
    display: flex;
  }

  .nav a {
    text-align: center;
  }

  .hero,
  .split,
  .showcase,
  .security {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
  }

  .platform-grid,
  .feature-grid,
  .plans-grid {
    grid-template-columns: 1fr 1fr;
  }

  .featured-plan {
    transform: none;
  }

  .cta-section,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .web-nav-mini {
    display: none;
  }

  .web-topbar {
    grid-template-columns: 1fr auto;
  }

  .product-mock-stage .compact-desktop {
    width: 100%;
    transform: none;
  }

  .phone-shell {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(220px, 70%);
    margin: 20px auto 0;
  }

  .footer > div:last-child {
    text-align: left;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 8px;
    width: calc(100% - 20px);
    margin-top: 8px;
    border-radius: 22px;
  }

  .brand img {
    width: 118px;
    padding: 5px 7px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 13px;
    font-size: .86rem;
  }

  h1 {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }

  .hero,
  .proof-band,
  .section,
  .cta-section,
  .footer {
    width: calc(100% - 24px);
  }

  .hero {
    padding-top: 44px;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .desktop-shell {
    border-radius: 24px;
  }

  .web-screen {
    min-height: auto;
  }

  .web-topbar {
    min-height: 56px;
    padding: 10px 12px;
  }

  .web-brand-mini {
    min-width: 0;
  }

  .web-brand-mark {
    width: 36px;
    height: 36px;
  }

  .web-exit {
    min-width: 48px;
    min-height: 32px;
  }

  .web-main {
    padding: 14px;
  }

  .web-welcome {
    min-height: auto;
    padding: 20px;
  }

  .web-welcome h3 {
    font-size: 1.28rem;
  }

  .web-welcome p {
    margin-top: 12px;
    font-size: .84rem;
  }

  .web-cards,
  .product-mock-stage .web-cards {
    grid-template-columns: 1fr;
  }

  .web-card,
  .product-mock-stage .web-card {
    min-height: auto;
  }

  .product-mock-stage .web-card p,
  .product-mock-stage .web-card b {
    display: block;
  }

  .product-mock-stage {
    min-height: auto;
    padding: 12px;
    border-radius: 28px;
  }

  .phone-screen {
    min-height: 300px;
  }

  .floating-card {
    position: static;
    max-width: none;
    margin-top: 10px;
  }

  .proof-band,
  .platform-grid,
  .feature-grid,
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .platform-card.wide-card,
  .feature-card.tall {
    grid-column: auto;
    min-height: auto;
  }

  .section {
    padding: 72px 0;
  }

  .steps article {
    padding-left: 22px;
    padding-top: 82px;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .showcase-copy,
  .plan-card,
  .cta-section {
    padding: 28px 22px;
  }

  .plan-badge {
    position: static;
    width: max-content;
    margin-bottom: 14px;
  }
}

@media (max-width: 430px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .header-cta {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
  }

  [data-reveal].is-visible {
    opacity: 1;
    transform: none;
  }
}
