:root {
  --bg: #ffffff;
  --bg-muted: #f7f8fb;
  --text: #111827;
  --muted: #5f6b7a;
  --line: #e5e9f0;
  --accent: #6d5dfc;
  --accent-dark: #4937d4;
  --accent-teal: #6fd8c7;
  --accent-soft: #eef0ff;
  --navy: #0d1b2a;
  --shadow: 0 18px 48px rgba(17, 24, 39, 0.08);
  --glow: 0 22px 70px rgba(109, 93, 252, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(229, 233, 240, 0.82);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 800;
  font-size: 1.15rem;
}

.brand:hover {
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-teal));
  color: #fff;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(109, 93, 252, 0.22);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
  font-weight: 650;
}

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

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 76px;
  background:
    linear-gradient(rgba(109, 93, 252, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109, 93, 252, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 82% 8%, rgba(111, 216, 199, 0.24), transparent 30%),
    radial-gradient(circle at 8% 18%, rgba(109, 93, 252, 0.16), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f8f9fd 100%);
  background-size: 34px 34px, 34px 34px, auto, auto, auto;
}

.hero-shape {
  position: absolute;
  border: 1px solid rgba(109, 93, 252, 0.16);
  border-radius: 28px;
  transform: rotate(18deg);
  pointer-events: none;
}

.hero-shape-one {
  width: 190px;
  height: 190px;
  top: 130px;
  right: -72px;
  background: rgba(255, 255, 255, 0.36);
}

.hero-shape-two {
  width: 116px;
  height: 116px;
  left: -42px;
  bottom: 72px;
  background: rgba(111, 216, 199, 0.1);
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 42px;
  align-items: center;
}

.hero-copy,
.hero-showcase,
.split-section > *,
.product-grid > * {
  min-width: 0;
}

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

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

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

h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.8rem, 11vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 8vw, 3.1rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-description,
.section-heading p,
.section-copy,
.card p,
.feature-card p,
.plan-fit,
.contact-card p,
.legal-page p,
.legal-page li,
.copy-card p,
.pricing-note,
.testing-note,
.footer-note {
  color: var(--muted);
}

.hero-description {
  margin: 22px 0 0;
  max-width: 690px;
  font-size: 1.16rem;
}

.testing-note {
  margin: 14px 0 0;
  max-width: 560px;
  font-size: 0.98rem;
}

.cta-row,
.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-row {
  margin-top: 30px;
}

.store-row {
  margin-top: 14px;
}

.button,
.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), #4968ff);
  color: #fff;
  box-shadow: 0 12px 28px rgba(109, 93, 252, 0.28);
}

.button-primary:hover {
  background: linear-gradient(135deg, var(--accent-dark), #2f4ee8);
}

.button-secondary,
.store-button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  color: var(--navy);
}

.store-button {
  min-height: 44px;
  color: var(--muted);
  cursor: not-allowed;
}

.store-button:hover {
  text-decoration: none;
}

.hero-showcase {
  position: relative;
  width: min(100%, 470px);
  min-height: 560px;
  justify-self: center;
}

.phone-mockup {
  position: relative;
  overflow: hidden;
  width: min(100%, 310px);
  max-width: 100%;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(109, 93, 252, 0.18);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(246, 248, 255, 0.76));
  box-shadow: var(--shadow), var(--glow);
}

.phone-mockup::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
  pointer-events: none;
}

.phone-mockup img {
  width: 100%;
  max-width: 100%;
  height: 520px;
  border-radius: 22px;
  object-fit: cover;
  object-position: top center;
  background: #0a0f0f;
}

.phone-main {
  width: min(100%, 330px);
  margin-left: auto;
}

.phone-float {
  position: absolute;
  left: 0;
  bottom: 38px;
  width: min(46%, 210px);
  box-shadow: 0 22px 60px rgba(13, 27, 42, 0.17);
}

.phone-float img {
  height: 360px;
}

.showcase-card {
  position: absolute;
  right: 10px;
  bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 250px;
  padding: 14px 16px;
  border: 1px solid rgba(109, 93, 252, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.11);
  backdrop-filter: blur(14px);
}

