:root {
  color-scheme: light;
  --ink: #29233d;
  --muted: #6f687f;
  --violet: #7664d8;
  --violet-dark: #5b48bd;
  --lavender: #eeeafe;
  --sky: #dcecff;
  --mint: #dff5e9;
  --peach: #ffe8d8;
  --rose: #f9dfe8;
  --paper: rgba(255, 255, 255, 0.82);
  --line: rgba(79, 65, 116, 0.12);
  --shadow: 0 24px 70px rgba(56, 41, 101, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 2%, rgba(217, 207, 255, 0.72), transparent 31rem),
    radial-gradient(circle at 92% 18%, rgba(207, 235, 255, 0.68), transparent 26rem),
    linear-gradient(180deg, #fbfaff 0%, #f7f5ff 42%, #fff 100%);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.64);
  background: rgba(249, 248, 255, 0.76);
  backdrop-filter: blur(22px) saturate(150%);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 760;
  letter-spacing: -0.02em;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(76, 58, 142, 0.18);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 620;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--violet-dark);
}

.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 64px;
  padding: 88px 0 100px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  padding: 8px 12px;
  border: 1px solid rgba(118, 100, 216, 0.18);
  border-radius: 999px;
  color: var(--violet-dark);
  background: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8a76e6;
  box-shadow: 0 0 0 5px rgba(138, 118, 230, 0.13);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.35rem, 7vw, 6.25rem);
  line-height: 0.96;
  letter-spacing: -0.067em;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(110deg, #5d49bd 4%, #8976e7 54%, #5c9ed0 102%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.65;
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border: 1px solid var(--line);
  border-radius: 15px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 10px 26px rgba(58, 42, 102, 0.08);
  text-decoration: none;
  font-weight: 720;
}

.button.primary {
  border-color: transparent;
  color: white;
  background: linear-gradient(135deg, #806de0, #6651c4);
  box-shadow: 0 15px 30px rgba(101, 80, 194, 0.28);
}

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

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

.phone-stage::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(199, 188, 255, 0.62), rgba(195, 230, 255, 0.55));
  filter: blur(2px);
}

.phone {
  position: relative;
  width: min(365px, 92vw);
  padding: 21px 18px 26px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 44px;
  background: rgba(248, 247, 255, 0.91);
  box-shadow: 0 46px 100px rgba(61, 45, 110, 0.24), inset 0 0 0 6px rgba(50, 44, 69, 0.06);
  transform: rotate(2.5deg);
}

.phone-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  padding: 12px 10px 0;
}

.phone-title {
  font-size: 1.65rem;
  font-weight: 790;
  letter-spacing: -0.04em;
}

.plus {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--violet);
  font-size: 1.5rem;
  line-height: 1;
}

.note-stack {
  display: grid;
  gap: 12px;
}

.note-card {
  position: relative;
  overflow: hidden;
  padding: 18px 18px 16px 24px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 19px;
  background: var(--paper);
  box-shadow: 0 9px 25px rgba(59, 48, 93, 0.08);
}

.note-card::before {
  content: "";
  position: absolute;
  top: 13px;
  bottom: 13px;
  left: 10px;
  width: 5px;
  border-radius: 99px;
  background: var(--accent, #a894ef);
}

.note-card h3 {
  margin-bottom: 6px;
  font-size: 0.98rem;
}

.note-card p {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.time {
  color: var(--violet-dark);
  font-size: 0.74rem;
  font-weight: 730;
}

.features {
  padding: 94px 0 114px;
}

.section-heading {
  max-width: 680px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 5vw, 3.65rem);
  line-height: 1.04;
  letter-spacing: -0.052em;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

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

.feature-card,
.content-card {
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.feature-card {
  min-height: 252px;
  padding: 28px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 15px;
  color: var(--violet-dark);
  background: var(--lavender);
  font-size: 1.35rem;
  font-weight: 760;
}

.feature-card:nth-child(2) .feature-icon {
  color: #397aa8;
  background: var(--sky);
}

.feature-card:nth-child(3) .feature-icon {
  color: #357a5c;
  background: var(--mint);
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  letter-spacing: -0.025em;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.privacy-strip {
  margin-bottom: 110px;
  padding: 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(118, 100, 216, 0.13);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(238, 234, 254, 0.86), rgba(225, 241, 255, 0.76));
}

.privacy-symbol {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 19px;
  color: white;
  background: linear-gradient(135deg, #846fe3, #657ecb);
  font-size: 1.7rem;
}

.privacy-strip h2 {
  margin-bottom: 5px;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.privacy-strip p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.page-hero {
  padding: 96px 0 46px;
  text-align: center;
}

.page-hero h1 {
  max-width: 860px;
  margin-inline: auto;
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.page-hero p {
  max-width: 690px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.65;
}

.content-wrap {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
  padding-bottom: 110px;
}

.content-card {
  padding: clamp(26px, 5vw, 54px);
}

.content-card section + section {
  margin-top: 42px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.content-card h2 {
  margin-bottom: 14px;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
}

.content-card h3 {
  margin: 25px 0 8px;
  font-size: 1.02rem;
}

.content-card p,
.content-card li {
  color: var(--muted);
  line-height: 1.72;
}

.content-card p:last-child {
  margin-bottom: 0;
}

.content-card ul,
.content-card ol {
  margin: 12px 0 0;
  padding-left: 22px;
}

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

.contact-card {
  margin-bottom: 26px;
  padding: 30px;
  border-radius: 26px;
  color: white;
  background: linear-gradient(135deg, #7d68d9, #5c4bb2);
  box-shadow: 0 24px 55px rgba(91, 72, 178, 0.28);
  text-align: center;
}

.contact-card h2 {
  margin-bottom: 8px;
  font-size: 1.55rem;
}

.contact-card p {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-card .button {
  border: 0;
  color: var(--violet-dark);
  background: white;
}

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

.faq details:last-child {
  border-bottom: 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 720;
  line-height: 1.45;
}

.faq details p {
  margin: 12px 0 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.48);
}

.footer-inner {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 22px;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--violet-dark);
}

:focus-visible {
  outline: 3px solid rgba(118, 100, 216, 0.45);
  outline-offset: 4px;
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 70px;
    text-align: center;
  }

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

  .actions {
    justify-content: center;
  }

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

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

  .privacy-strip {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 620px) {
  .container,
  .content-wrap {
    width: min(100% - 28px, 1120px);
  }

  .nav {
    min-height: 64px;
  }

  .brand span {
    display: none;
  }

  .nav-links {
    gap: 16px;
  }

  .nav-links a {
    font-size: 0.86rem;
  }

  h1 {
    font-size: clamp(3.05rem, 17vw, 4.25rem);
  }

  .hero {
    min-height: auto;
    padding: 58px 0 74px;
  }

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

  .phone-stage::before {
    width: 320px;
    height: 320px;
  }

  .phone {
    transform: none;
  }

  .privacy-strip {
    padding: 30px 22px;
  }

  .page-hero {
    padding-top: 68px;
  }

  .footer-inner {
    padding: 28px 0;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .button {
    transition: transform 160ms ease, box-shadow 160ms ease;
  }

  .note-card {
    animation: float-in 700ms both;
  }

  .note-card:nth-child(2) {
    animation-delay: 100ms;
  }

  .note-card:nth-child(3) {
    animation-delay: 200ms;
  }

  @keyframes float-in {
    from {
      opacity: 0;
      transform: translateY(14px);
    }
  }
}
