:root {
  color-scheme: dark;
  --page: #0b0b0f;
  --surface: #121217;
  --surface-elevated: #1a1a22;
  --surface-soft: #22222c;
  --text: #f5f5f7;
  --text-secondary: #a8a8b3;
  --text-muted: #8a8a98;
  --line: #2d2d38;
  --accent: #7c8cff;
  --accent-bright: #9aa5ff;
  --premium: #f5b84b;
  --success: #5fd397;
  --dark: #050507;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --shadow-phone: 0 32px 80px rgb(0 0 0 / 42%);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(145deg, #11121c 0%, #0c0d14 44%, #11101a 72%, #0b0b0f 100%);
  background-color: var(--page);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, system-ui, sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgb(124 140 255 / 28%);
  color: var(--text);
}

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

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

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

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--text);
  color: var(--page);
  font-weight: 750;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

a:focus-visible,
summary:focus-visible,
.scroll-region:focus-visible {
  outline: 3px solid var(--accent-bright);
  outline-offset: 4px;
  border-radius: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgb(45 45 56 / 55%);
  background: rgb(11 11 15 / 78%);
  backdrop-filter: blur(20px) saturate(130%);
}

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

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  min-height: 44px;
  font-size: 18px;
  font-weight: 780;
  letter-spacing: -0.02em;
}

.brand picture,
.brand img {
  width: 40px;
  height: 40px;
}

.brand-short,
.mobile-nav {
  display: none;
}

.mobile-nav {
  position: relative;
  margin-left: auto;
}

.mobile-nav summary {
  display: grid;
  place-items: center;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
  list-style: none;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav-links {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: grid;
  width: min(230px, calc(100vw - 28px));
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgb(18 18 23 / 98%);
  box-shadow: 0 22px 60px rgb(0 0 0 / 48%);
}

.mobile-nav-links a {
  padding: 11px 12px;
  border-radius: 10px;
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 680;
}

.mobile-nav-links a:hover,
.mobile-nav-links a:focus-visible {
  background: var(--surface-elevated);
  color: var(--text);
}

.brand img {
  border-radius: 11px;
  box-shadow: 0 8px 24px rgb(0 0 0 / 28%);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 34px);
  margin-left: auto;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 650;
}

.nav-links a,
.footer-links a,
.text-link {
  transition: color 160ms ease;
}

.nav-links a:hover,
.footer-links a:hover,
.text-link:hover {
  color: var(--text);
}

.nav-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 16px;
  border: 1px solid rgb(154 165 255 / 24%);
  border-radius: 999px;
  background: var(--text);
  color: var(--page);
  font-size: 14px;
  font-weight: 760;
  transition: transform 160ms ease, background 160ms ease;
}

.nav-download:hover {
  background: #fff;
  transform: translateY(-1px);
}

.nav-download-short {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 8vw, 106px) 0 clamp(88px, 10vw, 132px);
}

.hero::before {
  position: absolute;
  top: 2%;
  right: -16%;
  width: 62%;
  height: 78%;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(124 140 255 / 15%) 0%, rgb(124 140 255 / 4%) 42%, transparent 72%);
  pointer-events: none;
  content: "";
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
  align-items: center;
  gap: clamp(42px, 6vw, 82px);
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 610px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--accent-bright);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(50px, 5.25vw, 76px);
  line-height: 0.98;
  font-weight: 840;
  letter-spacing: -0.055em;
}

.hero-subtitle {
  max-width: 570px;
  margin-bottom: 30px;
  color: var(--text-secondary);
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 18px;
}

.store-badge {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  border-radius: 9px;
  transition: filter 160ms ease, transform 160ms ease;
}

.store-badge:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.hero-note {
  max-width: 210px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.35;
}

.hero-disclaimer {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
}

.hero-visual {
  position: relative;
  min-width: 0;
  height: clamp(500px, 50vw, 620px);
}

.hero-glow {
  position: absolute;
  inset: 16% 0 4% 4%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 55%, rgb(124 140 255 / 20%), rgb(124 140 255 / 5%) 50%, transparent 72%);
  filter: blur(14px);
}

