:root {
  --bg-top: #f8f4f0;
  --bg-bottom: #f1e5d9;
  --paper: rgba(255, 250, 244, 0.82);
  --paper-strong: #fff9f3;
  --surface: rgba(255, 249, 240, 0.72);
  --surface-strong: rgba(255, 250, 244, 0.9);
  --line: rgba(118, 84, 59, 0.14);
  --line-strong: rgba(118, 84, 59, 0.22);
  --text: #5d4637;
  --muted: #7f6959;
  --brand-deep: #2f2d7e;
  --brand-mid: #5f5ac1;
  --brand-soft: #8f8ae6;
  --accent: #ef7c6f;
  --accent-soft: #ffd6c6;
  --mint: #b8c9b9;
  --shadow: 0 32px 60px rgba(87, 61, 41, 0.12);
  --shadow-soft: 0 18px 30px rgba(87, 61, 41, 0.08);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "SF Pro Display", "SF Pro Text", "Avenir Next", "Helvetica Neue",
    Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 244, 221, 0.95), transparent 28%),
    radial-gradient(circle at top right, rgba(131, 124, 219, 0.2), transparent 24%),
    linear-gradient(180deg, var(--bg-top), var(--bg-bottom));
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 78%);
  opacity: 0.3;
}

a {
  color: inherit;
}

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

.site-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 20px 0 40px;
}

.topbar {
  position: sticky;
  top: 12px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.7);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(47, 45, 126, 0.2);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand-copy span {
  font-size: 0.82rem;
  color: var(--muted);
}

.topnav {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

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

.topnav a:hover,
.topnav a:focus-visible {
  color: var(--brand-deep);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
  gap: 44px;
  align-items: center;
  min-height: calc(100svh - 120px);
  padding: 28px 4px 40px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-mid);
}

.hero h1,
.section-heading h2,
.contact-panel h2 {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.hero h1 {
  font-size: clamp(3.5rem, 9vw, 6.2rem);
  line-height: 0.92;
}

.lead {
  max-width: 14ch;
  margin: 20px 0 0;
  font-size: clamp(1.2rem, 2vw, 1.62rem);
  line-height: 1.35;
  color: #4f3b31;
}

.subcopy,
.section-heading p,
.contact-panel p,
.support-note,
.support-points p,
.privacy-grid p,
.workflow p,
.footer p {
  color: var(--muted);
  line-height: 1.7;
}

.subcopy {
  max-width: 36rem;
  margin: 18px 0 0;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px) scale(1.015);
}

.button-primary {
  color: #fff8ef;
  background: linear-gradient(180deg, #756fe0, #3c388d);
  box-shadow: 0 18px 34px rgba(62, 58, 140, 0.3);
}

.button-secondary {
  border: 1px solid rgba(87, 65, 53, 0.14);
  background: rgba(255, 250, 244, 0.75);
  box-shadow: var(--shadow-soft);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(87, 65, 53, 0.1);
  background: rgba(255, 250, 244, 0.62);
  font-size: 0.92rem;
  color: #6a5647;
}

.visual-stage {
  position: relative;
  padding: 28px;
  border-radius: 44px;
  background:
    radial-gradient(circle at top right, rgba(255, 229, 165, 0.72), transparent 26%),
    linear-gradient(180deg, rgba(54, 54, 138, 0.98), rgba(147, 124, 201, 0.9));
  box-shadow: 0 36px 74px rgba(53, 40, 91, 0.22);
  overflow: hidden;
}

.visual-stage::before,
.visual-stage::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(255, 244, 214, 0.4);
  opacity: 0.7;
}

.visual-stage::before {
  width: 240px;
  height: 240px;
  top: 24px;
  right: -30px;
}

.visual-stage::after {
  width: 12px;
  height: 12px;
  top: 78px;
  right: 100px;
  background: rgba(255, 248, 214, 0.92);
  box-shadow:
    -84px -22px 0 0 rgba(255, 248, 214, 0.9),
    -148px 40px 0 -2px rgba(255, 235, 200, 0.74),
    -190px 84px 0 -4px rgba(255, 235, 200, 0.7),
    24px 88px 0 -2px rgba(255, 248, 214, 0.86);
}

.moon-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  top: -10px;
  left: -18px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 243, 201, 0.3) 0%,
    rgba(255, 243, 201, 0) 74%
  );
}

.phone-frame {
  display: none;
}

.phone-notch {
  display: none;
}

.phone-icon {
  display: none;
}

.phone-screenshot {
  width: 100%;
  aspect-ratio: 1290 / 2796;
  object-fit: cover;
  object-position: top center;
  border-radius: 34px;
  box-shadow: 0 28px 54px rgba(68, 46, 90, 0.2);
}

