:root {
  --navy: #071426;
  --navy-soft: #0d2038;
  --navy-card: #102742;
  --white: #ffffff;
  --muted: #c4cedb;
  --gold: #f6b84b;
  --orange: #ff8a3d;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(246, 184, 75, 0.14), transparent 28rem),
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.06), transparent 26rem),
    linear-gradient(160deg, var(--navy) 0%, #09192e 46%, #050b15 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header,
.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

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

.brand-logo img {
  display: block;
  width: clamp(190px, 22vw, 255px);
  height: auto;
  max-height: 74px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.34));
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.site-nav a,
.site-footer a {
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a {
  padding: 8px 12px;
}

.site-nav .download-link {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 11px 18px;
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.site-footer a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  width: min(1120px, calc(100% - 32px));
  min-height: 690px;
  margin: 0 auto;
  padding: 46px 0 64px;
}

.hero::before {
  position: absolute;
  inset: 0 -7vw;
  z-index: -2;
  background:
    radial-gradient(circle at 82% 44%, rgba(246, 184, 75, 0.28), transparent 18rem),
    linear-gradient(115deg, rgba(6, 24, 47, 0.98), rgba(4, 12, 24, 0.72));
  content: "";
}

.hero::after {
  position: absolute;
  right: -8vw;
  bottom: 24px;
  left: 38%;
  z-index: -1;
  height: 210px;
  border-bottom: 1px solid rgba(246, 184, 75, 0.28);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 85% 56%, rgba(246, 184, 75, 0.52), transparent 9rem),
    linear-gradient(105deg, transparent 10%, rgba(246, 184, 75, 0.3), transparent 68%);
  filter: blur(1px);
  opacity: 0.78;
  content: "";
}

.hero-content {
  max-width: 610px;
}

.hero-badge {
  display: inline-flex;
  margin: 0 0 22px;
  border: 1px solid rgba(246, 184, 75, 0.62);
  border-radius: 999px;
  padding: 8px 16px;
  color: var(--gold);
  background: rgba(246, 184, 75, 0.07);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.75rem, 5.6vw, 5.25rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-message-graphic {
  display: block;
  width: min(100%, 620px);
  height: auto;
  margin-top: 8px;
  border-radius: 8px;
  filter: drop-shadow(0 28px 60px rgba(0, 0, 0, 0.46));
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.store-button {
  display: inline-flex;
  min-width: 230px;
  flex-direction: column;
  justify-content: center;
  min-height: 58px;
  padding: 9px 18px;
  border: 1px solid rgba(246, 184, 75, 0.54);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #15110b;
  text-decoration: none;
  box-shadow: 0 18px 45px rgba(255, 138, 61, 0.22);
  cursor: default;
}

.store-button:not([aria-disabled="true"]) {
  cursor: pointer;
}

.store-button span {
  font-size: 0.78rem;
  font-weight: 800;
  opacity: 0.78;
}

.store-button strong {
  font-size: 1.1rem;
  line-height: 1.25;
}

.store-button-alt {
  background: transparent;
  color: var(--gold);
  box-shadow: none;
}

.hero-availability-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-panel {
  display: flex;
  justify-content: center;
}

.hero-phone-wrap {
  justify-content: center;
}

.hero-phone {
  width: min(100%, 330px);
  aspect-ratio: 1003 / 2048;
  border-radius: 34px;
}

.hero-phone::before {
  position: absolute;
  inset: 10px 26% auto;
  z-index: 1;
  height: 18px;
  border-radius: 999px;
  background: #020816;
  content: "";
}

.phone-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: #101923;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.phone-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section,
.page-main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 52px 0 34px;
}

.home-section {
  width: min(1180px, calc(100% - 32px));
}

.center-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin: 0 0 24px;
  text-align: center;
  font-size: clamp(1.55rem, 3vw, 2rem);
  line-height: 1.2;
}

.center-title::before,
.center-title::after {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
  content: "";
}

.center-title::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-heading {
  max-width: 660px;
  margin-bottom: 30px;
}

.section-heading h2,
.content-page h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.08;
}

.section-heading p,
.content-page p,
.support-grid p {
  color: var(--muted);
}

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