.phone-frame {
  overflow: hidden;
  border: clamp(6px, 0.65vw, 9px) solid #030305;
  border-radius: clamp(27px, 3vw, 43px);
  background: #030305;
  box-shadow: var(--shadow-phone);
}

.phone-frame picture,
.phone-frame img {
  width: 100%;
}

.phone-frame img {
  height: auto;
  border-radius: clamp(20px, 2.25vw, 34px);
}

.hero-phone {
  position: absolute;
  margin: 0;
}

.hero-phone-share {
  z-index: 3;
  top: 7%;
  left: 4%;
  width: min(44%, 258px);
  transform: rotate(-4deg);
}

.hero-phone-home {
  z-index: 2;
  right: 2%;
  bottom: 2%;
  width: min(50%, 292px);
  transform: rotate(3deg);
}

.section-heading {
  max-width: 650px;
}

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

h2 {
  margin-bottom: 20px;
  font-size: clamp(40px, 4.5vw, 60px);
  line-height: 1.02;
  font-weight: 820;
  letter-spacing: -0.045em;
}

.section-subtitle {
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.52;
}

.problem {
  padding: clamp(82px, 9vw, 120px) 0;
  border-block: 1px solid rgb(45 45 56 / 70%);
  background:
    radial-gradient(circle at 80% 40%, rgb(124 140 255 / 9%), transparent 36%),
    var(--surface);
}

.product-proof {
  padding: clamp(82px, 9vw, 118px) 0;
  border-top: 1px solid rgb(45 45 56 / 66%);
  background:
    radial-gradient(ellipse at 12% 43%, rgb(124 140 255 / 9%), transparent 34%),
    radial-gradient(ellipse at 88% 76%, rgb(154 105 210 / 7%), transparent 36%),
    linear-gradient(180deg, var(--surface) 0%, #10111a 18%, #0d0e16 58%, #100f18 100%);
}

.proof-heading {
  max-width: 790px;
  margin-bottom: clamp(88px, 10vw, 134px);
}

.proof-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 11px;
  border: 1px solid rgb(154 165 255 / 20%);
  border-radius: 999px;
  background: rgb(124 140 255 / 9%);
  color: var(--accent-bright);
  font-size: 12px;
  font-weight: 760;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
  color: var(--text-secondary);
  font-size: 15px;
}

.check-list li {
  position: relative;
  padding-left: 26px;
}

.check-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  color: var(--success);
  font-weight: 800;
  content: "✓";
}

.privacy {
  padding: clamp(80px, 9vw, 116px) 0;
}

.privacy-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: clamp(60px, 9vw, 120px);
  padding: clamp(38px, 6vw, 76px);
  overflow: hidden;
  border: 1px solid rgb(154 165 255 / 22%);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 94% 12%, rgb(124 140 255 / 15%), transparent 34%),
    linear-gradient(145deg, var(--surface-elevated), var(--surface));
}

.privacy-card::before {
  position: absolute;
  right: -90px;
  bottom: -130px;
  width: 320px;
  height: 320px;
  border: 1px solid rgb(154 165 255 / 14%);
  border-radius: 50%;
  content: "";
}

.privacy-copy,
.privacy-points {
  position: relative;
  z-index: 1;
}

.privacy-copy h2 {
  font-size: clamp(38px, 4vw, 54px);
}

.privacy-copy > p {
  color: var(--text-secondary);
  font-size: 18px;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--accent-bright);
  font-size: 15px;
  font-weight: 740;
}

.privacy-points {
  display: grid;
  align-content: center;
  gap: 14px;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.privacy-point {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 15px;
  padding: 18px;
  border: 1px solid rgb(45 45 56 / 88%);
  border-radius: 16px;
  background: rgb(11 11 15 / 42%);
}

.privacy-point > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgb(124 140 255 / 11%);
  color: var(--accent-bright);
  font-size: 20px;
}

.privacy-point strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
}

.privacy-point p {
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 14px;
}

