@font-face {
  font-family: "Manrope";
  src: url("./assets/fonts/Manrope-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --bg: #eef4ff;
  --bg-soft: #f9fbff;
  --ink: #17233f;
  --muted: #526488;
  --line: rgba(23, 35, 63, 0.12);
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --accent: #5b68ff;
  --accent-deep: #3f4cd6;
  --accent-soft: rgba(91, 104, 255, 0.12);
  --mint: #8fe7d2;
  --gold: #ffd8a2;
  --shadow: 0 26px 90px rgba(61, 91, 149, 0.18);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: min(1120px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(255, 216, 162, 0.92), transparent 28%),
    radial-gradient(circle at bottom left, rgba(209, 193, 255, 0.55), transparent 32%),
    linear-gradient(135deg, #eef2ff 0%, #edf7ff 52%, #dceefe 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    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: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), transparent 80%);
  pointer-events: none;
  z-index: -1;
}

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

a {
  color: inherit;
}

.page-shell {
  width: var(--container);
  margin: 0 auto;
  padding: 24px 0 72px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  margin-bottom: 28px;
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  backdrop-filter: blur(16px);
  background: rgba(244, 248, 255, 0.72);
  box-shadow: 0 10px 24px rgba(87, 108, 164, 0.12);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark img {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  box-shadow: 0 14px 26px rgba(91, 104, 255, 0.2);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.site-nav a {
  padding: 10px 14px;
  text-decoration: none;
  border-radius: 999px;
  color: var(--muted);
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 28px;
  align-items: center;
  padding: 26px 0 40px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.9);
  color: var(--muted);
  font-size: 0.95rem;
  box-shadow: 0 18px 36px rgba(119, 132, 176, 0.1);
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--mint));
  box-shadow: 0 0 0 5px rgba(91, 104, 255, 0.09);
}

.hero h1,
.page-hero h1 {
  margin: 18px 0 16px;
  font-size: clamp(3.15rem, 8vw, 5.35rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.hero p,
.page-hero p,
.card-copy p,
.faq p,
.metric p,
.section-intro p,
.support-columns p,
.privacy-copy p,
.footer-copy {
  color: var(--muted);
  line-height: 1.65;
}

.hero-copy {
  max-width: 620px;
}

.hero-lead {
  font-size: clamp(1.1rem, 2.6vw, 1.42rem);
  max-width: 44rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, color 160ms ease;
}

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

.button--primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 18px 38px rgba(70, 84, 214, 0.28);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(255, 255, 255, 0.9);
}

.button--ghost {
  color: var(--muted);
  border-color: rgba(23, 35, 63, 0.1);
  background: rgba(255, 255, 255, 0.45);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.metric,
.panel,
.feature-card,
.shot-card,
.faq,
.support-card,
.privacy-panel,
.cta-panel {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.metric {
  padding: 20px 18px;
}

.metric strong {
  display: block;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 18px;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto 10% -18% auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(143, 231, 210, 0.54), transparent 70%);
  filter: blur(6px);
}

.hero-panel__frame,
.shot-frame {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  background:
    radial-gradient(circle at top right, rgba(255, 216, 162, 0.35), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(225, 237, 255, 0.92));
}

.hero-panel__frame {
  padding: clamp(16px, 2.8vw, 24px);
}

.hero-panel img {
  border-radius: 28px;
  box-shadow: 0 24px 50px rgba(61, 91, 149, 0.16);
}

.panel-chip {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--muted);
  font-size: 0.88rem;
}

.section {
  margin-top: 34px;
}

.section-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.section-intro h2,
.page-section h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.section-intro p {
  max-width: 40rem;
  margin: 0;
}

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

.feature-card {
  padding: 24px;
}

.feature-card h3,
.shot-card h3,
.support-card h3,
.privacy-panel h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.feature-list,
.support-list,
.mini-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.support-list li,
.mini-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  color: var(--muted);
}

.feature-list li::before,
.support-list li::before,
.mini-list li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--mint));
}

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

