:root {
  --ink: #111111;
  --muted: #686a73;
  --surface: #ffffff;
  --canvas: #f6f7fb;
  --line: rgba(17, 17, 17, 0.09);
  --accent-a: #ff5b70;
  --accent-b: #d958d7;
  --accent-c: #7c4de8;
  --accent-soft: #f4edff;
  --shadow: 0 22px 60px rgba(40, 33, 62, 0.08);
  --shadow-small: 0 12px 34px rgba(40, 33, 62, 0.07);
  --radius-xl: 32px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
  background: rgba(246, 247, 251, 0.92);
  backdrop-filter: saturate(140%) blur(18px);
}

.nav {
  width: min(calc(100% - 40px), var(--content));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  box-shadow: 0 7px 18px rgba(143, 71, 181, 0.18);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #45474f;
  font-size: 14px;
  font-weight: 650;
}

.nav-links a {
  transition: color 160ms ease;
}

.nav-links a:hover {
  color: var(--ink);
}

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

.nav-menu {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--surface);
}

.button {
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 750;
  letter-spacing: -0.015em;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-dark {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 12px 26px rgba(17, 17, 17, 0.16);
}

.button-light {
  color: var(--ink);
  border: 1px solid var(--line);
  background: #fff;
}

.button-gradient {
  color: #fff;
  background: linear-gradient(120deg, var(--accent-a), var(--accent-b) 55%, var(--accent-c));
  box-shadow: 0 14px 28px rgba(196, 77, 192, 0.22);
}

.app-store {
  min-height: 54px;
  padding: 7px 17px 7px 14px;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  background: var(--ink);
  box-shadow: 0 12px 26px rgba(17, 17, 17, 0.16);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.app-store:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(17, 17, 17, 0.2);
}

.app-store svg {
  width: 27px;
  height: 31px;
  fill: currentColor;
}

.app-store-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.app-store-copy small {
  margin-bottom: 4px;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.app-store-copy strong {
  font-size: 20px;
  font-weight: 720;
  letter-spacing: -0.04em;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 66px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -280px auto auto 57%;
  width: 660px;
  height: 660px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(221, 102, 215, 0.16), rgba(245, 87, 112, 0.06) 48%, transparent 72%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.98fr);
  align-items: center;
  gap: clamp(54px, 7vw, 96px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  color: #4b4c55;
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-a), var(--accent-c));
  box-shadow: 0 0 0 5px rgba(213, 80, 205, 0.08);
}

.hero h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(52px, 6.5vw, 84px);
  line-height: 0.97;
  letter-spacing: -0.072em;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(110deg, var(--accent-a), var(--accent-b) 50%, var(--accent-c));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-copy {
  max-width: 610px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.5;
  letter-spacing: -0.02em;
}

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

.hero-trust {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #777983;
  font-size: 13px;
  line-height: 1.45;
}

.trust-avatars {
  display: flex;
}

.trust-avatars span {
  width: 34px;
  height: 34px;
  margin-left: -8px;
  display: grid;
  place-items: center;
  border: 3px solid var(--canvas);
  border-radius: 50%;
  font-size: 16px;
  background: #fff;
}

.trust-avatars span:first-child {
  margin-left: 0;
}

.hero-visual {
  position: relative;
  min-height: 658px;
}

.phone {
  position: absolute;
  overflow: hidden;
  width: 310px;
  padding: 10px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 45px;
  background: #121212;
  box-shadow: 0 38px 80px rgba(38, 30, 52, 0.17);
}

.phone::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 17px;
  left: 50%;
  width: 88px;
  height: 25px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #050505;
}

.phone img {
  width: 100%;
  border-radius: 36px;
}

.phone-main {
  top: 0;
  right: 32px;
  z-index: 2;
}

.phone-side {
  top: 148px;
  left: 4px;
  width: 256px;
  z-index: 1;
  transform: rotate(-4deg);
  opacity: 0.97;
}

.floating-chip {
  position: absolute;
  z-index: 4;
  min-height: 58px;
  padding: 10px 16px 10px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-small);
  font-size: 13px;
  font-weight: 720;
}