.pricing {
  padding: clamp(80px, 9vw, 116px) 0;
  border-top: 1px solid rgb(45 45 56 / 66%);
  background:
    radial-gradient(circle at 50% 10%, rgb(124 140 255 / 10%), transparent 35%),
    var(--surface);
}

.pricing-heading {
  max-width: 760px;
  margin-bottom: 56px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 900px;
  margin-inline: auto;
}

.pricing-card {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-elevated);
}

.pricing-card-featured {
  border-color: rgb(154 165 255 / 38%);
  background:
    radial-gradient(circle at 100% 0%, rgb(124 140 255 / 18%), transparent 42%),
    var(--surface-elevated);
  box-shadow: 0 26px 70px rgb(0 0 0 / 24%);
}

.pricing-label {
  margin-bottom: 12px;
  color: var(--accent-bright);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin-bottom: 26px;
  font-size: 27px;
  letter-spacing: -0.03em;
}

.pricing-price {
  margin-bottom: 8px;
  font-size: 46px;
  font-weight: 820;
  letter-spacing: -0.045em;
}

.pricing-price span,
.pricing-monthly {
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
}

.pricing-monthly {
  margin-bottom: 28px;
}

.pricing-badge {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 6px 10px;
  border: 1px solid rgb(245 184 75 / 34%);
  border-radius: 999px;
  background: rgb(245 184 75 / 10%);
  color: var(--premium);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-card .check-list {
  margin-top: 30px;
}

.pricing-note {
  margin: 20px auto 0;
  color: var(--text-muted);
  font-size: 13px;
  text-align: center;
}

.faq {
  padding: clamp(80px, 9vw, 116px) 0;
  border-top: 1px solid rgb(45 45 56 / 66%);
  background: var(--surface);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
  align-items: start;
  gap: clamp(70px, 10vw, 130px);
}

.faq-heading {
  position: sticky;
  top: 118px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 48px 24px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 730;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 5px;
  width: 26px;
  height: 26px;
  color: var(--accent-bright);
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  transform: translateY(-50%);
  content: "+";
}

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

.faq-list details p {
  max-width: 680px;
  margin-bottom: 24px;
  padding-right: 38px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.58;
}

.final-cta {
  padding: clamp(80px, 9vw, 116px) 0;
}

.final-cta-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(28px, 5vw, 58px);
  padding: clamp(34px, 5vw, 64px);
  overflow: hidden;
  border: 1px solid rgb(154 165 255 / 22%);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 82% 25%, rgb(124 140 255 / 18%), transparent 36%),
    linear-gradient(135deg, var(--surface-elevated), var(--surface));
}

.final-cta-card::before {
  position: absolute;
  top: -90px;
  left: 20%;
  width: 280px;
  height: 180px;
  background: rgb(124 140 255 / 10%);
  filter: blur(60px);
  content: "";
}

.final-icon,
.final-icon img {
  width: 88px;
  height: 88px;
}

.final-icon {
  position: relative;
  z-index: 1;
}

.final-icon img {
  border-radius: 24px;
  box-shadow: 0 20px 44px rgb(0 0 0 / 30%);
}

.final-cta-card > div,
.final-cta-card > a {
  position: relative;
  z-index: 1;
}

.final-cta-card h2 {
  max-width: 690px;
  margin-bottom: 13px;
  font-size: clamp(35px, 4vw, 52px);
}

.final-cta-card > div > p:last-child {
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 17px;
}

.site-footer {
  padding: 42px 0;
  border-top: 1px solid var(--line);
  background: rgb(11 11 15 / 72%);
}

.footer-layout {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
}

.footer-brand span {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: 780;
}

.footer-brand p {
  max-width: 470px;
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 22px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 650;
}

.footer-links [aria-current="page"] {
  color: var(--text);
}

/* Legal and support pages */
.legal-header {
  padding: 24px 0 0;
}

.back-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  color: var(--text);
  font-size: 14px;
  font-weight: 720;
}

.legal-main {
  min-height: calc(100svh - 135px);
  padding: 52px 0 92px;
}

.legal-content {
  max-width: 780px;
}

.legal-content h1 {
  margin-bottom: 18px;
  font-size: 58px;
}

