:root {
  --bg: #f4ede2;
  --bg-deep: #10201d;
  --surface: rgba(255, 251, 245, 0.84);
  --surface-strong: #fffaf3;
  --surface-dark: #17312d;
  --ink: #11110f;
  --ink-soft: #4d4a43;
  --ink-muted: #6d675c;
  --line: rgba(17, 17, 15, 0.12);
  --accent: #d4572d;
  --accent-strong: #b63f18;
  --accent-soft: rgba(212, 87, 45, 0.14);
  --green: #27594f;
  --green-soft: rgba(39, 89, 79, 0.14);
  --shadow: 0 24px 70px rgba(31, 22, 8, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(212, 87, 45, 0.12), transparent 28rem),
    radial-gradient(circle at top right, rgba(39, 89, 79, 0.12), transparent 30rem),
    linear-gradient(180deg, #f8f1e6 0%, #f4ede2 46%, #efe6d8 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(17, 17, 15, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 15, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 88%);
  pointer-events: none;
  z-index: 0;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

.page-glow {
  position: fixed;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.page-glow-left {
  top: 8rem;
  left: -8rem;
  background: rgba(212, 87, 45, 0.35);
}

.page-glow-right {
  top: 2rem;
  right: -10rem;
  background: rgba(39, 89, 79, 0.32);
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(244, 237, 226, 0.8);
  border-bottom: 1px solid rgba(17, 17, 15, 0.06);
}

.header-row {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 2.35rem;
  height: 2.35rem;
  display: inline-grid;
  place-items: center;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, var(--accent), #f08b52);
  color: #fff;
  box-shadow: 0 14px 24px rgba(212, 87, 45, 0.24);
}

.brand-text {
  font-size: 1.05rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  color: var(--ink-soft);
  font-weight: 600;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.site-nav a.button {
  font-weight: 800;
}

.site-nav a.button-ink,
.site-nav a.button-ink:hover,
.site-nav a.button-ink:focus-visible {
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid var(--line);
  background: rgba(255, 250, 243, 0.72);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
  cursor: pointer;
}

.nav-toggle span {
  width: 1rem;
  height: 2px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.2rem;
  padding: 0.8rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--accent), #f08b52);
  color: #fff;
  box-shadow: 0 18px 28px rgba(212, 87, 45, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 22px 34px rgba(212, 87, 45, 0.3);
}

.button-secondary {
  background: rgba(255, 250, 243, 0.8);
  border-color: var(--line);
  color: var(--ink);
}

.button-store {
  min-height: 4.25rem;
  padding: 0.95rem 1.15rem;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 0.12rem;
  color: #fff;
}

.button-store strong {
  font-size: 1.18rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.button-kicker {
  font-size: 0.74rem;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.72;
}

.button-store-apple {
  background: linear-gradient(135deg, #10201d, #17312d);
  box-shadow: 0 18px 28px rgba(16, 32, 29, 0.2);
}

.button-store-apple:hover,
.button-store-apple:focus-visible {
  color: #fff;
  box-shadow: 0 22px 34px rgba(16, 32, 29, 0.28);
}

.button-store-play {
  background: linear-gradient(135deg, #d4572d, #b94722);
  box-shadow: 0 18px 28px rgba(212, 87, 45, 0.22);
}

.button-store-play:hover,
.button-store-play:focus-visible {
  color: #fff;
  box-shadow: 0 22px 34px rgba(212, 87, 45, 0.28);
}

.button-store-feedback {
  background: linear-gradient(135deg, rgba(39, 89, 79, 0.16), rgba(212, 87, 45, 0.12));
  border-color: rgba(39, 89, 79, 0.18);
  color: var(--ink);
  box-shadow: 0 18px 28px rgba(31, 22, 8, 0.08);
}

.button-store-feedback .button-kicker {
  color: var(--green);
  opacity: 0.86;
}

.button-store-feedback:hover,
.button-store-feedback:focus-visible {
  color: var(--ink);
  background: linear-gradient(135deg, rgba(39, 89, 79, 0.2), rgba(212, 87, 45, 0.16));
  box-shadow: 0 22px 34px rgba(31, 22, 8, 0.12);
}

.button-ink {
  min-height: 2.8rem;
  padding-inline: 1rem;
  background: var(--bg-deep);
  color: #fff;
}

.button-ink:hover,
.button-ink:focus-visible {
  background: #0b1715;
  color: #fff;
}

.button-small {
  min-height: 2.8rem;
  padding: 0.55rem 1rem;
  font-size: 0.95rem;
}

.button-full {
  width: 100%;
}

.hero {
  padding: 4.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
}

.hero h1,
.section-heading h2,
.comparison-copy h2,
.contact-card h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.1rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  max-width: 11ch;
}

.hero-text,
.section-heading p,
.comparison-copy p,
.contact-card p,
.footer-copy {
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 1.75;
}

.hero-text {
  max-width: 36rem;
  margin: 1.5rem 0 0;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.proof-strip {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.proof-strip li {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.66);
  border: 1px solid rgba(17, 17, 15, 0.08);
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 42rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.device-frame {
  position: relative;
  width: min(28rem, 100%);
  padding: 0.95rem;
  border-radius: 2.6rem;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.95), rgba(255, 245, 233, 0.75)),
    var(--surface-strong);
  box-shadow: var(--shadow);
  border: 1px solid rgba(17, 17, 15, 0.08);
}

.device-screen {
  padding: 1.25rem;
  min-height: 36rem;
  border-radius: 2rem;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(212, 87, 45, 0.16), transparent 14rem),
    linear-gradient(180deg, #fffaf4 0%, #f3ece2 100%);
  border: 1px solid rgba(17, 17, 15, 0.08);
}

.device-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.35rem;
  font-weight: 800;
}

.device-lock {
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.82rem;
}

.record-panel,
.summary-panel,
.floating-card,
.metric-card,
.feature-card,
.workflow-card,
.audience-card,
.pricing-card,
.faq-item,
.comparison-shell,
.contact-card {
  border: 1px solid rgba(17, 17, 15, 0.08);
  box-shadow: var(--shadow);
}

.record-panel {
  padding: 1.3rem;
  border-radius: 1.6rem;
  background: rgba(20, 43, 39, 0.94);
  color: #fef8ef;
}

.record-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
}

.rec-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: rgba(212, 87, 45, 0.18);
  color: #ffb496;
}

.rec-badge::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #ff6c3b;
  animation: pulse 1.4s infinite;
}

.timer {
  color: rgba(255, 248, 239, 0.75);
}

.wave-bars {
  height: 4.8rem;
  margin: 1.3rem 0;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 0.45rem;
  align-items: center;
}

.wave-bars span {
  display: block;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff9366, #ff5f33);
  animation: wave 1.6s ease-in-out infinite;
}

.wave-bars span:nth-child(1) { height: 34%; }
.wave-bars span:nth-child(2) { height: 74%; animation-delay: 0.1s; }
.wave-bars span:nth-child(3) { height: 48%; animation-delay: 0.2s; }
.wave-bars span:nth-child(4) { height: 90%; animation-delay: 0.3s; }
.wave-bars span:nth-child(5) { height: 66%; animation-delay: 0.4s; }
.wave-bars span:nth-child(6) { height: 88%; animation-delay: 0.5s; }
.wave-bars span:nth-child(7) { height: 44%; animation-delay: 0.25s; }
.wave-bars span:nth-child(8) { height: 76%; animation-delay: 0.15s; }
.wave-bars span:nth-child(9) { height: 30%; animation-delay: 0.35s; }

.panel-title,
.summary-kicker,
.floating-label,
.pricing-tier,
.metric-value,
.workflow-step,
.feature-index {
  font-family: "Space Grotesk", sans-serif;
}

.panel-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

.panel-copy {
  margin: 0.55rem 0 0;
  color: rgba(255, 248, 239, 0.84);
  line-height: 1.65;
}

.meta-pills {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.meta-pills span {
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 248, 239, 0.86);
  font-size: 0.85rem;
}

.summary-panel {
  margin-top: 1rem;
  padding: 1.1rem 1.2rem;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.8);
}

.summary-kicker {
  margin: 0 0 0.7rem;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.summary-panel ul,
.pricing-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.8;
}

.floating-card {
  position: absolute;
  width: 15rem;
  padding: 1rem 1.05rem;
  border-radius: 1.2rem;
  background: rgba(255, 250, 243, 0.92);
  backdrop-filter: blur(14px);
  animation: drift 6s ease-in-out infinite;
}

.floating-card p {
  margin: 0.3rem 0 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.floating-label {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-card-note {
  top: 4rem;
  left: -2rem;
}

.floating-card-lock {
  right: -1rem;
  bottom: 5rem;
  animation-delay: 0.6s;
}

.metrics {
  padding-bottom: 3rem;
}

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

.metric-card,
.feature-card,
.workflow-card,
.audience-card,
.pricing-card,
.faq-item,
.comparison-shell,
.contact-card {
  background: var(--surface);
  backdrop-filter: blur(14px);
}

.metric-card {
  padding: 1.35rem;
  border-radius: 1.35rem;
}

.metric-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.metric-label {
  margin: 0.45rem 0 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

.section {
  padding: 4.75rem 0;
}

.section-alt {
  background: rgba(255, 248, 239, 0.48);
}

.section-heading {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.section-heading h2,
.comparison-copy h2,
.contact-card h2 {
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  max-width: 12ch;
}

.section-heading p,
.comparison-copy p,
.contact-card p {
  max-width: 44rem;
  margin: 0;
}

.feature-grid,
.audience-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature-card,
.workflow-card,
.audience-card,
.pricing-card {
  padding: 1.45rem;
  border-radius: 1.5rem;
}

.feature-index {
  display: inline-flex;
  margin-bottom: 1.15rem;
  padding: 0.38rem 0.62rem;
  border-radius: 999px;
  color: var(--accent);
  background: var(--accent-soft);
  font-size: 0.88rem;
  font-weight: 700;
}

.feature-card h3,
.workflow-card h3,
.audience-card h3,
.pricing-card h3,
.faq-button {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.feature-card p,
.workflow-card p,
.audience-card p,
.pricing-card p,
.faq-answer p {
  margin: 0.85rem 0 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

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

.device-fit-grid,
.device-expectation-grid {
  display: grid;
  gap: 1rem;
}

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

.device-fit-card,
.device-expectation-card,
.device-note {
  background: var(--surface);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(17, 17, 15, 0.08);
  box-shadow: var(--shadow);
}

.device-fit-card,
.device-expectation-card {
  border-radius: 1.5rem;
}

.device-fit-card {
  padding: 1.45rem;
}

.device-fit-label {
  display: inline-flex;
  margin: 0 0 0.9rem;
  padding: 0.38rem 0.62rem;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.device-fit-card h3,
.device-note-title {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.device-fit-spec {
  margin: 0.65rem 0 0;
  color: var(--accent);
  font-weight: 700;
}

.device-fit-list {
  margin: 0.95rem 0 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.8;
}

.device-expectation-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 1rem;
}

.device-expectation-card {
  padding: 1.25rem;
}

.device-expectation-value {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.device-expectation-label {
  margin: 0.45rem 0 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

.device-note {
  margin-top: 1rem;
  padding: 1.35rem 1.45rem;
  border-radius: 1.75rem;
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 1rem;
  align-items: start;
}

.device-note-copy {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.workflow-card {
  position: relative;
  overflow: hidden;
}

.workflow-card::after {
  content: "";
  position: absolute;
  inset: auto -2rem -2rem auto;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 87, 45, 0.14), transparent 70%);
}

.workflow-step {
  width: 3rem;
  height: 3rem;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bg-deep);
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
}

.comparison-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: 2rem;
}

.comparison-table {
  display: grid;
  gap: 0.75rem;
}

.table-head,
.table-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.table-head span,
.table-row span {
  padding: 1rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 17, 15, 0.06);
  line-height: 1.6;
}

.table-head span {
  font-weight: 800;
  color: var(--bg-deep);
}

.table-row span:last-child {
  background: rgba(39, 89, 79, 0.08);
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-card ul {
  flex: 1;
}

.pricing-card .button {
  margin-top: auto;
}

.pricing-tier {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.pricing-price {
  margin: -0.4rem 0 0;
  color: var(--green);
  font-weight: 700;
}

.pricing-card-featured {
  background:
    radial-gradient(circle at top right, rgba(212, 87, 45, 0.12), transparent 12rem),
    rgba(255, 250, 243, 0.95);
  transform: translateY(-0.4rem);
}

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

.faq-item {
  border-radius: 1.35rem;
  overflow: hidden;
}

.faq-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 1.2rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-weight: 800;
}

.faq-plus {
  font-size: 1.65rem;
  line-height: 1;
  color: var(--accent);
  transition: transform 180ms ease;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-answer p {
  overflow: hidden;
  margin: 0;
  padding: 0 1.2rem 0;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 1.15rem;
}

.faq-item.is-open .faq-plus {
  transform: rotate(45deg);
}

.contact-card {
  padding: 1.6rem;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.site-footer {
  padding: 1rem 0 2.5rem;
}

.footer-row,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-row {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(17, 17, 15, 0.08);
}

.brand-footer {
  margin-bottom: 0.8rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--ink-soft);
  font-weight: 700;
}

.footer-bottom {
  margin-top: 1.2rem;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

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

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

@keyframes pulse {
  0%, 100% { transform: scale(0.85); opacity: 0.7; }
  50% { transform: scale(1.1); opacity: 1; }
}

@keyframes wave {
  0%, 100% { transform: scaleY(0.72); }
  50% { transform: scaleY(1.04); }
}

@keyframes drift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 1040px) {
  .hero-grid,
  .comparison-shell,
  .feature-grid,
  .pricing-grid,
  .audience-grid,
  .workflow-grid,
  .device-fit-grid,
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero-visual {
    min-height: auto;
  }

  .comparison-shell {
    align-items: start;
  }

  .contact-card {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (max-width: 780px) {
  :root {
    --header-height: 76px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 1.4rem;
    background: rgba(255, 250, 243, 0.96);
    border: 1px solid rgba(17, 17, 15, 0.08);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav .button {
    width: 100%;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-grid,
  .metrics-grid,
  .feature-grid,
  .pricing-grid,
  .audience-grid,
  .workflow-grid,
  .device-fit-grid,
  .device-expectation-grid,
  .comparison-shell,
  .table-head,
  .table-row,
  .footer-row,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .section-heading h2,
  .comparison-copy h2,
  .contact-card h2 {
    max-width: none;
  }

  .hero-visual {
    order: -1;
    min-height: 32rem;
  }

  .device-frame {
    width: 100%;
  }

  .device-screen {
    min-height: 31rem;
  }

  .floating-card {
    width: 13rem;
  }

  .floating-card-note {
    top: 1rem;
    left: 0;
  }

  .floating-card-lock {
    right: 0;
    bottom: 2rem;
  }

  .footer-row,
  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 1.2rem), var(--container));
  }

  .button,
  .button-small,
  .button-ink {
    width: 100%;
  }

  .hero-actions,
  .contact-actions {
    width: 100%;
  }

  .proof-strip {
    flex-direction: column;
  }

  .floating-card {
    position: static;
    width: 100%;
    margin-top: 0.9rem;
  }

  .hero-visual {
    display: block;
  }

  .device-frame {
    margin-bottom: 0.9rem;
  }

  .comparison-shell,
  .contact-card {
    padding: 1.2rem;
  }
}
