@font-face {
  font-family: "Poppins";
  src: url("fonts/TRRWeb-Poppins-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("fonts/TRRWeb-Poppins-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("fonts/TRRWeb-Poppins-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --ink: #f7f7fa;
  --muted: #9898a2;
  --quiet: #71717b;
  --canvas: #0d0d0f;
  --canvas-deep: #08080a;
  --surface: #17171a;
  --surface-high: #222326;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.2);
  --cream: #e8d1c1;
  --blue: #0a39ff;
  --blue-soft: #7388ff;
  --success: #b5f3cf;
  --danger: #e8494b;
  --gradient: linear-gradient(102deg, var(--cream) 0%, #a9ade3 42%, var(--blue) 100%);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.42);
  --content: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 13% 7%, rgba(61, 67, 153, 0.22), transparent 28rem),
    radial-gradient(circle at 85% 18%, rgba(111, 91, 68, 0.19), transparent 31rem),
    var(--canvas);
  font-family: "Poppins", "Avenir Next", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
}

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

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

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  color: #09090b;
  background: #fff;
  border-radius: 999px;
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(13, 13, 15, 0.78);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.nav-shell,
.section-shell,
.footer-shell,
.document-shell {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 40px;
  height: 40px;
  overflow: hidden;
  background: #08080a;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #b7b7bf;
  font-size: 13px;
}

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

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: #fff;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-cta:hover,
.button:hover {
  border-color: rgba(255, 255, 255, 0.42);
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--gradient);
  border: 0;
  box-shadow: 0 15px 46px rgba(10, 57, 255, 0.25);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.045);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  content: "";
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.75fr);
  align-items: center;
  gap: 72px;
  padding-block: 82px 110px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: #c9c9d0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 1px;
  content: "";
  background: var(--gradient);
}

.hero h1,
.page-hero h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(46px, 6.2vw, 88px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.gradient-text {
  color: transparent;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-copy {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 25px 0 0;
  color: var(--quiet);
  font-size: 11px;
}

.hero-note span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-note span::before {
  width: 5px;
  height: 5px;
  content: "";
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(181, 243, 207, 0.7);
}

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

.phone-stage::before {
  position: absolute;
  width: min(36vw, 470px);
  aspect-ratio: 1;
  content: "";
  background: conic-gradient(from 40deg, rgba(10, 57, 255, 0.42), rgba(232, 209, 193, 0.24), rgba(61, 138, 108, 0.28), rgba(10, 57, 255, 0.42));
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.54;
}

.phone {
  position: relative;
  width: 310px;
  min-height: 630px;
  padding: 9px;
  overflow: hidden;
  background: #030304;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 48px;
  box-shadow: 0 48px 120px rgba(0, 0, 0, 0.66), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: rotate(3deg);
}

.phone-screen {
  position: relative;
  min-height: 610px;
  padding: 47px 17px 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 4%, rgba(73, 60, 48, 0.26), transparent 180px),
    #111114;
  border-radius: 40px;
}

.phone-island {
  position: absolute;
  top: 14px;
  left: 50%;
  width: 94px;
  height: 25px;
  background: #000;
  border-radius: 999px;
  transform: translateX(-50%);
}

.mock-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.mock-nav i {
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid #67676e;
  border-radius: 50%;
}

.mock-summary {
  padding: 35px 4px 26px;
  text-align: center;
}

.mock-count {
  font-size: 62px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.06em;
}

.mock-label {
  margin-top: 7px;
  color: #85858d;
  font-size: 12px;
}

.mock-history {
  display: inline-flex;
  margin-top: 14px;
  padding: 7px 12px;
  color: #a2a2aa;
  background: #19191c;
  border-radius: 999px;
  font-size: 10px;
}

.mock-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  padding: 14px;
  background: #202125;
  border-radius: 14px;
}

