:root {
  --bg: #f6f0ea;
  --paper: #fffaf5;
  --paper-strong: #fffdf9;
  --ink: #181826;
  --muted: #5d5a61;
  --line: rgba(24, 24, 38, 0.1);
  --accent: #f1362d;
  --accent-soft: #ffd6d2;
  --lilac: #eadbff;
  --blush: #ffd6de;
  --shadow: 0 30px 90px rgba(24, 24, 38, 0.12);
  --radius: 28px;
  --content: min(1120px, calc(100vw - 2rem));
  --content-narrow: min(760px, calc(100vw - 2rem));
  --header-height: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(234, 219, 255, 0.65), transparent 34%),
    radial-gradient(circle at top right, rgba(255, 214, 222, 0.55), transparent 28%),
    linear-gradient(180deg, #fff7f0 0%, #f4efe9 100%);
  line-height: 1.5;
}

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

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

button,
.button {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(20px);
  background: rgba(255, 250, 245, 0.82);
  border-bottom: 1px solid rgba(24, 24, 38, 0.06);
}

.site-header__inner,
.site-footer__inner,
.section__inner,
.hub-hero__inner,
.app-hero__inner {
  width: var(--content);
  margin: 0 auto;
}

.site-header__inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.brand-lockup__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(24, 24, 38, 0.14);
}

.brand-lockup__suite-logo {
  width: min(168px, 40vw);
}

.brand-lockup__name {
  width: min(185px, 42vw);
}

.brand-lockup__meta {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: rgba(24, 24, 38, 0.55);
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.site-nav a,
.nav-toggle {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  padding: 0.25rem 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.12rem;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-current::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.55rem;
  border-radius: 999px;
}

.nav-toggle:focus-visible,
.button:focus-visible,
.text-link:focus-visible {
  outline: 3px solid rgba(241, 54, 45, 0.28);
  outline-offset: 3px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

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

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

.button--primary:hover {
  background: #090910;
}

.button--accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 16px 32px rgba(241, 54, 45, 0.28);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.4);
  border-color: rgba(24, 24, 38, 0.12);
  color: var(--ink);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.text-link {
  color: var(--accent);
  font-weight: 700;
}

.hero-title,
.section-title,
.legal-title,
.cta-title {
  margin: 0;
  font-family: "Mozilla Headline", sans-serif;
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.hero-title {
  font-size: clamp(1.9rem, 4.2vw, 3.3rem);
}

.section-title {
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
}

.cta-title,
.legal-title {
  font-size: clamp(1.3rem, 2.3vw, 1.9rem);
}

.hero-copy,
.section-copy,
.legal-copy,
.support-copy {
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.1rem);
}

.hub-hero {
  padding: 3.2rem 0 2rem;
}

.hub-hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: end;
}

.hub-hero__content {
  padding: 2rem 0 4rem;
}

.hub-hero__content .hero-copy {
  max-width: 34rem;
  margin: 1.25rem 0 0;
}

.hub-hero__visual {
  position: relative;
  min-height: 600px;
}

.hub-stack {
  position: absolute;
  inset: 0;
}

.hub-stack::before,
.hub-stack::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
}

.hub-stack::before {
  width: 340px;
  height: 340px;
  right: 12%;
  top: 3%;
  background: rgba(234, 219, 255, 0.8);
}

.hub-stack::after {
  width: 220px;
  height: 220px;
  left: 2%;
  bottom: 15%;
  background: rgba(255, 214, 222, 0.9);
}

.hub-shot,
.hero-shot {
  position: absolute;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--paper);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.hub-shot img,
.hero-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hub-shot:hover,
.hero-shot:hover {
  box-shadow: 0 38px 120px rgba(24, 24, 38, 0.18);
}

.hub-shot--one {
  width: min(58%, 320px);
  right: 4%;
  top: 1.5rem;
  transform: rotate(8deg);
}

.hub-shot--two {
  width: min(56%, 304px);
  left: 8%;
  top: 10rem;
  transform: rotate(-9deg);
}

.hub-shot--three {
  width: min(54%, 296px);
  right: 17%;
  bottom: 0;
  transform: rotate(3deg);
}