.legal-content h2 {
  margin: 44px 0 14px;
  font-size: 30px;
  line-height: 1.16;
}

.legal-content h3 {
  margin: 32px 0 12px;
  font-size: 22px;
}

.legal-content p {
  margin-bottom: 18px;
  color: var(--text-secondary);
  font-size: 19px;
}

.legal-content a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  margin: 0 0 20px;
  padding-left: 24px;
  color: var(--text-secondary);
  font-size: 18px;
}

@media (max-width: 1050px) {
  .hero-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
    gap: 34px;
  }

}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .hero {
    padding-top: 64px;
  }

  .hero-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }

  h1 {
    max-width: 760px;
    font-size: clamp(54px, 9vw, 76px);
  }

  .hero-visual {
    width: min(100%, 660px);
    height: 590px;
    margin: 6px auto 0;
  }

  .privacy-card {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .pricing-grid {
    max-width: 720px;
  }

  .faq-heading {
    position: static;
  }

  .faq-layout {
    gap: 48px;
  }

  .final-cta-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .final-cta-card > .store-badge {
    grid-column: 2;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    min-height: 66px;
    gap: 12px;
  }

  .brand {
    gap: 8px;
    font-size: 15px;
  }

  .brand picture,
  .brand img {
    width: 36px;
    height: 36px;
  }

  .nav-download {
    min-height: 44px;
    padding-inline: 14px;
  }

  .hero {
    padding: 52px 0 82px;
  }

  h1 {
    margin-bottom: 21px;
    font-size: clamp(43px, 12.5vw, 58px);
    line-height: 0.98;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-note {
    max-width: none;
  }

  .hero-visual {
    height: min(134vw, 550px);
    margin-top: 22px;
  }

  .hero-phone-share {
    top: 5%;
    left: 1%;
    width: 47%;
    transform: none;
  }

  .hero-phone-home {
    right: 1%;
    width: 54%;
    transform: none;
  }

  h2 {
    font-size: clamp(37px, 10vw, 48px);
  }

  .privacy-card,
  .final-cta-card {
    border-radius: 24px;
  }

  .privacy-card {
    padding: 30px 22px;
  }

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

  .privacy-copy > p {
    font-size: 16px;
  }

  .faq-list summary {
    padding-block: 21px;
    font-size: 17px;
  }

  .final-cta-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    text-align: center;
  }

  .final-icon {
    margin-inline: auto;
  }

  .final-cta-card > .store-badge {
    grid-column: 1;
    margin-inline: auto;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

  .legal-content h1 {
    font-size: 42px;
  }

  .legal-content h2 {
    font-size: 27px;
  }

  .legal-content p {
    font-size: 17px;
  }
}

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

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

/* Conversion-focused landing page */
.content-band {
  padding: 38px 0 42px;
  border-block: 1px solid rgb(45 45 56 / 70%);
  background: rgb(18 18 23 / 84%);
  text-align: center;
}

.content-band-title {
  margin-bottom: 18px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 740;
}

.content-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.content-pills li {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-elevated);
  color: var(--text);
  font-size: 13px;
  font-weight: 680;
}

.content-band-note {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--text-muted);
  font-size: 14px;
}

.problem-compact {
  padding: clamp(58px, 7vw, 84px) 0;
}

.problem-compact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(50px, 8vw, 100px);
}

.problem-compact h2 {
  max-width: 560px;
  margin-bottom: 0;
  font-size: clamp(35px, 4vw, 52px);
}

.problem-compact-layout > p {
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.58;
}

.how-it-works {
  padding: clamp(80px, 9vw, 116px) 0;
}

.workflow-heading {
  max-width: 720px;
}

.workflow-demo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  margin: 54px 0 0;
  padding: 0;
  list-style: none;
}

.workflow-stage {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 238px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(155deg, rgb(26 26 34 / 96%), rgb(18 18 23 / 96%));
  animation: workflow-focus 7.5s ease-in-out infinite;
}

.workflow-stage-nemor {
  animation-delay: 2.5s;
}

.workflow-stage-saved {
  animation-delay: 5s;
}

.workflow-number {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.1em;
}

