:root {
  --sage: #819775;
  --sage-dark: #63775a;
  --sage-deep: #344432;
  --sage-soft: #e7ede3;
  --sage-wash: #f0f3ed;
  --ivory: #f7f5f2;
  --paper: #fefdfb;
  --surface: #f1eee9;
  --ink: #2c322f;
  --muted: #626b66;
  --quiet: #858c87;
  --line: #e5e1db;
  --warning: #896c47;
  --shadow: 0 24px 70px rgba(44, 50, 47, 0.09);
  --shadow-soft: 0 12px 36px rgba(44, 50, 47, 0.07);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --content: 1180px;
  color-scheme: light;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 72% -6%, rgba(129, 151, 117, 0.18), transparent 34rem),
    linear-gradient(180deg, #fbfaf7 0%, var(--ivory) 36%, #fbfaf8 100%);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(129, 151, 117, 0.22) 0.6px, transparent 0.6px);
  background-size: 24px 24px;
  opacity: 0.16;
  content: "";
  pointer-events: none;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(99, 119, 90, 0.52);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ink);
  color: white;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.container {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(229, 225, 219, 0.8);
  background: rgba(251, 250, 247, 0.88);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  box-shadow: 0 7px 20px rgba(44, 50, 47, 0.16);
}

.wordmark {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.25em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  text-decoration: none;
  transition: color 160ms ease;
}

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

.nav-button {
  padding: 0 18px;
  border: 1px solid rgba(129, 151, 117, 0.28);
  border-radius: 999px;
  background: var(--sage-soft);
  color: var(--sage-deep) !important;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}

.menu-button svg {
  width: 21px;
  height: 21px;
}

.hero {
  min-height: 760px;
  padding: 84px 0 100px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.86fr);
  align-items: center;
  gap: 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--sage-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage);
  content: "";
  box-shadow: 0 0 0 6px rgba(129, 151, 117, 0.12);
}

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