.showcase-card p {
  margin: 0;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 800;
}

.status-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--accent-teal);
  box-shadow: 0 0 0 6px rgba(111, 216, 199, 0.18);
}

.section {
  padding: 76px 0;
}

.section-muted {
  background:
    radial-gradient(circle at 8% 12%, rgba(109, 93, 252, 0.06), transparent 24%),
    var(--bg-muted);
}

.split-section,
.product-grid {
  display: grid;
  gap: 30px;
}

.section-copy p {
  margin: 0 0 16px;
  font-size: 1.05rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 36px;
}

.section-heading p {
  margin: 14px 0 0;
  font-size: 1.05rem;
}

.glass-card,
.card,
.feature-card,
.pricing-card,
.contact-card {
  border: 1px solid rgba(229, 233, 240, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.05);
}

.glass-card {
  border-color: rgba(109, 93, 252, 0.16);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(247, 248, 255, 0.78));
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.copy-card {
  align-self: center;
  padding: 28px;
}

.copy-card p {
  margin: 14px 0 0;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.pricing-card li {
  color: var(--muted);
}

.check-list li::before,
.pricing-card li::before {
  content: "\2713";
  margin-right: 8px;
  color: var(--accent-dark);
  font-weight: 900;
}

.screenshot-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
  max-width: 560px;
  justify-self: center;
}

.screenshot-pair .phone-mockup {
  width: 100%;
  padding: 8px;
  border-radius: 24px;
}

.screenshot-pair .phone-mockup:nth-child(2) {
  margin-top: 34px;
}

.screenshot-pair img {
  height: 410px;
  border-radius: 18px;
}