.feature-card,
.support-grid article,
.content-page {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.feature-card {
  min-height: 190px;
  padding: 22px 16px;
  text-align: center;
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    background 160ms ease;
}

.feature-card:hover {
  border-color: rgba(246, 184, 75, 0.34);
  background: rgba(255, 255, 255, 0.075);
  transform: translateY(-2px);
}

.feature-icon {
  display: inline-grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 8px;
  background: rgba(246, 184, 75, 0.14);
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.feature-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.feature-card h3 {
  margin: 18px 0 8px;
  font-size: 1rem;
  line-height: 1.25;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.pricing-section {
  padding-top: 28px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  width: min(900px, 100%);
  margin: 0 auto;
}

.plan-card {
  position: relative;
  min-height: 230px;
  padding: 30px 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(16, 39, 66, 0.84), rgba(5, 14, 28, 0.72)),
    var(--navy-card);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.plan-card-plus {
  border-color: rgba(246, 184, 75, 0.84);
}

.plan-card h3 {
  margin: 0 0 14px;
  font-size: 1.65rem;
  line-height: 1.1;
}

.plan-card h3 strong {
  color: var(--gold);
}

.plan-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: var(--white);
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 28px;
}

.plan-card li::before {
  position: absolute;
  top: 0.24em;
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  content: "";
}

.plan-card li::after {
  position: absolute;
  top: 0.58em;
  left: 5px;
  width: 7px;
  height: 4px;
  border-bottom: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  content: "";
  transform: rotate(-45deg);
}

.recommended {
  position: absolute;
  top: 0;
  right: 28px;
  border-radius: 0 0 6px 6px;
  padding: 7px 12px;
  background: var(--gold);
  color: #131313;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-note {
  margin: 16px 0 0;
  color: var(--muted);
  text-align: center;
}

.trust-strip,
.final-cta {
  width: min(1120px, calc(100% - 32px));
  margin: 24px auto 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-strip article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 22px 28px;
}

.trust-strip article + article {
  border-left: 1px solid var(--line);
}

.trust-strip span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(246, 184, 75, 0.48);
  border-radius: 8px;
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 900;
}

.trust-strip h3,
.trust-strip p {
  margin: 0;
}

.trust-strip h3 {
  font-size: 1rem;
  line-height: 1.25;
}

.trust-strip p {
  color: var(--muted);
  font-size: 0.94rem;
}

.final-cta {
  position: relative;
  overflow: hidden;
  margin-top: 28px;
  padding: 34px 24px;
  text-align: center;
}

.final-cta::after {
  position: absolute;
  right: -10%;
  bottom: -30px;
  width: 45%;
  height: 150px;
  border-top: 1px solid rgba(246, 184, 75, 0.35);
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(246, 184, 75, 0.3), transparent 66%);
  content: "";
}

.final-cta h2,
.final-cta p,
.final-cta a {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  line-height: 1.15;
}

.final-cta p {
  max-width: 560px;
  margin: 10px auto 22px;
  color: var(--muted);
}

.page-main {
  padding: 54px 0 88px;
}

.content-page {
  max-width: 860px;
  padding: clamp(24px, 5vw, 52px);
}

.policy-page {
  max-width: 1040px;
}

.content-page h2,
.support-grid h2 {
  margin: 34px 0 8px;
  font-size: 1.22rem;
  line-height: 1.25;
}

.content-page a {
  color: var(--gold);
  font-weight: 800;
}

.updated {
  margin-top: 10px;
  font-size: 0.95rem;
}

.policy-hero {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin: 28px 0 30px;
  padding: 20px;
  border: 1px solid rgba(246, 184, 75, 0.22);
  border-radius: 8px;
  background: rgba(246, 184, 75, 0.08);
}

.policy-hero img {
  display: block;
  width: 104px;
  height: 104px;
  border-radius: 8px;
  object-fit: cover;
}

.policy-hero p {
  margin: 0;
}

.policy-hero .updated {
  margin-bottom: 8px;
  color: var(--gold);
  font-weight: 900;
}

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

.policy-grid article,
.service-list,
.policy-contact {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 20, 38, 0.38);
}

.policy-grid article {
  padding: 20px;
}

.policy-grid h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  line-height: 1.25;
}

.policy-grid p,
.policy-grid ul,
.policy-list {
  margin-bottom: 0;
}

.policy-grid ul,
.policy-list {
  color: var(--muted);
  padding-left: 22px;
}