.screen-caption {
  display: none;
}

.section {
  padding: 52px 0;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 28px;
}

.section-heading h2,
.contact-panel h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
}

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

.workflow article,
.support-card,
.support-points article,
.privacy-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 244, 0.74);
  box-shadow: var(--shadow-soft);
}

.workflow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(95, 90, 193, 0.12);
  color: var(--brand-mid);
  font-weight: 800;
}

.workflow h3,
.support-points h3,
.privacy-grid h3 {
  margin: 18px 0 10px;
  font-size: 1.16rem;
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.support-card {
  position: sticky;
  top: 96px;
  background:
    radial-gradient(circle at top left, rgba(255, 229, 170, 0.42), transparent 34%),
    linear-gradient(180deg, rgba(255, 250, 244, 0.95), rgba(244, 232, 218, 0.92));
}

.support-label {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-mid);
}

.support-email {
  display: inline-block;
  margin-top: 14px;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1.2;
  font-weight: 800;
  text-decoration: none;
  color: var(--brand-deep);
  word-break: break-word;
}

.support-points {
  display: grid;
  gap: 18px;
}

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

.privacy-grid a,
.footer a {
  color: var(--brand-deep);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 24px;
  padding: 28px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at bottom left, rgba(184, 201, 185, 0.45), transparent 28%),
    linear-gradient(180deg, rgba(255, 250, 244, 0.94), rgba(243, 232, 218, 0.92));
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
}

.contact-actions {
  display: grid;
  align-content: center;
  gap: 14px;
  justify-items: start;
}

.footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
  padding: 24px 4px 0;
  border-top: 1px solid rgba(93, 70, 55, 0.1);
}

.footer strong {
  font-size: 1rem;
}

.copyright {
  align-self: end;
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.privacy-link-row {
  margin-top: 22px;
}

.policy-page {
  padding-bottom: 12px;
}

.policy-hero {
  padding: 28px 4px 24px;
}

.policy-page h1 {
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.policy-lead {
  max-width: 22ch;
}

.policy-meta {
  display: grid;
  gap: 6px;
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 244, 0.74);
  box-shadow: var(--shadow-soft);
}

.policy-meta p,
.policy-notice p {
  margin: 0;
}

.policy-notice {
  padding: 20px 22px;
  border-left: 4px solid rgba(95, 90, 193, 0.38);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: rgba(255, 250, 244, 0.74);
  box-shadow: var(--shadow-soft);
}

.policy-table-wrapper {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 244, 0.82);
  box-shadow: var(--shadow-soft);
}

.policy-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.policy-table th,
.policy-table td {
  padding: 18px 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(93, 70, 55, 0.1);
}

.policy-table th {
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-mid);
  background: rgba(250, 242, 232, 0.92);
}

.policy-grid,
.policy-stack {
  display: grid;
  gap: 18px;
}

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

.policy-grid article,
.policy-stack article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 244, 0.74);
  box-shadow: var(--shadow-soft);
}

.policy-grid article h3,
.policy-stack article h3 {
  margin: 0 0 10px;
  font-size: 1.16rem;
}

.policy-grid article p,
.policy-stack article p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

  .button,
  .reveal {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 960px) {
  .topbar {
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 28px;
  }

  .hero,
  .support-layout,
  .contact-panel,
  .footer,
  .privacy-grid,
  .workflow,
  .policy-grid {
    grid-template-columns: 1fr;
  }

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

  .support-card {
    position: static;
  }

  .copyright {
    text-align: left;
  }
}

@media (max-width: 680px) {
  .site-shell {
    width: min(calc(100% - 20px), var(--max-width));
    padding-top: 10px;
  }

  .topbar {
    position: static;
    margin-bottom: 18px;
    padding: 14px;
  }

  .topnav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 16px;
  }

  .hero {
    gap: 24px;
    padding-bottom: 20px;
  }

  .hero h1 {
    font-size: clamp(3rem, 18vw, 4.4rem);
  }

  .lead {
    max-width: none;
  }

  .visual-stage {
    padding: 18px;
    border-radius: 30px;
  }

  .phone-frame {
    display: none;
  }

  .phone-notch {
    display: none;
  }

  .phone-icon {
    width: 76px;
    height: 76px;
    top: -12px;
    right: -10px;
  }

  .phone-panel,
  .workflow article,
  .support-card,
  .support-points article,
  .privacy-grid article,
  .contact-panel,
  .policy-grid article,
  .policy-stack article {
    padding: 18px;
  }

  .button {
    width: 100%;
  }
}
