:root {
  --ink: #26313d;
  --muted: #627080;
  --paper: #fffdfb;
  --cream: #fff4d8;
  --peach: #ffd9c7;
  --pink: #ffd6e7;
  --lilac: #dfd8ff;
  --blue: #cfe9ff;
  --mint: #cdeedd;
  --yellow: #ffe69a;
  --coral: #ff8d7b;
  --violet: #8d7cf2;
  --green: #4aa77a;
  --line: rgba(38, 49, 61, 0.11);
  --shadow: 0 18px 50px rgba(89, 77, 124, 0.11);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 5% 10%, rgba(255, 214, 231, 0.72), transparent 26rem),
    radial-gradient(circle at 95% 8%, rgba(207, 233, 255, 0.78), transparent 25rem),
    linear-gradient(180deg, #fffdfb 0%, #fffaf4 100%);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #6456c8;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

a:hover {
  color: #4436a3;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(141, 124, 242, 0.42);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 9px 14px;
  border-radius: 10px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 253, 251, 0.82);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

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

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(38, 49, 61, 0.06);
  border-radius: 13px;
  background: linear-gradient(145deg, var(--pink), var(--lilac));
  box-shadow: 0 7px 18px rgba(130, 108, 180, 0.17);
}

.brand-mark::before {
  width: 17px;
  height: 17px;
  display: block;
  border: 3px solid #52479e;
  border-top-color: transparent;
  border-radius: 50%;
  content: "";
  transform: rotate(45deg);
}

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

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

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

.language-link {
  padding: 6px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.9fr);
  align-items: center;
  gap: 74px;
  padding-block: 88px 100px;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 18px;
  padding: 7px 13px;
  border: 1px solid rgba(141, 124, 242, 0.13);
  border-radius: 999px;
  color: #5b50a7;
  background: rgba(223, 216, 255, 0.52);
  font-size: 0.84rem;
  font-weight: 750;
  letter-spacing: 0.04em;
}

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

h1,
h2,
h3 {
  line-height: 1.2;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(3.1rem, 7vw, 5.9rem);
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(95deg, #ff7f78 4%, #8b6ee8 50%, #479a79 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.lead {
  max-width: 660px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-weight: 750;
  text-decoration: none;
}

.button-primary {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 10px 24px rgba(38, 49, 61, 0.18);
}

.button-primary:hover {
  color: #fff;
  background: #111a24;
}

.button-secondary {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
}

.button-secondary:hover {
  color: var(--ink);
  background: #fff;
}

.phone-wrap {
  position: relative;
  isolation: isolate;
}

.bubble {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(1px);
}

.bubble-one {
  width: 190px;
  height: 190px;
  top: -48px;
  right: -18px;
  background: var(--blue);
}

.bubble-two {
  width: 140px;
  height: 140px;
  bottom: -34px;
  left: -44px;
  background: var(--peach);
}

.phone {
  width: min(100%, 390px);
  margin: 0 auto;
  padding: 13px;
  border: 2px solid rgba(38, 49, 61, 0.1);
  border-radius: 48px;
  background: #2f3640;
  box-shadow: 0 36px 80px rgba(62, 53, 88, 0.22);
  transform: rotate(2deg);
}

.phone-screen {
  min-height: 625px;
  overflow: hidden;
  padding: 42px 22px 22px;
  border-radius: 36px;
  background: linear-gradient(180deg, #fff8ed, #fffdfb);
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  font-weight: 800;
}

.mini-avatar {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: var(--lilac);
}

.voice-card {
  margin-bottom: 14px;
  padding: 18px;
  border: 1px solid rgba(38, 49, 61, 0.06);
  border-radius: 20px;
  box-shadow: 0 9px 25px rgba(81, 73, 105, 0.08);
}

.voice-card:nth-of-type(1) { background: var(--pink); }
.voice-card:nth-of-type(2) { background: var(--mint); }
.voice-card:nth-of-type(3) { background: var(--blue); }

.voice-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: rgba(38, 49, 61, 0.65);
  font-size: 0.75rem;
  font-weight: 700;
}

.voice-card strong {
  display: block;
  margin-bottom: 5px;
  line-height: 1.35;
}

.voice-card p {
  margin: 0;
  color: rgba(38, 49, 61, 0.72);
  font-size: 0.82rem;
  line-height: 1.5;
}

.record-button {
  width: 68px;
  height: 68px;
  display: grid;
  margin: 30px auto 4px;
  place-items: center;
  border: 8px solid rgba(255, 141, 123, 0.2);
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 10px 24px rgba(255, 141, 123, 0.3);
}

.record-button::before {
  width: 17px;
  height: 25px;
  border: 3px solid #fff;
  border-radius: 10px;
  content: "";
}

.section {
  padding-block: 98px;
}

.section-heading {
  max-width: 730px;
  margin-bottom: 42px;
}

.section-block {
  margin-top: 56px;
}

.section-heading h2,
.legal-hero h1 {
  margin-bottom: 16px;
  font-size: clamp(2.25rem, 5vw, 3.7rem);
}

.section-heading p,
.legal-hero p {
  color: var(--muted);
}

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

.feature-card {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.feature-card:nth-child(6n + 1) { background: var(--pink); }
.feature-card:nth-child(6n + 2) { background: var(--mint); }
.feature-card:nth-child(6n + 3) { background: var(--blue); }
.feature-card:nth-child(6n + 4) { background: var(--cream); }
.feature-card:nth-child(6n + 5) { background: var(--lilac); }
.feature-card:nth-child(6n + 6) { background: var(--peach); }

.feature-icon {
  width: 44px;
  height: 44px;
  display: grid;
  margin-bottom: 24px;
  place-items: center;
  border: 1px solid rgba(38, 49, 61, 0.08);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.55);
  font-size: 1.25rem;
}

.feature-card h3 {
  margin-bottom: 9px;
  font-size: 1.22rem;
}

.feature-card p {
  margin: 0;
  color: rgba(38, 49, 61, 0.7);
  font-size: 0.94rem;
}

.privacy-band,
.plus-band {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  padding: 50px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.privacy-symbol {
  min-height: 280px;
  display: grid;
  place-items: center;
  border-radius: 26px;
  background: linear-gradient(145deg, var(--mint), var(--blue));
  font-size: 5rem;
}

.check-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 11px 0;
  padding-left: 30px;
}

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

.plus-band {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  background: linear-gradient(135deg, rgba(223, 216, 255, 0.78), rgba(255, 214, 231, 0.72));
}

.price-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  text-align: center;
}