.shot-card {
  overflow: hidden;
}

.shot-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(240px, 32vw, 360px);
  padding: clamp(16px, 2.6vw, 26px);
}

.shot-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 20px;
  box-shadow: 0 24px 46px rgba(50, 73, 120, 0.18);
}

.card-copy {
  padding: 20px 22px 24px;
}

.workbench {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 18px;
}

.workbench .shot-card--tall .shot-frame {
  min-height: clamp(320px, 42vw, 520px);
}

.shot-frame--compact {
  min-height: clamp(220px, 23vw, 280px);
}

.shot-frame--tall img,
.shot-frame--compact img,
.shot-frame img {
  max-height: 100%;
}

.stack {
  display: grid;
  gap: 18px;
}

.support-columns,
.privacy-columns {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 18px;
}

.support-card,
.privacy-panel {
  padding: 24px;
}

.faq-wrap {
  display: grid;
  gap: 14px;
}

.faq {
  padding: 22px 22px 18px;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-size: 1.3rem;
}

.faq[open] summary::after {
  content: "-";
}

.faq p {
  margin: 14px 0 0;
}

.privacy-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
}

.privacy-table th,
.privacy-table td {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.privacy-table th {
  width: 22%;
  color: var(--ink);
}

.pill-row,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--muted);
  border: 1px solid rgba(23, 35, 63, 0.08);
}

.cta-panel {
  margin-top: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 28px;
}

.site-footer {
  margin-top: 34px;
  padding: 12px 0 18px;
}

.site-footer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(23, 35, 63, 0.1);
}

.footer-copy {
  margin: 0;
}

.page-hero {
  padding: 18px 0 18px;
}

.page-hero p {
  max-width: 46rem;
}

.page-section {
  margin-top: 24px;
}

.page-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.route-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.micro-copy {
  font-size: 0.92rem;
  color: var(--muted);
}

.privacy-copy > *:first-child,
.support-copy > *:first-child {
  margin-top: 0;
}

.privacy-copy h3,
.support-copy h3 {
  margin: 28px 0 8px;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.privacy-copy p,
.privacy-copy ul,
.support-copy p,
.support-copy ul {
  margin: 0 0 14px;
}

.privacy-copy ul,
.support-copy ul {
  padding-left: 18px;
  color: var(--muted);
}

.privacy-copy li,
.support-copy li {
  margin-bottom: 8px;
}

.fade-in {
  animation: rise-in 620ms ease both;
}

.fade-in-delay {
  animation: rise-in 760ms ease both;
}

.float-card {
  animation: drift 8s ease-in-out infinite;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 980px) {
  .hero,
  .workbench,
  .support-columns,
  .privacy-columns,
  .cta-panel {
    grid-template-columns: 1fr;
  }

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

  .site-footer__bar,
  .section-intro {
    align-items: start;
    flex-direction: column;
  }

  .workbench .shot-card--tall .shot-frame,
  .shot-frame,
  .shot-frame--compact {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .page-shell {
    padding-top: 18px;
    padding-bottom: 56px;
  }

  .site-header {
    position: static;
  }

  .site-header__bar {
    border-radius: 28px;
  }

  .site-nav {
    width: 100%;
  }

  .site-nav a {
    padding-left: 0;
    padding-right: 0;
  }

  .trust-strip,
  .feature-grid,
  .shot-grid {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.6rem, 13vw, 4.1rem);
  }

  .hero-actions,
  .route-links {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .privacy-table th,
  .privacy-table td {
    display: block;
    width: 100%;
    padding: 10px 0;
  }

  .privacy-table tr {
    display: block;
    padding-bottom: 12px;
  }
}

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

  .fade-in,
  .fade-in-delay,
  .float-card {
    animation: none;
  }

  .button,
  .site-nav a {
    transition: none;
  }
}