.workflow-symbol,
.workflow-stage picture,
.workflow-stage img {
  width: 54px;
  height: 54px;
}

.workflow-symbol,
.workflow-stage picture {
  display: grid;
  place-items: center;
  margin: 24px 0 20px;
  border-radius: 16px;
  background: rgb(124 140 255 / 13%);
  color: var(--accent-bright);
  font-size: 27px;
  font-weight: 760;
}

.workflow-stage img {
  border-radius: 16px;
}

.workflow-symbol svg {
  width: 30px;
  height: 30px;
  stroke: currentcolor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.workflow-check {
  background: rgb(95 211 151 / 12%);
  color: var(--success);
}

.workflow-stage h3 {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.workflow-stage p {
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 14px;
}

.workflow-arrow {
  color: var(--accent-bright);
  font-size: 25px;
}

.workflow-caption {
  margin: 24px 0 0;
  color: var(--text-muted);
  font-size: 14px;
  text-align: center;
}

@keyframes workflow-focus {
  0%, 26%, 100% {
    border-color: var(--line);
    box-shadow: none;
    transform: translateY(0);
  }

  8%, 18% {
    border-color: rgb(154 165 255 / 52%);
    box-shadow: 0 20px 52px rgb(31 35 72 / 32%);
    transform: translateY(-4px);
  }
}

.proof-heading-compact {
  margin-bottom: 58px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.proof-card {
  display: flex;
  min-width: 0;
  padding: 28px 26px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 50% 100%, rgb(124 140 255 / 13%), transparent 40%),
    var(--surface-elevated);
  flex-direction: column;
}

.proof-card-copy {
  min-height: 385px;
}

.proof-card h3 {
  margin-bottom: 14px;
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.proof-card-copy > p {
  margin-bottom: 22px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.55;
}

.proof-card .check-list {
  font-size: 14px;
}

.proof-shot {
  width: min(78%, 245px);
  margin: auto auto -42%;
  transform: rotate(1deg);
}

.proof-shot .phone-frame {
  position: relative;
}

.dynamic-island {
  position: absolute;
  z-index: 2;
  top: 1.55%;
  left: 50%;
  display: block;
  width: 31%;
  aspect-ratio: 3.45;
  border-radius: 999px;
  background: #000;
  box-shadow:
    0 0 0 1px rgb(255 255 255 / 8%),
    0 1px 3px rgb(0 0 0 / 70%);
  pointer-events: none;
  transform: translateX(-50%);
}

.proof-card:nth-child(2) .proof-shot {
  transform: rotate(-1deg);
}

.secondary-features {
  margin-top: 24px;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 100% 0%, rgb(124 140 255 / 10%), transparent 36%),
    rgb(18 18 23 / 72%);
}

.secondary-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 28px;
}

.secondary-heading h3 {
  margin-bottom: 0;
  font-size: clamp(27px, 3vw, 36px);
  letter-spacing: -0.035em;
}

.secondary-heading > p {
  margin-bottom: 2px;
  color: var(--text-secondary);
  font-size: 16px;
}

.secondary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.secondary-card {
  min-width: 0;
  padding: 22px;
  border: 1px solid rgb(45 45 56 / 90%);
  border-radius: 18px;
  background: rgb(26 26 34 / 82%);
}

.secondary-card h4 {
  margin: 0 0 7px;
  font-size: 20px;
  letter-spacing: -0.025em;
}

.secondary-card > p {
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
}

.maker {
  padding: clamp(72px, 8vw, 104px) 0;
}

.maker-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  padding: clamp(30px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 0% 0%, rgb(124 140 255 / 13%), transparent 36%),
    var(--surface-elevated);
}

.maker-card picture,
.maker-card img {
  width: 72px;
  height: 72px;
}

.maker-card img {
  border-radius: 20px;
  box-shadow: 0 18px 40px rgb(0 0 0 / 30%);
}

.maker-card h2 {
  max-width: 740px;
  margin-bottom: 12px;
  font-size: clamp(30px, 3.5vw, 44px);
}

.maker-card > div > p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--text-secondary);
}