h1 {
  max-width: 700px;
  margin-bottom: 24px;
  font-size: clamp(3.4rem, 7vw, 6.4rem);
  font-weight: 620;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

h1 em {
  display: block;
  color: var(--sage-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-copy {
  max-width: 590px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.button {
  min-height: 52px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: var(--sage);
  color: white;
  box-shadow: 0 12px 26px rgba(99, 119, 90, 0.24);
}

.button-primary:hover {
  background: var(--sage-dark);
  box-shadow: 0 15px 32px rgba(99, 119, 90, 0.3);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(254, 253, 251, 0.8);
  color: var(--ink);
}

.button svg,
.inline-link svg {
  width: 18px;
  height: 18px;
}

.quiet-note {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--quiet);
  font-size: 13px;
}

.quiet-note svg {
  width: 16px;
  height: 16px;
  color: var(--sage-dark);
}

.phone-stage {
  position: relative;
  min-height: 610px;
  display: grid;
  place-items: center;
}

.phone-stage::before,
.phone-stage::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.phone-stage::before {
  width: 480px;
  height: 480px;
  background: rgba(129, 151, 117, 0.11);
  filter: blur(1px);
}

.phone-stage::after {
  width: 380px;
  height: 380px;
  border: 1px solid rgba(129, 151, 117, 0.2);
}

.phone {
  position: relative;
  z-index: 2;
  width: 300px;
  height: 615px;
  padding: 11px;
  border: 1px solid #1e2521;
  border-radius: 51px;
  background: #151a17;
  box-shadow: 0 38px 75px rgba(44, 50, 47, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  transform: rotate(3deg);
}

.phone-screen {
  height: 100%;
  padding: 48px 15px 18px;
  overflow: hidden;
  border-radius: 40px;
  background:
    radial-gradient(circle at 50% -5%, rgba(129, 151, 117, 0.24), transparent 180px),
    var(--ivory);
}

.dynamic-island {
  position: absolute;
  top: 19px;
  left: 50%;
  z-index: 3;
  width: 94px;
  height: 25px;
  border-radius: 999px;
  background: #111;
  transform: translateX(-50%);
}

.app-kicker {
  color: var(--quiet);
  font-size: 10px;
}

.app-title {
  margin: 2px 0 14px;
  font-size: 21px;
  font-weight: 700;
}

.app-card {
  margin-bottom: 11px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: var(--paper);
  box-shadow: 0 10px 25px rgba(44, 50, 47, 0.05);
}

.app-insight {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.app-icon {
  flex: 0 0 auto;
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--sage-soft);
  color: var(--sage-dark);
}

.app-icon svg {
  width: 17px;
  height: 17px;
}

.app-label {
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
}

.app-text {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.45;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  margin: 8px 0 15px;
}

.quick-item {
  min-height: 65px;
  padding: 8px 4px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--paper);
  color: var(--muted);
  font-size: 7px;
  font-weight: 700;
}

.quick-item svg {
  width: 18px;
  height: 18px;
  color: var(--sage-dark);
}

.metric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.metric {
  padding: 11px;
  border-radius: 14px;
  background: var(--sage-wash);
}

.metric strong {
  display: block;
  font-size: 15px;
}

.metric span {
  color: var(--muted);
  font-size: 8px;
}

.tab-bar {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 61px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-top: 1px solid var(--line);
  background: rgba(254, 253, 251, 0.96);
}

.tab-item {
  display: grid;
  justify-items: center;
  gap: 2px;
  color: var(--quiet);
  font-size: 7px;
}

.tab-item svg {
  width: 16px;
  height: 16px;
}

.tab-item.active {
  color: var(--sage-dark);
}

.float-card {
  position: absolute;
  z-index: 3;
  width: 190px;
  padding: 14px 16px;
  border: 1px solid rgba(129, 151, 117, 0.2);
  border-radius: 18px;
  background: rgba(254, 253, 251, 0.94);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.float-card strong {
  display: block;
  margin-bottom: 2px;
  font-size: 13px;
}

.float-card span {
  color: var(--muted);
  font-size: 11px;
}

.float-one {
  top: 115px;
  right: -8px;
}

.float-two {
  bottom: 70px;
  left: -30px;
}

.section {
  padding: 104px 0;
}

.section-soft {
  border-block: 1px solid rgba(229, 225, 219, 0.72);
  background: rgba(240, 243, 237, 0.55);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 5vw, 4.2rem);
  font-weight: 620;
  letter-spacing: -0.052em;
  line-height: 1.04;
}

.section-heading > p:last-child {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.section-heading.centered > p:last-child {
  margin-inline: auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.feature-card,
.trust-card,
.resource-card {
  border: 1px solid var(--line);
  background: rgba(254, 253, 251, 0.9);
  box-shadow: var(--shadow-soft);
}

.feature-card {
  min-height: 280px;
  padding: 30px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
}

.feature-icon,
.resource-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--sage-soft);
  color: var(--sage-dark);
}

.feature-icon svg,
.resource-icon svg {
  width: 23px;
  height: 23px;
}

.feature-card h3,
.resource-card h3 {
  margin-bottom: 10px;
  font-size: 21px;
  letter-spacing: -0.025em;
}

.feature-card p,
.resource-card p,
.trust-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.feature-number {
  margin-top: auto;
  padding-top: 32px;
  color: var(--quiet);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 84px;
}

.logo-composition {
  position: relative;
  min-height: 490px;
  display: grid;
  place-items: center;
}

.logo-composition::before {
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: rgba(129, 151, 117, 0.12);
  content: "";
}

.logo-composition::after {
  position: absolute;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(129, 151, 117, 0.22);
  border-radius: 44% 56% 61% 39% / 47% 38% 62% 53%;
  content: "";
  transform: rotate(24deg);
}

.logo-composition img {
  position: relative;
  z-index: 2;
  width: 280px;
  height: 280px;
  border-radius: 68px;
  box-shadow: 0 34px 70px rgba(44, 50, 47, 0.2);
}

.story-copy p {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
}

.story-points {
  margin-top: 28px;
  display: grid;
  gap: 15px;
}

.story-point {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.story-point svg {
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
  margin-top: 2px;
  color: var(--sage-dark);
}

.story-point strong {
  display: block;
  margin-bottom: 2px;
}

.story-point span {
  color: var(--muted);
  font-size: 14px;
}

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

.trust-card {
  padding: 26px;
  border-radius: var(--radius-lg);
}

.trust-card > svg {
  width: 24px;
  height: 24px;
  margin-bottom: 28px;
  color: var(--sage-dark);
}

.trust-card h3 {
  margin-bottom: 9px;
  font-size: 18px;
}

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

.resource-card {
  min-height: 260px;
  padding: 27px;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.resource-card:hover {
  border-color: rgba(129, 151, 117, 0.5);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.resource-card .inline-link {
  margin-top: auto;
  padding-top: 26px;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sage-dark);
  font-size: 14px;
  font-weight: 700;
}

.cta-panel {
  position: relative;
  padding: 68px;
  overflow: hidden;
  border-radius: 34px;
  background: var(--sage-deep);
  color: #f9fbf7;
  box-shadow: var(--shadow);
}

.cta-panel::after {
  position: absolute;
  right: -100px;
  bottom: -200px;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.025), 0 0 0 140px rgba(255, 255, 255, 0.018);
  content: "";
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
}

.cta-panel h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.cta-panel p {
  max-width: 560px;
  color: rgba(249, 251, 247, 0.72);
  font-size: 18px;
}

.cta-panel .button-primary {
  margin-top: 14px;
  background: #f4f0e8;
  color: var(--sage-deep);
}

.site-footer {
  padding: 62px 0 32px;
  border-top: 1px solid var(--line);
  background: rgba(254, 253, 251, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 64px;
}

.footer-brand p {
  max-width: 360px;
  margin: 18px 0 0;
  color: var(--muted);
}

.footer-column h2 {
  margin-bottom: 12px;
  color: var(--quiet);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-column a {
  min-height: 38px;
  display: flex;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--ink);
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  color: var(--quiet);
  font-size: 12px;
}

.legal-hero {
  padding: 88px 0 56px;
}

.legal-hero h1 {
  max-width: 850px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 6vw, 5rem);
}

.legal-hero > .container > p:last-child {
  max-width: 690px;
  color: var(--muted);
  font-size: 18px;
}

.legal-layout {
  padding: 0 0 110px;
  display: grid;
  grid-template-columns: 240px minmax(0, 760px);
  justify-content: space-between;
  gap: 64px;
}

.legal-nav {
  position: sticky;
  top: 104px;
  height: fit-content;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(254, 253, 251, 0.82);
}

.legal-nav strong {
  display: block;
  padding: 8px 10px 10px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-nav a {
  min-height: 40px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  border-radius: 9px;
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
}

.legal-nav a:hover {
  background: var(--sage-wash);
  color: var(--ink);
}

.legal-content {
  min-width: 0;
}

.legal-content section {
  margin-bottom: 14px;
  padding: 26px 28px;
  scroll-margin-top: 100px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(254, 253, 251, 0.9);
  box-shadow: 0 8px 24px rgba(44, 50, 47, 0.035);
}

.legal-content h2 {
  margin-bottom: 11px;
  font-size: 20px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 15px;
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.legal-content a {
  color: var(--sage-dark);
  font-weight: 650;
}

.legal-notice {
  margin-bottom: 18px;
  padding: 14px 18px;
  border-left: 3px solid var(--sage);
  border-radius: 0 12px 12px 0;
  background: var(--sage-wash);
  color: var(--muted);
  font-size: 13px;
}

.support-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 20px 0 32px;
}

.support-action {
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  text-decoration: none;
}

.support-action svg {
  width: 22px;
  height: 22px;
  margin-bottom: 18px;
  color: var(--sage-dark);
}

.support-action strong {
  display: block;
  margin-bottom: 4px;
}

.support-action span {
  color: var(--muted);
  font-size: 13px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--paper);
}

.faq-list summary {
  min-height: 62px;
  padding: 17px 54px 17px 20px;
  display: flex;
  align-items: center;
  position: relative;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  right: 20px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--sage-dark);
  content: "+";
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 14px;
}

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

  .hero {
    padding-top: 66px;
  }

  .hero-copy-block {
    text-align: center;
  }

  .hero-copy-block .eyebrow,
  .hero-actions,
  .quiet-note {
    justify-content: center;
  }

  .hero-copy,
  h1 {
    margin-inline: auto;
  }

  .phone-stage {
    margin-top: 20px;
  }

  .story-grid {
    gap: 40px;
  }

  .logo-composition {
    order: 2;
  }

  .trust-grid,
  .resources-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .legal-nav {
    position: static;
    display: flex;
    overflow-x: auto;
    gap: 4px;
  }

  .legal-nav strong {
    display: none;
  }

  .legal-nav a {
    flex: 0 0 auto;
  }
}

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

  .site-header {
    backdrop-filter: blur(14px);
  }

  .nav {
    min-height: 68px;
  }

  .menu-button {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    padding: 14px 16px 18px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 2px;
    border-bottom: 1px solid var(--line);
    background: rgba(251, 250, 247, 0.98);
    box-shadow: var(--shadow-soft);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 0 12px;
  }

  .nav-button {
    margin-top: 5px;
    justify-content: center;
  }

  h1 {
    font-size: clamp(3.2rem, 16vw, 4.8rem);
  }

  .hero {
    min-height: auto;
    padding: 52px 0 74px;
  }

  .hero-grid {
    gap: 42px;
  }

  .phone-stage {
    min-height: 565px;
    transform: scale(0.9);
    margin: -30px 0;
  }

  .float-one {
    right: 0;
  }

  .float-two {
    left: 0;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .feature-grid,
  .trust-grid,
  .resources-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 240px;
    padding: 24px;
  }

  .logo-composition {
    min-height: 380px;
  }

  .logo-composition::before {
    width: 330px;
    height: 330px;
  }

  .logo-composition::after {
    width: 270px;
    height: 270px;
  }

  .logo-composition img {
    width: 220px;
    height: 220px;
    border-radius: 52px;
  }

  .cta-panel {
    padding: 46px 28px;
  }

  .footer-grid {
    gap: 34px;
  }

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

  .legal-hero {
    padding: 60px 0 40px;
  }

  .legal-content section {
    padding: 22px 20px;
  }

  .support-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .wordmark {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .phone-stage {
    width: calc(100% + 32px);
    margin-inline: -16px;
    transform: scale(0.82);
  }

  .float-card {
    width: 170px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