.policy-grid li,
.policy-list li {
  margin: 6px 0;
}

.service-list,
.policy-contact {
  margin: 16px 0;
  padding: 18px 20px;
}

.service-list p,
.policy-contact p {
  margin: 8px 0;
}

.service-list strong,
.policy-contact strong {
  color: var(--white);
}

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

.support-grid article {
  padding: 22px;
}

.support-grid h2 {
  margin-top: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px 0 38px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
  font-size: 0.92rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.site-footer a {
  padding: 6px 9px;
}

@media (max-width: 860px) {
  .site-header {
    align-items: center;
    flex-direction: column;
    gap: 14px;
  }

  .site-nav {
    justify-content: center;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 34px;
    padding-top: 28px;
    text-align: center;
  }

  .hero-panel {
    justify-content: center;
  }

  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .trust-strip article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 620px) {
  .site-header,
  .site-footer,
  .hero,
  .section,
  .page-main,
  .trust-strip,
  .final-cta {
    width: min(100% - 24px, 1120px);
  }

  .site-header {
    padding: 14px 0 12px;
  }

  .site-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .site-nav a {
    display: grid;
    min-height: 38px;
    place-items: center;
    padding: 7px 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.035);
    font-size: 0.86rem;
  }

  .site-nav .download-link {
    grid-column: 1 / -1;
    margin-top: 0;
    text-align: center;
  }

  .brand-logo img {
    width: min(82vw, 250px);
    max-height: 78px;
  }

  h1 {
    font-size: clamp(2.28rem, 12vw, 3.55rem);
  }

  .hero {
    padding: 22px 0 42px;
  }

  .hero::before {
    inset: 0 -12px;
  }

  .hero::after {
    right: -18px;
    bottom: 150px;
    left: 8%;
    height: 120px;
    opacity: 0.45;
  }

  .hero-badge {
    justify-content: center;
    width: 100%;
    margin-bottom: 14px;
    padding: 7px 10px;
    font-size: 0.7rem;
  }

  .hero-message-graphic {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.38));
  }

  .hero-phone {
    width: min(72vw, 260px);
    border-radius: 26px;
  }

  .cta-row,
  .store-button,
  .support-grid {
    width: 100%;
  }

  .store-button {
    min-width: 0;
    min-height: 54px;
    text-align: center;
  }

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

  .center-title {
    gap: 12px;
    margin-bottom: 18px;
    font-size: clamp(1.3rem, 7vw, 1.7rem);
  }

  .center-title::before,
  .center-title::after {
    width: 24px;
  }

  .pricing-grid {
    gap: 16px;
  }

  .feature-card {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    min-height: auto;
    padding: 18px;
    text-align: left;
  }

  .feature-icon {
    grid-row: span 2;
    width: 52px;
    height: 52px;
  }

  .feature-icon svg {
    width: 30px;
    height: 30px;
  }

  .feature-card h3 {
    margin: 0 0 4px;
  }

  .feature-card p {
    grid-column: 2;
  }

  .plan-card,
  .trust-strip article {
    padding: 22px;
  }

  .trust-strip article {
    grid-template-columns: 1fr;
  }

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

  .policy-hero img {
    width: 88px;
    height: 88px;
  }

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

@media (max-width: 420px) {
  .site-header,
  .site-footer,
  .hero,
  .section,
  .page-main,
  .trust-strip,
  .final-cta {
    width: min(100% - 18px, 1120px);
  }

  .brand-logo img {
    width: min(90vw, 230px);
  }

  .site-nav a {
    min-height: 36px;
    font-size: 0.8rem;
  }

  .hero-message-graphic {
    width: calc(100% + 6px);
    margin-left: -3px;
  }

  .hero-phone {
    width: min(78vw, 236px);
  }

  .feature-card {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
    padding: 16px;
  }

  .feature-icon {
    width: 46px;
    height: 46px;
  }

  .feature-icon svg {
    width: 27px;
    height: 27px;
  }

  .feature-card p {
    grid-column: 2;
  }

  .plan-card,
  .content-page,
  .policy-grid article,
  .support-grid article,
  .trust-strip article,
  .final-cta {
    padding: 18px;
  }

  .recommended {
    right: 18px;
  }

  .trust-strip span {
    width: 46px;
    height: 46px;
  }
}