.floating-chip span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--accent-soft);
  font-size: 20px;
}

.chip-one {
  right: -8px;
  bottom: 84px;
}

.chip-two {
  left: 16px;
  bottom: 8px;
}

.platform-strip {
  padding: 0 0 54px;
}

.platform-card {
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-small);
}

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

.platform-logos {
  display: flex;
  align-items: center;
  gap: 11px;
}

.platform-logo {
  min-height: 42px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 14px;
  background: #f4f4f7;
  font-size: 13px;
  font-weight: 720;
  white-space: nowrap;
}

.platform-logo b {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  font-size: 12px;
}

.platform-logo.instagram b {
  background: linear-gradient(135deg, #8a3ab9, #e95950, #fccc63);
}

.platform-logo.tiktok b {
  background: #111;
}

.platform-logo.facebook b {
  background: #1877f2;
}

.section {
  padding: 92px 0;
}

.section-tight {
  padding-top: 42px;
}

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

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

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.058em;
}

.section-heading p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: -0.015em;
}

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

.problem-card {
  min-height: 246px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-small);
}

.problem-card .icon,
.feature-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: #f3f3f6;
  font-size: 24px;
}

.problem-card:nth-child(2) .icon {
  background: #fff5d7;
}

.problem-card:nth-child(3) .icon {
  background: var(--accent-soft);
}

.problem-card h3 {
  margin: 38px 0 10px;
  font-size: 25px;
  letter-spacing: -0.035em;
}

