:root {
  color-scheme: light;
  --bg: #fff4e8;
  --bg-soft: #fffdf8;
  --surface: rgba(255, 251, 246, 0.8);
  --surface-strong: rgba(255, 253, 248, 0.94);
  --line: rgba(73, 62, 95, 0.12);
  --line-strong: rgba(73, 62, 95, 0.18);
  --text: #231735;
  --muted: #6b5d7f;
  --accent: #4d72ff;
  --accent-soft: rgba(77, 114, 255, 0.14);
  --accent-warm: #ff7e52;
  --accent-warm-soft: rgba(255, 126, 82, 0.14);
  --good: #ff9f3f;
  --radius: 28px;
  --shadow: 0 34px 80px rgba(92, 70, 120, 0.14);
  --container: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  background: #fff4e8;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 126, 82, 0.16), transparent 18rem),
    radial-gradient(circle at 86% 16%, rgba(77, 114, 255, 0.18), transparent 18rem),
    linear-gradient(180deg, #fff9f0 0%, #fff4e8 48%, #fffdf9 100%);
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.06)),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.2), transparent 20%);
  mask-image: linear-gradient(180deg, black, transparent 80%);
}

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(255, 246, 235, 0.72);
  border-bottom: 1px solid rgba(35, 23, 53, 0.06);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img,
.footer-brand img {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(255, 126, 82, 0.16);
}

.brand strong,
.footer-brand h2,
h1,
h2,
h3 {
  font-family: "Sora", sans-serif;
  letter-spacing: -0.04em;
}

.brand strong {
  display: block;
  font-size: 1rem;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.top-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
}

.top-nav a:hover {
  background: rgba(255, 255, 255, 0.76);
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.button-primary {
  color: white;
  background: linear-gradient(135deg, #ff7e52 0%, #ff9f3f 48%, #4d72ff 100%);
  box-shadow: 0 18px 34px rgba(255, 126, 82, 0.24);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
}

.hero {
  position: relative;
  overflow: clip;
  padding: clamp(3.5rem, 8vw, 6rem) 0 2.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 450px);
  gap: 30px;
  align-items: center;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(26px);
  opacity: 0.75;
}

.hero-orb-one {
  width: 320px;
  height: 320px;
  top: -90px;
  right: 10%;
  background: rgba(39, 121, 255, 0.18);
}

.hero-orb-two {
  width: 280px;
  height: 280px;
  bottom: 10px;
  left: 10%;
  background: rgba(255, 148, 112, 0.16);
}

.eyebrow,
.section-tag,
.support-label {
  margin: 0 0 12px;
  color: #3362bd;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 9ch;
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 0.92;
}

.hero-lead,
.section-copy,
.download-panel p,
.workflow-copy p,
.promise-grid p,
.compatibility-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-lead {
  max-width: 34rem;
  margin: 20px 0 0;
  font-size: 1.08rem;
}

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

.hero-foot {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.hero-foot span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(19, 34, 56, 0.05);
  color: #51627c;
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-stage {
  position: relative;
}

.stage-window,
.download-panel,
.support-card,
.workflow-steps article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.stage-window {
  padding: 18px;
}

.stage-top {
  display: flex;
  gap: 8px;
}

.stage-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(19, 34, 56, 0.14);
}

.stage-summary {
  margin-top: 18px;
}

.stage-summary p,
.stage-feed small,
.stage-alert p {
  margin: 0;
  color: var(--muted);
}

.stage-summary strong {
  display: block;
  margin-top: 6px;
  font-size: 1.6rem;
}

.stage-feed {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.stage-feed article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(19, 34, 56, 0.06);
}

.stage-feed p {
  margin: 0;
  font-weight: 800;
}

.stage-feed strong {
  font-size: 0.92rem;
}

.stage-feed .safe strong {
  color: var(--good);
}

.stage-alert {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255, 148, 112, 0.1);
}

.alert-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-warm);
  box-shadow: 0 0 0 8px rgba(255, 148, 112, 0.12);
}

.section {
  padding: 1.2rem 0 1.8rem;
}

.promise-grid,
.compatibility-grid,
.footer-grid {
  display: grid;
  gap: 18px;
}

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

.promise-grid article,
.section-head,
.footer-bottom {
  display: flex;
  gap: 16px;
}

.promise-grid article {
  flex-direction: column;
  padding: 24px 0;
  border-top: 1px solid rgba(19, 34, 56, 0.08);
}

.promise-grid h2,
.workflow-copy h2,
.section-head h2,
.download-panel h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.promise-grid h2 {
  font-size: 1.6rem;
}

