﻿@font-face {
  font-family: "MuseoModerno";
  src: url("assets/fonts/MuseoModerno-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MuseoModerno";
  src: url("assets/fonts/MuseoModerno-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/Poppins-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --bg: #f1f6ff;
  --ink: #251d36;
  --muted: rgba(37, 29, 54, 0.68);
  --quiet: rgba(37, 29, 54, 0.48);
  --line: rgba(72, 80, 130, 0.14);
  --paper: rgba(255, 255, 255, 0.82);
  --paper-solid: #ffffff;
  --pink: #f34aa4;
  --violet: #aa62f7;
  --sky: #54a8ff;
  --mint: #4fd3bf;
  --lemon: #efc836;
  --plum: #601747;
  --radius: 28px;
  --radius-soft: 20px;
  --shadow: 0 22px 60px rgba(53, 69, 117, 0.14);
  --shadow-deep: 0 34px 90px rgba(64, 69, 132, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, #fbfdff 0%, #eef6ff 46%, #f7ecff 100%),
    var(--bg);
  color: var(--ink);
  font-family: "Poppins", system-ui, sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(243, 74, 164, 0.20), transparent 38%),
    linear-gradient(45deg, transparent 46%, rgba(84, 168, 255, 0.24)),
    radial-gradient(circle at 79% 18%, rgba(170, 98, 247, 0.18), transparent 30%);
  pointer-events: none;
}

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

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

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(1120px, calc(100% - 28px));
  min-height: 62px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 44px rgba(53, 69, 117, 0.13);
  backdrop-filter: blur(22px);
  overflow: hidden;
  transform: translateX(-50%);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: radial-gradient(
    340px circle at var(--spotlight-x, 50%) var(--spotlight-y, 50%),
    rgba(243, 74, 164, 0.30),
    rgba(170, 98, 247, 0.18) 34%,
    transparent 68%
  );
  pointer-events: none;
}

.brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
  padding: 8px 13px;
  color: var(--ink);
  font-family: "MuseoModerno", system-ui, sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.brand img {
  width: 30px;
  height: 30px;
}

.nav-links {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.nav-links a,
.nav-cta {
  border-radius: 999px;
  padding: 11px 15px;
  color: var(--muted);
  font-size: 13px;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-cta:hover {
  background: rgba(84, 168, 255, 0.10);
  color: var(--ink);
  transform: translateY(-1px);
}

.nav-cta {
  position: relative;
  z-index: 1;
  justify-self: end;
  background: linear-gradient(135deg, var(--pink), var(--sky));
  color: #fff;
  box-shadow: 0 12px 28px rgba(243, 74, 164, 0.22);
}

.hero {
  position: relative;
  min-height: 90svh;
  padding: 124px 24px 58px;
  overflow: hidden;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
  align-items: center;
  gap: clamp(46px, 6vw, 92px);
  width: min(1180px, 100%);
  min-height: calc(90svh - 182px);
  margin: 0 auto;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "MuseoModerno", system-ui, sans-serif;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(54px, 4.8vw, 80px);
  line-height: 0.92;
}

h2 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(34px, 4.5vw, 62px);
  line-height: 1.04;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.18;
}

.hero-copy {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

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

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 14px;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.primary-action {
  background: linear-gradient(135deg, var(--pink), var(--sky));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 18px 38px rgba(243, 74, 164, 0.24);
}

.secondary-action {
  border: 1px solid rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(53, 69, 117, 0.10);
}

.primary-action:hover,
.secondary-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(53, 69, 117, 0.16);
}

.hero-visual {
  position: relative;
  min-height: 570px;
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.18)),
    linear-gradient(135deg, rgba(243, 74, 164, 0.46), rgba(170, 98, 247, 0.34) 46%, rgba(84, 168, 255, 0.48));
  box-shadow: var(--shadow-deep);
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 30px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 70px 70px;
  opacity: 0.55;
}

.preview-glow {
  position: absolute;
  right: 10%;
  top: 12%;
  width: 42%;
  aspect-ratio: 1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  filter: blur(34px);
}