.problem-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.tutorial-shell {
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.tutorial-shell img {
  width: 100%;
  border-radius: 24px;
}

.tutorial-caption {
  padding: 28px 10px 2px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.tutorial-step {
  padding: 8px 16px;
}

.step-number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.tutorial-step h3 {
  margin: 16px 0 7px;
  font-size: 18px;
  letter-spacing: -0.025em;
}

.tutorial-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.features {
  display: grid;
  gap: 24px;
}

.feature-row {
  min-height: 680px;
  padding: clamp(30px, 5vw, 64px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
  gap: clamp(42px, 8vw, 92px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.feature-row.reverse {
  grid-template-columns: minmax(360px, 1.08fr) minmax(0, 0.92fr);
}

.feature-row.reverse .feature-copy {
  order: 2;
}

.feature-row.reverse .feature-visual {
  order: 1;
}

.feature-copy h3 {
  margin: 24px 0 16px;
  font-size: clamp(34px, 4.4vw, 55px);
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.feature-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.check-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin-top: 14px;
  padding-left: 30px;
  color: #373942;
  font-size: 15px;
  line-height: 1.45;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  font-size: 11px;
  font-weight: 800;
}

.feature-visual {
  min-height: 550px;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 32%, rgba(226, 120, 217, 0.18), transparent 42%),
    #f7f5fb;
}

.feature-visual .screen {
  position: relative;
  width: min(68%, 350px);
  padding: 8px;
  border-radius: 39px;
  background: #121212;
  box-shadow: 0 32px 60px rgba(32, 27, 40, 0.18);
}

.feature-visual .screen img {
  width: 100%;
  border-radius: 32px;
}

.feature-badge {
  position: absolute;
  right: 24px;
  bottom: 28px;
  max-width: 190px;
  padding: 14px 16px;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-small);
  font-size: 13px;
  font-weight: 720;
  line-height: 1.35;
}

.feature-badge b {
  display: block;
  margin-bottom: 3px;
  font-size: 17px;
  letter-spacing: -0.03em;
}

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

.mini-feature {
  min-height: 440px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-small);
}

.mini-feature h3 {
  margin: 22px 0 10px;
  font-size: 26px;
  letter-spacing: -0.04em;
}

.mini-feature p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.mini-screen {
  width: 76%;
  max-height: 270px;
  margin: 28px auto -64px;
  padding: 6px;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
  background: #111;
  box-shadow: 0 25px 45px rgba(30, 25, 39, 0.14);
}

.mini-screen img {
  border-radius: 24px 24px 0 0;
}

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

.showcase-media {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.showcase-media img {
  border-radius: 24px;
}

.showcase-copy h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.058em;
}

.showcase-copy p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.showcase-copy .button {
  margin-top: 30px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: 0 8px 26px rgba(40, 33, 62, 0.04);
}

.faq-item summary {
  padding: 24px 58px 24px 24px;
  list-style: none;
  position: relative;
  cursor: pointer;
  font-size: 17px;
  font-weight: 720;
  letter-spacing: -0.02em;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #f1f1f4;
  font-size: 20px;
  font-weight: 500;
}

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

.faq-answer {
  padding: 0 24px 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.cta {
  padding: 0 0 92px;
}

.cta-card {
  position: relative;
  width: min(calc(100% - 40px), var(--content));
  min-height: 430px;
  margin: 0 auto;
  padding: clamp(38px, 7vw, 78px);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: center;
  gap: 48px;
  border-radius: var(--radius-xl);
  color: #fff;
  background: #111;
}

.cta-card::before {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -230px;
  width: 570px;
  height: 570px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 36%, #fa6278, #cb57d8 44%, #6d45d6 72%, transparent 73%);
  opacity: 0.9;
}

.cta-copy {
  position: relative;
  z-index: 2;
}

.cta-copy h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.cta-copy p {
  max-width: 620px;
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.5;
}

.cta-icon {
  position: relative;
  z-index: 2;
  justify-self: end;
  width: 230px;
  height: 230px;
  padding: 18px;
  border-radius: 56px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  transform: rotate(6deg);
}

.cta-icon img {
  width: 100%;
  height: 100%;
  border-radius: 42px;
}

.site-footer {
  padding: 54px 0 32px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-grid {
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.7fr);
  gap: 50px;
}

.footer-brand p {
  max-width: 360px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.footer-column h3 {
  margin: 8px 0 18px;
  color: #787a83;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  margin: 13px 0;
  color: #34363d;
  font-size: 14px;
  font-weight: 620;
}

.footer-bottom {
  width: min(calc(100% - 40px), var(--content));
  margin: 42px auto 0;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: #858791;
  font-size: 12px;
  line-height: 1.5;
}

.legal-hero {
  padding: 78px 0 42px;
}

.legal-hero-inner {
  width: min(calc(100% - 40px), 900px);
  margin: 0 auto;
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(46px, 7vw, 76px);
  letter-spacing: -0.065em;
}

.legal-hero p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.legal-meta {
  margin-top: 24px;
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  color: #575962;
  background: #ececf1;
  font-size: 12px;
  font-weight: 680;
}

.legal-shell {
  width: min(calc(100% - 40px), 900px);
  margin: 0 auto 92px;
  padding: clamp(28px, 6vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.legal-shell h2 {
  margin: 44px 0 14px;
  font-size: 27px;
  letter-spacing: -0.035em;
}

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

.legal-shell h3 {
  margin: 26px 0 10px;
  font-size: 19px;
}

.legal-shell p,
.legal-shell li {
  color: #5d5f68;
  font-size: 15px;
  line-height: 1.72;
}

.legal-shell ul,
.legal-shell ol {
  padding-left: 22px;
}

.legal-shell a {
  color: #7647d9;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.support-hero {
  padding: 78px 0 50px;
}

.support-hero-inner {
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  align-items: center;
  gap: 64px;
}

.support-hero h1 {
  margin: 0;
  font-size: clamp(48px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.support-hero p {
  max-width: 600px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.support-contact {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow);
}

.support-contact h2 {
  margin: 0 0 10px;
  font-size: 27px;
}

.support-contact p {
  margin: 0 0 24px;
  font-size: 15px;
}

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

.support-card {
  min-height: 280px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-small);
}

.support-card h2 {
  margin: 26px 0 10px;
  font-size: 23px;
  letter-spacing: -0.035em;
}

.support-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.support-card a {
  margin-top: 22px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 740;
}

.status-card {
  margin-top: 22px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}

.status-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #176d48;
  font-size: 13px;
  font-weight: 740;
}

.status-pill::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #35c985;
  box-shadow: 0 0 0 5px rgba(53, 201, 133, 0.12);
}

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

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

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .nav-links {
    position: fixed;
    inset: 77px 16px auto;
    padding: 22px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    padding: 13px 14px;
    border-radius: 14px;
    background: #f6f6f8;
  }

  .nav-actions > .app-store {
    display: none;
  }

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

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

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

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

  .hero-actions,
  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    width: min(100%, 600px);
    margin: 0 auto;
  }

  .problem-grid,
  .mini-feature-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .problem-card {
    min-height: 0;
  }

  .feature-row,
  .feature-row.reverse {
    grid-template-columns: 1fr;
  }

  .feature-row.reverse .feature-copy,
  .feature-row.reverse .feature-visual {
    order: initial;
  }

  .feature-copy {
    text-align: center;
  }

  .check-list {
    max-width: 440px;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }

  .mini-feature {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 28px;
    min-height: 360px;
  }

  .mini-screen {
    width: 78%;
    max-height: 320px;
    margin: 16px auto -64px;
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .showcase,
  .support-hero-inner {
    grid-template-columns: 1fr;
  }

  .showcase-copy {
    text-align: center;
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  :root {
    --radius-xl: 28px;
    --radius-lg: 24px;
  }

  .nav {
    width: min(calc(100% - 28px), var(--content));
    min-height: 70px;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-grid,
  .platform-card,
  .section-inner,
  .cta-card,
  .footer-grid,
  .footer-bottom,
  .legal-hero-inner,
  .legal-shell,
  .support-hero-inner {
    width: min(calc(100% - 28px), var(--content));
  }

  .hero h1 {
    font-size: clamp(47px, 14vw, 66px);
  }

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

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

  .hero-actions > * {
    width: min(100%, 320px);
  }

  .hero-trust {
    max-width: 340px;
    margin-right: auto;
    margin-left: auto;
  }

  .hero-visual {
    min-height: 560px;
  }

  .phone-main {
    width: 270px;
    right: 4px;
  }

  .phone-side {
    top: 118px;
    left: -2px;
    width: 215px;
  }

  .chip-one {
    right: 0;
    bottom: 42px;
  }

  .chip-two {
    left: 0;
    bottom: -8px;
  }

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

  .platform-logos {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .section {
    padding: 68px 0;
  }

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

  .section-heading h2 {
    font-size: clamp(36px, 11.5vw, 52px);
  }

  .tutorial-shell {
    padding: 10px;
  }

  .tutorial-shell img {
    border-radius: 20px;
  }

  .tutorial-caption {
    grid-template-columns: 1fr;
    padding: 24px 4px 12px;
  }

  .tutorial-step {
    display: grid;
    grid-template-columns: 38px 1fr;
    column-gap: 12px;
  }

  .tutorial-step .step-number {
    grid-row: 1 / span 2;
  }

  .tutorial-step h3 {
    margin: 2px 0 6px;
  }

  .feature-row {
    min-height: 0;
    padding: 28px 18px;
    gap: 32px;
  }

  .feature-copy h3 {
    font-size: 36px;
  }

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

  .feature-visual {
    min-height: 500px;
  }

  .feature-visual .screen {
    width: min(75%, 310px);
  }

  .mini-feature {
    display: block;
    min-height: 450px;
  }

  .mini-screen {
    width: 70%;
    margin-top: 30px;
  }

  .showcase {
    gap: 38px;
  }

  .support-contact {
    padding: 26px;
  }

  .cta-card {
    min-height: 560px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-copy p {
    margin-right: auto;
    margin-left: auto;
  }

  .cta-copy .app-store {
    margin: 0 auto;
  }

  .cta-icon {
    justify-self: center;
    width: 180px;
    height: 180px;
    border-radius: 46px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .legal-hero {
    padding-top: 54px;
  }

  .legal-shell {
    padding: 28px 22px;
  }

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