.mock-profile {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.mock-avatar {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  background: var(--gradient);
  border-radius: 50%;
}

.mock-lines strong,
.mock-lines small {
  display: block;
}

.mock-lines strong {
  font-size: 10px;
  font-weight: 500;
}

.mock-lines small {
  margin-top: 2px;
  color: #74747d;
  font-size: 8px;
}

.mock-pill {
  padding: 6px 11px;
  color: #fff;
  background: #34353b;
  border-radius: 999px;
  font-size: 8px;
}

.mock-limit strong {
  font-size: 16px;
}

.mock-limit small {
  display: block;
  color: #74747d;
  font-size: 8px;
}

.mock-list-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 17px 3px 10px;
  font-size: 10px;
}

.mock-list-title span:last-child {
  color: #777780;
}

.mock-post {
  display: grid;
  grid-template-columns: 46px 1fr 18px;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mock-thumb {
  width: 46px;
  height: 46px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent),
    linear-gradient(155deg, #734f54, #1e2239);
  border-radius: 9px;
}

.mock-post:nth-child(2) .mock-thumb {
  background: linear-gradient(155deg, #5e715e, #23252e);
}

.mock-check {
  width: 17px;
  height: 17px;
  border: 1px solid #64646c;
  border-radius: 50%;
}

.mock-action {
  position: absolute;
  right: 17px;
  bottom: 17px;
  left: 17px;
  padding: 14px;
  text-align: center;
  background: var(--gradient);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
}

.section {
  padding-block: 110px;
}

.section-rule {
  border-top: 1px solid var(--line);
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 54px;
}

.section-header h2,
.cta-band h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.section-header p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.feature-card {
  position: relative;
  min-height: 300px;
  padding: 30px;
  overflow: hidden;
  background: linear-gradient(155deg, rgba(42, 43, 48, 0.82), rgba(20, 20, 23, 0.94));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.feature-card:nth-child(1),
.feature-card:nth-child(4) {
  grid-column: span 7;
}

.feature-card:nth-child(2),
.feature-card:nth-child(3) {
  grid-column: span 5;
}

.feature-index {
  color: #696973;
  font-size: 11px;
  letter-spacing: 0.15em;
}

.feature-card h3 {
  max-width: 420px;
  margin: 90px 0 12px;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.feature-card p {
  max-width: 490px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.feature-glow {
  position: absolute;
  top: -110px;
  right: -100px;
  width: 250px;
  height: 250px;
  background: rgba(10, 57, 255, 0.25);
  border-radius: 50%;
  filter: blur(55px);
}

.steps {
  counter-reset: steps;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.step {
  counter-increment: steps;
  min-height: 290px;
  padding: 32px 34px 34px 0;
  border-right: 1px solid var(--line);
}

.step + .step {
  padding-left: 34px;
}

.step:last-child {
  border-right: 0;
}

.step::before {
  color: #676770;
  content: "0" counter(steps);
  font-size: 11px;
  letter-spacing: 0.16em;
}

.step h3 {
  margin: 108px 0 10px;
  font-size: 21px;
  font-weight: 500;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.privacy-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 76px;
  padding: 64px;
  background:
    radial-gradient(circle at 12% 25%, rgba(10, 57, 255, 0.18), transparent 340px),
    linear-gradient(145deg, #222226, #141416);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.privacy-panel h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.privacy-list {
  display: grid;
  gap: 0;
}

.privacy-item {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.privacy-item:first-child {
  padding-top: 0;
}

.privacy-item:last-child {
  padding-bottom: 0;
  border: 0;
}

.privacy-item i {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  background: var(--gradient);
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px #202125;
}

.privacy-item strong {
  display: block;
  margin-bottom: 3px;
  font-size: 14px;
  font-weight: 500;
}

.privacy-item span {
  color: var(--muted);
  font-size: 12px;
}

.plan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.plan-card {
  padding: 34px;
  background: linear-gradient(180deg, #242428, #101012);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.plan-card.pro {
  position: relative;
  border-color: transparent;
  background:
    linear-gradient(#171719, #171719) padding-box,
    linear-gradient(135deg, rgba(232, 209, 193, 0.8), rgba(10, 57, 255, 0.78), transparent) border-box;
}

.plan-kicker {
  color: #9d9da5;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.plan-card h3 {
  margin: 35px 0 10px;
  font-size: 30px;
  font-weight: 500;
}

.plan-card > p {
  min-height: 52px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.plan-points {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: #d1d1d6;
  font-size: 12px;
}

.plan-points li::before {
  margin-right: 9px;
  color: var(--success);
  content: "✓";
}

.legal-note {
  margin: 28px 0 0;
  color: var(--quiet);
  font-size: 11px;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 64px;
  background: linear-gradient(120deg, rgba(232, 209, 193, 0.12), rgba(10, 57, 255, 0.16));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.page-hero {
  max-width: 870px;
  padding-block: 112px 80px;
}

.page-hero h1 {
  font-size: clamp(44px, 6vw, 76px);
}

.page-hero p {
  max-width: 680px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-top: 25px;
  color: var(--quiet);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 64px;
  padding-bottom: 110px;
}

.contact-card {
  position: sticky;
  top: 110px;
  align-self: start;
  padding: 32px;
  background: linear-gradient(160deg, #26262b, #151517);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.contact-card h2 {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 500;
}

.contact-card p {
  margin: 0 0 25px;
  color: var(--muted);
  font-size: 13px;
}

.contact-address {
  display: block;
  margin-bottom: 22px;
  overflow-wrap: anywhere;
  color: #fff;
  font-size: 14px;
}

.support-content h2,
.legal-content h2 {
  margin: 0 0 22px;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.support-content h2:not(:first-child) {
  margin-top: 65px;
}

.troubleshooting {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
  counter-reset: troubleshoot;
}

.troubleshooting li {
  counter-increment: troubleshoot;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: start;
  gap: 17px;
  min-height: 96px;
  padding: 21px 22px;
  background:
    linear-gradient(145deg, rgba(38, 38, 43, 0.82), rgba(20, 20, 23, 0.94));
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.troubleshooting li::before {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #f4f4f7;
  content: counter(troubleshoot);
  background:
    linear-gradient(#25252a, #25252a) padding-box,
    var(--gradient) border-box;
  border: 1px solid transparent;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
}

.troubleshooting-copy {
  min-width: 0;
  padding-top: 1px;
}

.troubleshooting-copy strong {
  display: block;
  color: #ececf0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}

.troubleshooting-copy p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

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

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

.faq-list summary {
  position: relative;
  padding: 22px 48px 22px 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 7px;
  width: 17px;
  height: 17px;
  content: "+";
  color: #8c8c95;
  font-size: 20px;
  font-weight: 400;
  line-height: 15px;
  transform: translateY(-50%);
}

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

.faq-answer {
  max-width: 720px;
  padding: 0 45px 24px 0;
  color: var(--muted);
  font-size: 13px;
}

.faq-answer p {
  margin: 0;
}

.faq-answer a,
.legal-content a {
  color: #c2c9ff;
  text-decoration: underline;
  text-decoration-color: rgba(194, 201, 255, 0.35);
  text-underline-offset: 3px;
}

.document-shell {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  justify-content: space-between;
  gap: 70px;
  padding-bottom: 120px;
}

.document-nav {
  position: sticky;
  top: 112px;
  align-self: start;
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.document-nav strong {
  display: block;
  margin-bottom: 15px;
  color: #e5e5e9;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.document-nav a {
  display: block;
  padding: 6px 0;
  color: var(--quiet);
  font-size: 11px;
  transition: color 150ms ease;
}

.document-nav a:hover {
  color: #fff;
}

.legal-content section {
  padding: 0 0 46px;
  scroll-margin-top: 110px;
}

.legal-content section + section {
  padding-top: 46px;
  border-top: 1px solid var(--line);
}

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

.legal-content h3 {
  margin: 28px 0 8px;
  color: #e9e9ed;
  font-size: 15px;
  font-weight: 500;
}

.legal-content p,
.legal-content li {
  color: #a5a5ae;
  font-size: 13px;
}

.legal-content p {
  margin: 0 0 15px;
}

.legal-content ul,
.legal-content ol {
  display: grid;
  gap: 9px;
  margin: 15px 0;
  padding-left: 21px;
}

.data-table {
  width: 100%;
  margin: 22px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-sm);
}

.data-table table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  padding: 15px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.data-table th {
  color: #d9d9de;
  background: #202024;
  font-size: 11px;
  font-weight: 500;
}

.data-table td {
  color: var(--muted);
  background: rgba(23, 23, 26, 0.58);
  font-size: 11px;
}

.data-table tr:last-child td {
  border-bottom: 0;
}

.notice {
  margin: 25px 0;
  padding: 20px 22px;
  color: #bfc0c7;
  background: linear-gradient(135deg, rgba(232, 209, 193, 0.08), rgba(10, 57, 255, 0.09));
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 12px;
}

.site-footer {
  padding-block: 58px 34px;
  border-top: 1px solid var(--line);
}

.footer-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 40px;
}

.footer-copy {
  max-width: 400px;
  margin: 17px 0 0;
  color: var(--quiet);
  font-size: 11px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 10px 45px;
  color: #a3a3ab;
  font-size: 12px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin-top: 54px;
  padding-top: 25px;
  color: #606068;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

  .nav-links {
    position: absolute;
    top: 66px;
    right: 20px;
    left: 20px;
    display: none;
    align-items: stretch;
    padding: 18px;
    background: rgba(24, 24, 27, 0.98);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    padding: 10px 8px;
  }

  .nav-cta {
    margin-top: 4px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-top: 90px;
    text-align: center;
  }

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

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

  .phone-stage {
    min-height: 650px;
  }

  .phone-stage::before {
    width: 430px;
  }

  .section-header {
    display: block;
  }

  .section-header p {
    margin-top: 20px;
  }

  .feature-card:nth-child(n) {
    grid-column: span 6;
  }

  .privacy-panel {
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 45px;
  }

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

  .contact-card {
    position: static;
  }

  .document-shell {
    grid-template-columns: 1fr;
  }

  .document-nav {
    position: static;
    display: none;
  }
}

@media (max-width: 640px) {
  .nav-shell,
  .section-shell,
  .footer-shell,
  .document-shell {
    width: min(calc(100% - 28px), var(--content));
  }

  .nav-shell {
    min-height: 68px;
  }

  .hero {
    min-height: 0;
    padding-block: 74px 78px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 44px;
  }

  .hero-copy,
  .page-hero p {
    font-size: 15px;
  }

  .phone {
    width: 282px;
    transform: rotate(1.5deg);
  }

  .section {
    padding-block: 78px;
  }

  .section-header {
    margin-bottom: 36px;
  }

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

  .feature-card:nth-child(n) {
    min-height: 270px;
    grid-column: auto;
  }

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

  .step,
  .step + .step {
    min-height: 230px;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .step h3 {
    margin-top: 65px;
  }

  .privacy-panel,
  .cta-band {
    padding: 30px;
    border-radius: 24px;
  }

  .cta-band {
    display: block;
  }

  .cta-band .button {
    margin-top: 28px;
  }

  .page-hero {
    padding-block: 78px 58px;
  }

  .support-grid,
  .document-shell {
    padding-bottom: 80px;
  }

  .troubleshooting li {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    padding: 18px;
  }

  .troubleshooting li::before {
    width: 30px;
    height: 30px;
  }

  .data-table,
  .data-table table,
  .data-table tbody,
  .data-table tr,
  .data-table th,
  .data-table td {
    display: block;
    width: 100%;
  }

  .data-table thead {
    display: none;
  }

  .data-table tr:not(:last-child) td:last-child {
    border-bottom: 1px solid var(--line);
  }

  .data-table td {
    border-bottom: 0;
  }

  .data-table td::before {
    display: block;
    margin-bottom: 4px;
    color: #d9d9de;
    content: attr(data-label);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .footer-top,
  .footer-bottom {
    display: block;
  }

  .footer-links {
    margin-top: 35px;
  }

  .footer-bottom span {
    display: block;
    margin-top: 8px;
  }
}

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

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

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