.desktop-preview,
.phone-preview {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: #fff;
  box-shadow: 0 24px 70px rgba(43, 55, 102, 0.22);
}

.desktop-preview {
  left: 42px;
  right: 42px;
  top: 46px;
  aspect-ratio: 2048 / 1024;
  border-radius: 26px;
}

.desktop-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.phone-preview {
  width: min(205px, 28%);
  min-width: 150px;
  aspect-ratio: 658 / 1304;
  border-radius: 30px;
}

.phone-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.phone-preview-day {
  left: 9%;
  bottom: 30px;
}

.phone-preview-month {
  right: 9%;
  bottom: 30px;
}

.signal-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1120px, calc(100% - 32px));
  margin: -24px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.signal-strip div {
  padding: 24px;
}

.signal-strip div + div {
  border-left: 1px solid var(--line);
}

.signal-strip strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-family: "MuseoModerno", system-ui, sans-serif;
  font-size: 20px;
}

.signal-strip span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

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

.section-heading {
  width: min(750px, 100%);
  margin-bottom: 34px;
}

.section-heading.compact {
  margin-inline: auto;
  text-align: center;
}

.section-heading p:not(.eyebrow),
.trust-copy p,
.contact-section p,
.view-panel p,
.feature-list p,
.legal-content p,
.legal-content li {
  color: var(--muted);
  line-height: 1.7;
}

.product-flow {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
}