.maker-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgb(154 165 255 / 32%);
  border-radius: 999px;
  color: var(--accent-bright);
  font-size: 14px;
  font-weight: 760;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .problem-compact-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .proof-grid {
    gap: 14px;
  }

  .proof-card {
    padding-inline: 20px;
  }

  .proof-card-copy {
    min-height: 430px;
  }

  .secondary-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .maker-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .maker-contact {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .content-band {
    padding: 32px 0 36px;
  }

  .problem-compact {
    padding-block: 52px;
  }

  .workflow-demo {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 40px;
  }

  .workflow-stage {
    grid-template-columns: 52px minmax(0, 1fr);
    min-height: 0;
    padding: 18px;
    column-gap: 14px;
  }

  .workflow-number {
    grid-column: 1 / -1;
    margin-bottom: 12px;
  }

  .workflow-symbol,
  .workflow-stage picture {
    grid-column: 1;
    grid-row: 2 / 4;
    margin: 0;
  }

  .workflow-stage h3 {
    grid-column: 2;
    grid-row: 2;
  }

  .workflow-stage p {
    grid-column: 2;
    grid-row: 3;
  }

  .workflow-arrow {
    transform: rotate(90deg);
    text-align: center;
  }

  .proof-heading-compact {
    margin-bottom: 42px;
  }

  .proof-grid {
    display: flex;
    width: calc(100% + 14px);
    padding: 0 14px 18px 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .proof-card {
    flex: 0 0 min(88vw, 360px);
    min-height: 620px;
    scroll-snap-align: start;
  }

  .proof-card-copy {
    min-height: 330px;
  }

  .proof-shot {
    width: min(76%, 240px);
    margin-bottom: -38%;
  }

  .secondary-features {
    padding: 24px 20px;
  }

  .secondary-heading {
    margin-bottom: 22px;
  }

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

  .secondary-card {
    padding: 20px;
  }

  .maker-card {
    grid-template-columns: 1fr;
    padding: 26px 22px;
    text-align: center;
  }

  .maker-card picture {
    margin-inline: auto;
  }

  .maker-contact {
    grid-column: 1;
    justify-self: center;
  }

  .hero {
    padding-bottom: 58px;
  }

  .hero-visual {
    height: min(105vw, 440px);
  }

  .how-it-works,
  .product-proof,
  .privacy,
  .pricing,
  .maker,
  .faq,
  .final-cta {
    padding-block: 56px;
  }

  .privacy-card {
    gap: 26px;
    padding: 26px 20px;
  }

  .privacy-points {
    display: flex;
    width: calc(100% + 20px);
    padding: 0 20px 12px 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .privacy-point {
    flex: 0 0 min(78vw, 275px);
    min-height: 118px;
    padding: 14px;
    scroll-snap-align: start;
  }

  .pricing-heading {
    margin-bottom: 36px;
  }

  .pricing-card {
    width: 100%;
    padding: 24px 22px;
  }

  .pricing-grid {
    display: grid;
    width: 100%;
    padding: 0;
    overflow: visible;
  }

  .pricing-card h3 {
    margin-bottom: 18px;
  }

  .pricing-price {
    font-size: 40px;
  }

  .pricing-card .check-list {
    margin-top: 20px;
  }

  .faq-layout {
    gap: 32px;
  }

  .faq-list summary {
    padding-block: 18px;
  }

}

@media (max-width: 420px) {
  .brand {
    gap: 7px;
    font-size: 13.5px;
  }

  .brand picture,
  .brand img {
    width: 32px;
    height: 32px;
  }

  .brand-full {
    display: none;
  }

  .brand-short {
    display: inline;
  }

  .nav-download {
    padding-inline: 13px;
    white-space: nowrap;
  }

  .nav-download-full {
    display: none;
  }

  .nav-download-short {
    display: inline;
  }

  .content-pills li {
    padding: 7px 10px;
    font-size: 12px;
  }

  .problem-compact h2 {
    font-size: 36px;
  }

  .proof-card {
    flex-basis: 342px;
    min-height: 710px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .workflow-stage {
    animation: none;
  }
}