.app-hero {
  position: relative;
  overflow: clip;
  padding: 1.2rem 0 0;
}

.app-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 18%, rgba(234, 219, 255, 0.9), transparent 26%),
    radial-gradient(circle at 78% 24%, rgba(255, 214, 222, 0.95), transparent 26%),
    linear-gradient(180deg, rgba(255, 248, 241, 0.98), rgba(246, 240, 234, 0.86));
  z-index: -1;
}

.app-hero__inner {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
  padding: 1.5rem 0 2.2rem;
}

.app-hero__content {
  max-width: 36rem;
}

.app-hero__brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.app-hero__brand img:first-child {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(24, 24, 38, 0.14);
}

.app-hero__brand img:last-child {
  width: min(290px, 48vw);
}

.app-hero__content .hero-copy {
  max-width: 30rem;
  margin: 1.25rem 0 1.6rem;
}

.app-hero__visual {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-hero__visual::before {
  content: "";
  position: absolute;
  inset: 8% 10% 5% 10%;
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(24, 24, 38, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.hero-frame {
  position: relative;
  z-index: 1;
  width: min(100%, 640px);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(24, 24, 38, 0.08);
  background: rgba(255, 255, 255, 0.82);
}

.hero-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-shot {
  will-change: transform;
}

.hero-shot--one {
  width: min(37%, 250px);
  left: 3%;
  top: 20%;
  transform: rotate(-11deg);
}

.hero-shot--two {
  width: min(40%, 272px);
  right: 8%;
  top: 2%;
  transform: rotate(8deg);
}

.hero-shot--three {
  width: min(38%, 260px);
  right: 18%;
  bottom: 1%;
  transform: rotate(2deg);
}

.section {
  padding: 6.2rem 0;
}

.section--tight {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.section__intro {
  max-width: 42rem;
  margin-bottom: 2rem;
}

.section__intro .section-copy {
  margin-top: 1rem;
}

.feature-grid,
.support-grid,
.footer-grid,
.hub-grid {
  display: grid;
  gap: 1.4rem;
}

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

.feature-item,
.support-item,
.footer-block,
.app-summary {
  padding: 1.4rem 0 1.6rem;
  border-top: 1px solid var(--line);
}

.feature-item h3,
.support-item h3,
.footer-block h3,
.app-summary h3 {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.feature-item p,
.support-item p,
.footer-block p,
.app-summary p {
  margin: 0;
  color: var(--muted);
}

.detail-layout,
.support-layout,
.hub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.detail-visual {
  position: relative;
  min-height: 540px;
}

.detail-visual .hero-shot--two {
  left: 6%;
  right: auto;
  top: 0;
  width: min(44%, 282px);
  transform: rotate(-5deg);
}

.detail-visual .hero-shot--three {
  width: min(46%, 300px);
  right: 8%;
  bottom: 2%;
  transform: rotate(6deg);
}

.detail-list,
.faq-list,
.legal-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-list li,
.faq-list li,
.legal-list li {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.detail-list strong,
.faq-list strong,
.legal-list strong {
  display: block;
  margin-bottom: 0.25rem;
}

.privacy-band {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.45));
  border-top: 1px solid rgba(24, 24, 38, 0.06);
  border-bottom: 1px solid rgba(24, 24, 38, 0.06);
}

.privacy-band__inner,
.cta-band__inner {
  width: var(--content);
  margin: 0 auto;
  padding: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  flex-wrap: wrap;
}

.cta-band {
  padding: 1rem 0 5.5rem;
}

.cta-band__panel {
  width: var(--content);
  margin: 0 auto;
  padding: 2rem;
  border-radius: 38px;
  background:
    linear-gradient(145deg, rgba(255, 214, 210, 0.74), rgba(255, 250, 245, 0.98)),
    var(--paper-strong);
  border: 1px solid rgba(24, 24, 38, 0.08);
  box-shadow: var(--shadow);
}

.cta-copy {
  max-width: 32rem;
  margin: 1rem 0 1.5rem;
}

.site-footer {
  padding: 2.8rem 0 3rem;
  border-top: 1px solid rgba(24, 24, 38, 0.08);
  background: rgba(255, 250, 245, 0.62);
}

.footer-grid {
  grid-template-columns: 1.15fr 1fr 1fr;
}

.footer-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-block li + li {
  margin-top: 0.55rem;
}

.site-footer__meta {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(24, 24, 38, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: rgba(24, 24, 38, 0.56);
  font-size: 0.92rem;
}

.redirect-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.redirect-panel {
  width: min(560px, calc(100vw - 2rem));
  padding: 2rem;
  border-radius: 30px;
  background: rgba(255, 252, 248, 0.88);
  border: 1px solid rgba(24, 24, 38, 0.08);
  box-shadow: 0 24px 70px rgba(24, 24, 38, 0.08);
  text-align: center;
}

.redirect-panel img {
  width: min(190px, 52vw);
  margin: 0 auto 1rem;
}

.app-summary__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.app-summary__header img:first-child {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(24, 24, 38, 0.12);
}

.app-summary__header img:last-child {
  width: min(180px, 42vw);
}

.legal-page {
  padding: 4rem 0 5rem;
}

.legal-panel {
  width: var(--content-narrow);
  margin: 0 auto;
  padding: 2rem;
  border-radius: 32px;
  background: rgba(255, 252, 248, 0.92);
  border: 1px solid rgba(24, 24, 38, 0.08);
  box-shadow: 0 24px 70px rgba(24, 24, 38, 0.08);
}

.legal-meta {
  margin: 0.8rem 0 1.5rem;
  color: rgba(24, 24, 38, 0.52);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 700;
}

.legal-copy p,
.legal-copy ul,
.legal-copy h2 {
  margin: 0 0 1rem;
}

.legal-copy h2 {
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.legal-copy ul {
  padding-left: 1.2rem;
  color: var(--muted);
}

.support-hero {
  padding: 4rem 0 1.5rem;
}

.support-layout {
  align-items: start;
}

.support-layout__main .button-row {
  margin-top: 1.6rem;
}

.support-layout__side {
  padding-top: 0.6rem;
}

.support-box {
  padding: 1.5rem;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(24, 24, 38, 0.08);
  box-shadow: 0 18px 52px rgba(24, 24, 38, 0.08);
}

.support-box + .support-box {
  margin-top: 1rem;
}

.kicker {
  margin: 0 0 0.55rem;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(24, 24, 38, 0.55);
  font-weight: 700;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
}

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

.delay-1 {
  transition-delay: 70ms;
}

.delay-2 {
  transition-delay: 140ms;
}

.delay-3 {
  transition-delay: 210ms;
}

@media (max-width: 960px) {
  :root {
    --content: min(1120px, calc(100vw - 1.5rem));
    --content-narrow: min(760px, calc(100vw - 1.5rem));
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 0.75rem;
    right: 0.75rem;
    top: calc(100% + 0.35rem);
    padding: 0.9rem;
    border-radius: 20px;
    background: rgba(255, 250, 245, 0.96);
    border: 1px solid rgba(24, 24, 38, 0.08);
    box-shadow: 0 24px 60px rgba(24, 24, 38, 0.12);
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hub-hero__inner,
  .app-hero__inner,
  .detail-layout,
  .support-layout,
  .hub-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hub-hero__visual,
  .app-hero__visual,
  .detail-visual {
    min-height: 560px;
  }

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

  .privacy-band__inner,
  .cta-band__inner {
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .hub-hero {
    padding-top: 2rem;
  }

  .hub-hero__content,
  .app-hero__content {
    padding-bottom: 1rem;
  }

  .app-hero__inner {
    min-height: auto;
    padding-top: 0.8rem;
  }

  .hub-hero__visual,
  .app-hero__visual,
  .detail-visual {
    min-height: 460px;
  }

  .hero-shot--one,
  .hub-shot--one {
    width: 42%;
  }

  .hero-shot--two,
  .hub-shot--two {
    width: 46%;
  }

  .hero-shot--three,
  .hub-shot--three {
    width: 44%;
  }

  .cta-band__panel,
  .legal-panel,
  .support-box {
    padding: 1.3rem;
    border-radius: 24px;
  }

  .button {
    width: 100%;
  }

  .button-row {
    width: 100%;
  }

  .button-row .button {
    flex: 1 1 100%;
  }
}