.view-panel {
  display: grid;
  align-content: space-between;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.view-panel-wide {
  grid-row: span 2;
  min-height: 700px;
}

.view-panel.tone-mint {
  background: linear-gradient(135deg, rgba(232, 255, 250, 0.88), rgba(255, 255, 255, 0.80));
}

.view-panel img {
  width: 100%;
  height: 280px;
  border-radius: 22px;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 18px 42px rgba(53, 69, 117, 0.14);
}

.view-panel-wide img {
  height: 455px;
}

.view-panel > div {
  padding: 22px 10px 4px;
}

.card-kicker,
.feature-index {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-band {
  width: min(1220px, calc(100% - 32px));
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.feature-list article {
  min-height: 290px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: var(--radius-soft);
  padding: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 48px rgba(53, 69, 117, 0.10);
}

.feature-list article:nth-child(2) {
  background: rgba(255, 249, 217, 0.76);
}

.feature-list article:nth-child(3) {
  background: rgba(232, 255, 250, 0.78);
}

.feature-list article:nth-child(4) {
  background: rgba(244, 238, 255, 0.82);
}

.faq-section {
  width: min(980px, calc(100% - 32px));
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: var(--radius-soft);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 42px rgba(53, 69, 117, 0.10);
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--ink);
  font-family: "MuseoModerno", system-ui, sans-serif;
  font-size: 22px;
  line-height: 1.2;
}

.faq-list summary::marker {
  color: var(--pink);
}

.faq-list p {
  margin: -4px 24px 24px;
  color: var(--muted);
  line-height: 1.7;
}

.trust-section {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: start;
  gap: 32px;
}

.trust-links {
  display: grid;
  gap: 10px;
}

.trust-links a {
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 999px;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(53, 69, 117, 0.09);
  transition: transform 180ms ease, background-color 180ms ease;
}

.trust-links a::after {
  content: "Open";
  color: var(--quiet);
  font-size: 12px;
}

.trust-links a:hover {
  background: rgba(255, 255, 255, 0.94);
  transform: translateX(4px);
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 108px;
}

.contact-section > div {
  width: min(640px, 100%);
}

.site-footer {
  display: flex;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding: 28px 0 44px;
  color: var(--muted);
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer strong {
  color: var(--ink);
  font-family: "MuseoModerno", system-ui, sans-serif;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  font-size: 13px;
}

.site-footer a:hover {
  color: var(--ink);
}

.legal-page {
  min-height: 100vh;
  background:
    linear-gradient(145deg, rgba(243, 74, 164, 0.22), transparent 38%),
    linear-gradient(35deg, transparent 42%, rgba(84, 168, 255, 0.24)),
    linear-gradient(180deg, rgba(251, 253, 255, 0.92), rgba(244, 248, 255, 0.88) 58%, rgba(247, 236, 255, 0.92)),
    url("assets/images/background2.jpg") center top / cover fixed;
}

.legal-shell {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 130px 0 84px;
}

.legal-content {
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: var(--radius);
  padding: clamp(24px, 5vw, 48px);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.legal-content h1 {
  margin-bottom: 12px;
  text-align: left;
}

.legal-content h2 {
  margin-top: 38px;
  font-size: clamp(26px, 3vw, 38px);
}

.todo-box {
  border: 1px solid rgba(239, 200, 54, 0.54);
  border-radius: var(--radius-soft);
  margin: 28px 0;
  padding: 18px;
  background: rgba(255, 249, 217, 0.76);
}

.todo-box strong {
  color: #977500;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.legal-nav a {
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--muted);
  font-size: 13px;
}

.legal-nav a:hover {
  color: var(--ink);
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: var(--radius-soft);
  padding: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 70px rgba(53, 69, 117, 0.20);
  backdrop-filter: blur(20px);
}

.cookie-banner__copy strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-family: "MuseoModerno", system-ui, sans-serif;
  font-size: 20px;
}

.cookie-banner__copy p {
  margin-bottom: 8px;
  color: var(--muted);
  line-height: 1.55;
}

.cookie-banner__copy a {
  color: var(--pink);
  font-size: 13px;
}

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

.cookie-banner button,
.cookie-settings-fab {
  cursor: pointer;
  border: 0;
  font-family: "Poppins", system-ui, sans-serif;
}

.cookie-settings-fab {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 70;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  box-shadow: 0 12px 32px rgba(53, 69, 117, 0.12);
  backdrop-filter: blur(16px);
  font-size: 12px;
}

.cookie-settings-fab:hover {
  color: var(--ink);
}

@media (prefers-reduced-motion: no-preference) {
  .desktop-preview,
  .phone-preview {
    animation: gentleFloat 8s ease-in-out infinite;
  }

  .phone-preview-day {
    animation-delay: -2s;
  }

  .phone-preview-month {
    animation-delay: -4s;
  }
}

@keyframes gentleFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 1040px) {
  .hero-shell {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-content {
    max-width: 720px;
    text-align: center;
    justify-self: center;
  }

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

  .hero-visual {
    width: min(760px, 100%);
    min-height: 520px;
    justify-self: center;
  }

  .product-flow,
  .trust-section {
    grid-template-columns: 1fr;
  }

  .view-panel-wide {
    min-height: 560px;
  }

  .view-panel-wide img {
    height: 340px;
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .signal-strip,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .signal-strip div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .feature-list article {
    min-height: auto;
  }

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

  .site-footer nav {
    justify-content: flex-start;
  }

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

  .cookie-banner__actions {
    flex-wrap: wrap;
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand span {
    font-size: 18px;
  }

  .nav-cta {
    padding-inline: 12px;
  }

  .hero {
    padding: 108px 16px 48px;
  }

  h1 {
    font-size: clamp(48px, 15vw, 66px);
  }

  h2 {
    font-size: clamp(32px, 12vw, 46px);
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-visual {
    min-height: 430px;
    border-radius: 30px;
  }

  .desktop-preview {
    left: 18px;
    right: 18px;
    top: 24px;
    border-radius: 20px;
  }

  .phone-preview {
    width: 38%;
    min-width: 118px;
    border-radius: 24px;
  }

  .phone-preview-day {
    left: 9%;
    bottom: 22px;
  }

  .phone-preview-month {
    right: 9%;
    bottom: 22px;
  }

  .signal-strip {
    margin-top: 0;
  }

  .section {
    padding-top: 84px;
  }

  .view-panel,
  .view-panel-wide {
    min-height: auto;
    padding: 12px;
  }

  .view-panel img,
  .view-panel-wide img {
    height: 280px;
    border-radius: 20px;
  }

  .cookie-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: calc(100% - 20px);
    padding: 14px;
  }

  .cookie-banner__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-banner__actions .primary-action,
  .cookie-banner__actions .secondary-action {
    width: 100%;
  }
}