.price-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.45rem;
}

.price-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.legal-hero {
  max-width: 860px;
  padding-block: 88px 56px;
}

.legal-hero h1 {
  margin-top: 13px;
}

.updated {
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.9rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  align-items: start;
  gap: 64px;
  padding-bottom: 110px;
}

.toc {
  position: sticky;
  top: 105px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.66);
}

.toc strong {
  display: block;
  margin-bottom: 8px;
}

.toc a {
  display: block;
  padding: 4px 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: none;
}

.legal-content article + article {
  margin-top: 70px;
  padding-top: 64px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin-top: 50px;
  margin-bottom: 12px;
  font-size: 1.55rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin-top: 26px;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.legal-content p,
.legal-content li {
  color: #45515f;
}

.legal-content ul,
.legal-content ol {
  padding-left: 23px;
}

.notice {
  margin: 28px 0;
  padding: 20px 22px;
  border-left: 5px solid var(--violet);
  border-radius: 12px;
  background: rgba(223, 216, 255, 0.42);
}

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

.support-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.support-card:nth-child(2) { background: rgba(205, 238, 221, 0.66); }

.support-card h2 {
  margin: 0 0 10px;
  font-size: 1.3rem;
}

.faq-list details {
  margin-bottom: 12px;
  padding: 19px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 750;
}

.faq-list details p {
  margin: 12px 0 0;
  color: var(--muted);
}

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

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

.footer-copy {
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.88rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

@media (max-width: 860px) {
  .nav-links a:not(.language-link) {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 68px;
    padding-block: 70px 86px;
  }

  .hero-copy {
    text-align: center;
  }

  .eyebrow,
  .hero .lead {
    margin-inline: auto;
  }

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

  .phone-wrap {
    width: min(100%, 460px);
    margin-inline: auto;
  }

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

  .privacy-band,
  .plus-band {
    grid-template-columns: 1fr;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .toc {
    position: static;
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .toc strong {
    margin: 0;
  }

  .toc a {
    display: inline;
  }
}

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

  .brand-name-long {
    display: none;
  }

  h1 {
    font-size: clamp(2.8rem, 15vw, 4rem);
  }

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

  .privacy-band,
  .plus-band {
    padding: 25px;
  }

  .section {
    padding-block: 72px;
  }

  .legal-hero {
    padding-block: 65px 38px;
  }

  .legal-layout {
    padding-bottom: 80px;
  }

  .footer-inner {
    display: block;
  }

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

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

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: light;
  }
}
