:root {
  --ultra-violet: #5f3dc4;
  --violet-700: #4b2fa4;
  --violet-100: #efe9ff;
  --violet-050: #faf7ff;
  --ink: #081636;
  --muted: #5d6480;
  --line: #e4ddf5;
  --white: #ffffff;
  --blue: #315f9d;
  --mint: #2f8f83;
  --coral: #ce6560;
  --shadow: 0 22px 70px rgba(47, 31, 96, 0.16);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 12%, rgba(95, 61, 196, 0.11), transparent 31rem),
    radial-gradient(circle at 80% 28%, rgba(47, 143, 131, 0.11), transparent 30rem),
    linear-gradient(180deg, #fffaff 0%, #fbf9ff 54%, #ffffff 100%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-width: max-content;
  font-size: 1.34rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 0;
}

.brand img {
  width: 35px;
  height: 35px;
  object-fit: contain;
  border-radius: 10px;
}

.wordmark {
  display: inline-flex;
}

.brand-says {
  color: var(--ultra-violet);
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px;
  border: 1px solid rgba(95, 61, 196, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 40px rgba(48, 31, 97, 0.08);
}

nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: #4e5570;
  font-size: 0.92rem;
  font-weight: 700;
}

nav a:last-child {
  color: var(--white);
  background: var(--ultra-violet);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 420px);
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 112px);
  margin: 0 auto;
  padding: 16px 0 12px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--ultra-violet);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3.05rem, 5.9vw, 5rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 4.5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.45rem;
  line-height: 1.1;
}

.hero-text,
.showcase-copy p,
.cta p,
.section-heading p {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.24rem);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
}

.button.primary {
  color: var(--white);
  background: var(--ultra-violet);
  box-shadow: 0 16px 34px rgba(95, 61, 196, 0.26);
}

.button.secondary {
  color: var(--ultra-violet);
  border-color: rgba(95, 61, 196, 0.26);
  background: rgba(255, 255, 255, 0.72);
}

.hero-visual {
  position: relative;
  min-height: clamp(550px, 61vw, 690px);
}

.main-shot {
  position: absolute;
  right: clamp(0px, 3vw, 34px);
  top: 0;
  z-index: 2;
}

.phone-shot {
  position: absolute;
  width: clamp(300px, 34vw, 380px);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.quote-band {
  padding: 40px 20px;
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.quote-band p {
  width: min(880px, 100%);
  margin: 0 auto;
  font-size: clamp(1.35rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 108px 0;
}

.section-heading {
  grid-column: 1 / -1;
  max-width: 820px;
  margin-bottom: 18px;
}

.section-heading.centered {
  margin: 0 auto 34px;
  text-align: center;
}

.feature-card {
  min-height: 320px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 42px rgba(47, 31, 96, 0.08);
}

.feature-card p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.62;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 52px;
  border-radius: 50%;
  color: var(--white);
  font-weight: 800;
}

.feature-card.violet .icon-badge {
  background: var(--ultra-violet);
}

.feature-card.blue .icon-badge {
  background: var(--blue);
}

.feature-card.mint .icon-badge {
  background: var(--mint);
}

.showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.72fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0;
}

.screen-stack img {
  width: min(420px, 100%);
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #343c5f;
  font-weight: 700;
}

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

.lines-section {
  padding: 104px 20px;
  background: linear-gradient(135deg, var(--violet-050), #ffffff 58%, #eff9f6);
}

.line-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(1080px, 100%);
  margin: 0 auto;
}

.line-cards article {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 32px rgba(47, 31, 96, 0.08);
}

.line-cards p {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  font-weight: 800;
  line-height: 1.18;
}

.line-cards span {
  display: block;
  margin-bottom: 10px;
  color: var(--ultra-violet);
  font-size: 0.9rem;
  font-weight: 800;
}

.cta {
  width: min(980px, calc(100% - 40px));
  margin: 96px auto 96px;
  padding: clamp(36px, 7vw, 76px);
  border: 1px solid rgba(95, 61, 196, 0.17);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(239, 233, 255, 0.8)),
    var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.cta img {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  border-radius: 18px;
}

.cta h2 {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.app-store-button {
  margin-top: 18px;
}

footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 32px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

footer p {
  margin: 0;
}

.footer-brand {
  display: grid;
  gap: 10px;
}

.footer-social-group {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #4e5570;
  font-size: 0.92rem;
  font-weight: 700;
}

.copyright {
  color: #4e5570;
  font-size: 0.92rem;
  font-weight: 700;
}

.footer-copy {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: #4e5570;
  font-size: 0.92rem;
  font-weight: 700;
}

.footer-links a {
  color: inherit;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  line-height: 0;
}

.footer-social svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social-fill svg {
  fill: currentColor;
  stroke: none;
}

.footer-links button {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.legal-main {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 92px;
}

.legal-document {
  padding: clamp(28px, 6vw, 72px);
  border: 1px solid rgba(95, 61, 196, 0.17);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.legal-document h1 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: clamp(3rem, 7vw, 5rem);
}

.legal-document h2 {
  margin: 42px 0 12px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.12;
}

.legal-document p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.legal-document a {
  color: var(--ultra-violet);
  font-weight: 800;
}

.legal-date {
  margin-bottom: 34px;
  font-weight: 800;
}

.support-lede {
  max-width: 720px;
  margin-bottom: 34px;
}

.support-contact {
  padding: 24px;
  border: 1px solid rgba(95, 61, 196, 0.18);
  border-radius: 8px;
  background: rgba(239, 233, 255, 0.42);
}

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

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

.support-grid section {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  width: min(760px, calc(100% - 40px));
  padding: 18px;
  border: 1px solid rgba(95, 61, 196, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 70px rgba(47, 31, 96, 0.18);
  backdrop-filter: blur(18px);
}

.cookie-banner h2 {
  margin-bottom: 6px;
  font-size: 1rem;
  line-height: 1.2;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
}

.cookie-banner .button {
  min-height: 44px;
  padding: 0 16px;
  cursor: pointer;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
  }

  nav {
    overflow-x: auto;
    max-width: 72vw;
  }

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

  .hero {
    min-height: auto;
    padding-top: 32px;
  }

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

  .phone-shot {
    width: min(66vw, 340px);
  }

  .main-shot {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

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

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

  .icon-badge {
    margin-bottom: 32px;
  }
}

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

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

  .footer-copy {
    justify-items: start;
  }

  nav {
    display: none;
  }

  .hero,
  .feature-grid,
  .showcase,
  footer {
    width: min(100% - 28px, 1180px);
  }

  h1 {
    margin-bottom: 18px;
    font-size: clamp(2.65rem, 12vw, 3rem);
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .button {
    width: 100%;
    min-height: 48px;
  }

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

  .phone-shot {
    width: clamp(230px, 68vw, 300px);
  }

  .main-shot {
    left: 50%;
    transform: translateX(-50%);
  }

  .quote-band {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .feature-grid,
  .showcase,
  .lines-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

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

  .cookie-banner {
    right: 14px;
    bottom: 14px;
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
  }

  .cookie-banner__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-banner .button {
    width: 100%;
  }
}