.promise-grid p,
.workflow-copy p,
.download-panel p,
.section-copy {
  margin: 0;
}

.workflow-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.workflow-steps {
  display: grid;
  gap: 16px;
}

.workflow-steps article {
  padding: 22px;
}

.workflow-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
}

.workflow-steps h3,
.support-card h3 {
  margin: 14px 0 8px;
  font-size: 1.35rem;
}

.workflow-steps p,
.support-card p,
.footer-column p,
.footer-brand p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.section-head {
  align-items: end;
  justify-content: space-between;
  margin-bottom: 22px;
}

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

.support-card {
  padding: 24px;
}

.support-live {
  background:
    radial-gradient(circle at 100% 0%, rgba(39, 121, 255, 0.12), transparent 10rem),
    rgba(255, 255, 255, 0.84);
}

.download-panel {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
}

.site-footer {
  padding: 2.4rem 0 1.6rem;
}

.footer-grid {
  grid-template-columns: minmax(0, 1.1fr) repeat(2, minmax(0, 0.65fr));
  padding: 24px 0;
  border-top: 1px solid rgba(19, 34, 56, 0.08);
}

.footer-brand {
  display: flex;
  align-items: start;
  gap: 14px;
}

.footer-brand h2 {
  margin: 0;
  font-size: 1.3rem;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h3 {
  margin: 0 0 4px;
  font-size: 0.96rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-column a {
  color: var(--muted);
  font-weight: 700;
}

.footer-column a:hover {
  color: var(--text);
}

.footer-bottom {
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(19, 34, 56, 0.08);
  color: var(--muted);
  font-size: 0.9rem;
}

.poster-hero {
  position: relative;
  overflow: clip;
  padding: clamp(3.4rem, 8vw, 6rem) 0 2.5rem;
}

.poster-shell,
.flow-grid,
.price-shell {
  display: grid;
  gap: 28px;
}

.poster-shell {
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 470px);
  align-items: center;
}

.poster-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(28px);
  opacity: 0.7;
}

.poster-orb-a {
  width: 360px;
  height: 360px;
  top: -72px;
  right: 8%;
  background: rgba(77, 114, 255, 0.18);
}

.poster-orb-b {
  width: 340px;
  height: 340px;
  bottom: 8px;
  left: 6%;
  background: rgba(255, 126, 82, 0.2);
}

.poster-copy h1 {
  max-width: 9.4ch;
}

.poster-lead,
.support-foot,
.price-copy,
.flow-copy p,
.flow-list p,
.ribbon-grid p,
.support-line span,
.cta-shell p {
  color: var(--muted);
  line-height: 1.72;
}

.poster-lead {
  max-width: 33rem;
  margin: 22px 0 0;
  font-size: 1.08rem;
}

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

.poster-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.poster-badges span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(35, 23, 53, 0.06);
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 700;
}

.poster-stage,
.support-shell,
.price-shell,
.cta-shell,
.flow-list article {
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--surface);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.poster-stage {
  position: relative;
  padding: 22px;
}

.stage-note {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(35, 23, 53, 0.06);
}

.stage-note strong,
.stage-note p {
  margin: 0;
}

.stage-note p {
  color: var(--muted);
}

.stage-note-top {
  max-width: 14rem;
}

.stage-note-bottom {
  flex-direction: row;
  align-items: center;
  margin-top: 18px;
  background: rgba(255, 126, 82, 0.12);
}

.spinner-mark {
  position: relative;
  width: min(100%, 312px);
  aspect-ratio: 1;
  margin: 18px auto 20px;
}