figcaption {
  padding: 10px 4px 2px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

.phone-wide {
  width: min(100%, 340px);
  justify-self: center;
}

.phone-wide img {
  height: 620px;
}

.owner-grid,
.feature-grid,
.pricing-grid {
  display: grid;
  gap: 16px;
}

.card,
.feature-card {
  padding: 22px;
}

.card p,
.feature-card p {
  margin: 0;
}

.feature-card {
  min-height: 142px;
}

.steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.steps span {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 800;
}

.steps p {
  margin: 0;
  color: var(--navy);
  font-weight: 750;
}

.pricing-card {
  position: relative;
  padding: 24px;
}

.pricing-card.featured {
  border-color: rgba(109, 93, 252, 0.48);
  box-shadow: 0 18px 44px rgba(109, 93, 252, 0.13), 0 0 0 1px rgba(111, 216, 199, 0.18);
}

.badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.currency-pair {
  min-height: 76px;
}

.price,
.price-usd {
  margin: 8px 0;
  color: var(--navy);
  font-size: 2rem;
  font-weight: 850;
  line-height: 1;
}

.price span {
  font-size: 0.92rem;
  font-weight: 750;
}

.price-alt,
[data-currency="usd"] .price-zar {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 750;
  line-height: 1.35;
}

[data-currency="usd"] .price-usd {
  margin: 8px 0;
  color: var(--navy);
  font-size: 2rem;
  font-weight: 850;
  line-height: 1;
}

[data-currency="usd"] .price-zar {
  font-size: 0.96rem;
}

.plan-fit {
  margin: 0 0 18px;
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-note {
  margin: 18px 0 0;
  font-size: 0.95rem;
}

.contact-card {
  display: grid;
  gap: 24px;
  padding: 28px;
}

.contact-card h2 {
  font-size: clamp(2rem, 8vw, 2.8rem);
}

.contact-card p {
  margin: 14px 0 0;
}

.contact-actions p {
  margin: 12px 0 0;
  font-weight: 700;
}

.site-footer {
  padding: 38px 0 30px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

.footer-brand,
.footer-column {
  min-width: 0;
}

.footer-brand {
  max-width: 420px;
}

.footer-logo {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.site-footer p,
.site-footer a,
.site-footer h2 {
  word-break: normal;
  overflow-wrap: normal;
  white-space: normal;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-brand p + p {
  margin-top: 7px;
}

.footer-note {
  font-size: 0.84rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-content: start;
}

.site-footer .footer-column h2 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-footer .footer-column a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
}

.site-footer .footer-column a:hover {
  color: var(--accent-dark);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
}

.footer-links a {
  color: var(--muted);
  font-weight: 700;
}

.legal-page {
  padding: 54px 0 72px;
}

.legal-page article {
  max-width: 840px;
}

.legal-page h1 {
  font-size: clamp(2.4rem, 9vw, 4rem);
}

.legal-page h2 {
  margin-top: 34px;
  font-size: 1.5rem;
}

.legal-page p,
.legal-page li {
  font-size: 1rem;
}

.notice {
  margin: 24px 0;
  padding: 16px;
  border: 1px solid rgba(109, 93, 252, 0.2);
  border-radius: var(--radius);
  background: var(--accent-soft);
  color: var(--navy);
}

.content-hero {
  padding: 72px 0 42px;
  background:
    radial-gradient(circle at 84% 8%, rgba(111, 216, 199, 0.18), transparent 28%),
    radial-gradient(circle at 8% 18%, rgba(109, 93, 252, 0.12), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f8f9fd 100%);
}

.content-hero .container {
  max-width: 900px;
}

.content-hero h1 {
  font-size: clamp(2.6rem, 7vw, 4.4rem);
}

.content-hero p {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.1rem;
}

.content-section {
  padding: 42px 0 76px;
}

.content-grid,
.docs-grid,
.support-grid {
  display: grid;
  gap: 16px;
}

.article-card,
.link-card {
  border: 1px solid rgba(229, 233, 240, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.05);
}

.article-card {
  padding: 24px;
}

.article-card + .article-card {
  margin-top: 16px;
}

.article-card p,
.article-card li,
.link-card p {
  color: var(--muted);
}

.article-card ul,
.article-card ol {
  margin: 12px 0 0;
  padding-left: 1.25rem;
}

.article-card li + li {
  margin-top: 8px;
}

.link-card {
  display: block;
  padding: 22px;
  color: inherit;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.link-card:hover {
  border-color: rgba(109, 93, 252, 0.35);
  box-shadow: var(--shadow);
  text-decoration: none;
  transform: translateY(-1px);
}

.link-card h3,
.link-card p {
  margin: 0;
}

.link-card p {
  margin-top: 8px;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.placeholder-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.placeholder-list li {
  padding: 12px 14px;
  border: 1px dashed rgba(109, 93, 252, 0.32);
  border-radius: var(--radius);
  background: rgba(238, 240, 255, 0.5);
  color: var(--muted);
}

@media (max-width: 520px) {
  .hero-showcase {
    min-height: 500px;
  }

  .phone-main {
    width: 78%;
  }

  .phone-main img {
    height: 460px;
  }

  .phone-float {
    width: 45%;
    bottom: 48px;
  }

  .phone-float img {
    height: 300px;
  }

  .showcase-card {
    right: 0;
    max-width: 210px;
  }

  .screenshot-pair img {
    height: 330px;
  }

  .phone-wide img {
    height: 560px;
  }
}

@media (min-width: 720px) {
  .nav-links {
    display: flex;
  }

  .hero {
    padding: 104px 0 96px;
  }

  .hero-grid,
  .split-section,
  .contact-card {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  }

  .hero-showcase {
    justify-self: end;
  }

  .product-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
  }

  .product-grid-reverse {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }

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

  .docs-grid,
  .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

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

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

@media (min-width: 1020px) {
  .container {
    width: min(1160px, calc(100% - 64px));
  }

  h1 {
    font-size: clamp(3.1rem, 4.3vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2.25rem, 3.6vw, 3.1rem);
  }

  .hero-showcase {
    width: 470px;
  }

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

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

  .footer-inner {
    grid-template-columns: minmax(260px, 1.5fr) repeat(3, minmax(140px, 1fr));
    gap: 32px;
  }

  .footer-brand {
    grid-column: auto;
  }
}

@media (min-width: 1360px) {
  .container {
    width: min(1180px, calc(100% - 96px));
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 480px;
  }
}