.spinner-ring {
  position: absolute;
  border-radius: 50%;
  -webkit-mask: radial-gradient(circle, transparent 54%, #000 55% 73%, transparent 74%);
  mask: radial-gradient(circle, transparent 54%, #000 55% 73%, transparent 74%);
}

.spinner-ring-a {
  inset: 0;
  background: conic-gradient(from -32deg, #ff8e61 0 24%, transparent 24% 42%, #4d72ff 42% 82%, transparent 82% 100%);
  animation: drift-spin 13s linear infinite;
}

.spinner-ring-b {
  inset: 38px;
  background: conic-gradient(from 160deg, #ffd39c 0 28%, transparent 28% 48%, #8db0ff 48% 78%, transparent 78% 100%);
  -webkit-mask: radial-gradient(circle, transparent 48%, #000 49% 71%, transparent 72%);
  mask: radial-gradient(circle, transparent 48%, #000 49% 71%, transparent 72%);
  animation: drift-spin-reverse 10s linear infinite;
}

.spinner-core {
  position: absolute;
  inset: 82px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 252, 247, 0.92);
  text-align: center;
  font-family: "Sora", sans-serif;
  font-size: 1.4rem;
  line-height: 1.1;
  letter-spacing: -0.05em;
  box-shadow: inset 0 0 0 1px rgba(35, 23, 53, 0.06);
}

.ribbon-grid,
.price-meta {
  display: grid;
  gap: 18px;
}

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

.ribbon-grid article {
  padding: 22px 0;
  border-top: 1px solid rgba(35, 23, 53, 0.08);
}

.ribbon-grid h2,
.flow-copy h2,
.support-copy h2,
.price-shell h2,
.cta-shell h2 {
  margin: 0;
  font-size: clamp(1.95rem, 4vw, 3.2rem);
  line-height: 0.98;
}

.flow-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.flow-list {
  display: grid;
  gap: 16px;
}

.flow-list article {
  padding: 22px;
}

.flow-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 126, 82, 0.12);
  color: var(--accent-warm);
  font-weight: 800;
}

.flow-list h3 {
  margin: 14px 0 8px;
  font-size: 1.35rem;
}

.support-shell,
.cta-shell {
  padding: 28px;
}

.support-lines {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.support-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid rgba(35, 23, 53, 0.08);
}

.support-line strong,
.price-meta strong {
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}

.support-line span {
  font-weight: 700;
}

.support-foot {
  margin: 20px 0 0;
}

.price-shell {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  align-items: center;
  padding: 30px;
  background:
    radial-gradient(circle at top right, rgba(77, 114, 255, 0.14), transparent 14rem),
    radial-gradient(circle at bottom left, rgba(255, 126, 82, 0.16), transparent 16rem),
    var(--surface-strong);
}

.price-copy {
  margin: 18px 0 0;
}

.price-copy strong {
  color: var(--accent-warm);
}

.price-meta {
  grid-template-columns: 1fr;
}

.price-meta > div {
  padding: 16px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(35, 23, 53, 0.06);
}

.price-meta p,
.price-meta strong {
  margin: 0;
}

.price-meta p {
  color: var(--muted);
  margin-bottom: 6px;
}

.cta-shell {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
}

.cta-shell p {
  margin: 14px 0 0;
}

.button.button-pressed {
  transform: translateY(1px) scale(0.98);
}

.burst {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
}

.burst-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff7e52, #4d72ff);
  animation: burst-dot 520ms ease-out forwards;
}

@keyframes drift-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes drift-spin-reverse {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

@keyframes burst-dot {
  to {
    transform: translate(var(--dx), var(--dy)) scale(0);
    opacity: 0;
  }
}

.legal-page .page-hero,
.contact-page .page-hero {
  padding: 4rem 0 2rem;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 360px);
  gap: 24px;
  align-items: start;
}

.page-hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.page-hero-copy p,
.legal-body p,
.contact-card p,
.contact-list li,
.legal-meta {
  color: var(--muted);
  line-height: 1.75;
}

.page-aside,
.legal-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.page-aside {
  padding: 22px;
}

.legal-card,
.contact-card {
  padding: 28px;
}

.legal-card h1,
.contact-card h1 {
  max-width: none;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.legal-card h2,
.contact-card h2 {
  margin: 22px 0 8px;
  font-size: 1.2rem;
}

.legal-meta {
  margin-top: 8px;
}

.contact-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.contact-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal 700ms ease forwards;
  animation-delay: var(--delay, 0ms);
}

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

@media (max-width: 980px) {
  .header-row,
  .section-head,
  .download-panel,
  .footer-bottom,
  .cta-shell {
    flex-direction: column;
    align-items: start;
  }

  .hero-grid,
  .poster-shell,
  .flow-grid,
  .price-shell,
  .workflow-grid,
  .page-hero-grid,
  .footer-grid,
  .compatibility-grid,
  .promise-grid,
  .ribbon-grid {
    grid-template-columns: 1fr;
  }

  .support-line {
    flex-direction: column;
    align-items: start;
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100vw - 28px, 1180px);
  }

  .site-header {
    position: static;
  }

  .top-nav {
    display: none;
  }

  .hero {
    padding-top: 2.4rem;
  }

  .button,
  .poster-actions .button,
  .cta-actions .button {
    width: 100%;
  }

  .hero-actions,
  .download-actions,
  .poster-actions,
  .cta-actions {
    width: 100%;
  }

  .hero-foot {
    gap: 10px;
  }

  .poster-hero {
    padding-top: 2.5rem;
  }

  .poster-badges span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .spinner-core {
    inset: 70px;
    font-size: 1.15rem;
  }
}
