:root {
  --bg-main: #f3efe7;
  --bg-soft: #fbf8f2;
  --bg-dark: #050505;
  --bg-card: #ffffff;
  --bg-card-muted: #f2ede4;
  --text-main: #121212;
  --text-soft: #66625d;
  --text-dark-soft: rgba(255, 255, 255, 0.72);
  --line: rgba(18, 18, 18, 0.12);
  --line-dark: rgba(255, 255, 255, 0.12);
  --pink: #fe2c55;
  --pink-dark: #ca2043;
  --cyan: #25f4ee;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --shadow-soft: 0 24px 60px rgba(17, 17, 17, 0.08);
  --shadow-strong: 0 40px 90px rgba(0, 0, 0, 0.25);
  --container: 1180px;
  --font-body: "Manrope", sans-serif;
  --font-display: "Sora", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top right, rgba(37, 244, 238, 0.09), transparent 28%),
    radial-gradient(circle at top left, rgba(254, 44, 85, 0.08), transparent 30%),
    var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  background: none;
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(37, 244, 238, 0.8);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.header-chip,
.stage-pill,
.stage-status,
.section-tag,
.floating-note__label,
.hero-point__label,
.metric-card__eyebrow,
.ownership-card__tag,
.ribbon-item__label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-chip {
  padding: 0.65rem 1rem;
  background: rgba(18, 18, 18, 0.05);
  color: rgba(18, 18, 18, 0.72);
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 52px;
  padding: 0.95rem 1.55rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.primary-btn {
  color: #ffffff;
  background: linear-gradient(135deg, var(--pink) 0%, #ff5f7f 50%, #ff315e 100%);
  box-shadow: 0 16px 36px rgba(254, 44, 85, 0.24);
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 38px rgba(254, 44, 85, 0.34);
}

.primary-btn--large,
.secondary-btn--light {
  min-height: 58px;
  padding-inline: 1.7rem;
}

.primary-btn--block {
  width: 100%;
}

.secondary-btn {
  border-color: rgba(18, 18, 18, 0.12);
  background: rgba(255, 255, 255, 0.8);
  color: var(--text-main);
}

.secondary-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(18, 18, 18, 0.24);
}

.secondary-btn--light {
  border-color: rgba(255, 255, 255, 0.18);
  background: transparent;
  color: #ffffff;
}

.secondary-btn--light:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.06);
}

.hero-section {
  position: relative;
  padding: clamp(4.5rem, 8vw, 7rem) 0 clamp(4rem, 7vw, 6rem);
  background:
    radial-gradient(circle at top left, rgba(254, 44, 85, 0.22), transparent 26%),
    radial-gradient(circle at 85% 18%, rgba(37, 244, 238, 0.2), transparent 24%),
    var(--bg-dark);
  color: #ffffff;
  overflow: hidden;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 3.5rem;
  align-items: center;
}

.eyebrow,
.section-tag {
  color: var(--pink);
  margin: 0 0 1rem;
}

.hero-copy h1,
.section-heading h2,
.editorial-card h2,
.final-cta-shell h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.97;
}

.hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 6.2vw, 5.15rem);
}

.hero-intro,
.section-heading p,
.editorial-card p,
.benefit-item p,
.service-card p,
.process-card p,
.ownership-card li,
.faq-panel p,
.final-cta-shell p {
  color: var(--text-soft);
  font-size: 1.04rem;
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.35rem;
}

.hero-brand__logo {
  width: clamp(84px, 9vw, 112px);
  height: auto;
  object-fit: contain;
}

.hero-intro {
  max-width: 44rem;
  margin: 1.6rem 0 0;
  color: var(--text-dark-soft);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.4rem;
}

.hero-point {
  padding: 1.1rem 1.15rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-point__label {
  color: rgba(255, 255, 255, 0.54);
}

.hero-point strong {
  display: block;
  margin-top: 0.4rem;
  font-size: 1.02rem;
  line-height: 1.35;
}

.hero-stage {
  position: relative;
}

.hero-stage__panel {
  position: relative;
  padding: 1.35rem;
  border-radius: 36px;
  background:
    radial-gradient(circle at top left, rgba(254, 44, 85, 0.12), transparent 28%),
    radial-gradient(circle at bottom right, rgba(37, 244, 238, 0.14), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f2eee7 100%);
  color: var(--text-main);
  box-shadow: var(--shadow-strong);
}

.stage-header {
  display: block;
  margin-bottom: 1rem;
}

.stage-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  width: 100%;
  padding: 0.95rem 1.1rem;
  border-radius: 22px;
  background: var(--cyan);
  color: var(--text-main);
}

.stage-banner__label {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stage-banner strong {
  font-family: var(--font-display);
  font-size: 1.02rem;
  line-height: 1.1;
  text-align: right;
}

.stage-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.78fr);
  gap: 0.9rem;
}

.metric-card,
.chart-card,
.stack-card,
.service-card,
.process-card,
.ownership-card,
.editorial-card,
.faq-item,
.ribbon-item {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.metric-card,
.chart-card,
.stack-card {
  position: relative;
  overflow: hidden;
  min-height: 168px;
  padding: 1.2rem;
  border: 1px solid rgba(18, 18, 18, 0.08);
}

.metric-card--accent {
  background: linear-gradient(180deg, #ff456c 0%, #f62b54 100%);
  color: #ffffff;
}

.metric-card--accent .metric-card__eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.metric-card--accent p {
  color: rgba(255, 255, 255, 0.85);
}

.metric-card--light {
  background: rgba(255, 255, 255, 0.8);
}

.metric-card strong,
.chart-card strong {
  display: block;
  margin-top: 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.7vw, 2.1rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.metric-card p {
  margin: 0.8rem 0 0;
  font-size: 0.94rem;
  line-height: 1.45;
}

.mini-list,
.check-list {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 0;
}

.mini-list li,
.check-list li {
  position: relative;
  padding-left: 1.45rem;
  margin-top: 0.62rem;
  line-height: 1.45;
}

.mini-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  top: 0.52rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--pink);
}

.chart-card {
  background: #111214;
  color: #ffffff;
}

.chart-card__top {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.chart-card strong {
  max-width: 6ch;
}

.chart-card .metric-card__eyebrow {
  color: rgba(255, 255, 255, 0.54);
}

.chart-bars {
  display: flex;
  align-items: end;
  gap: 0.8rem;
  height: 152px;
  margin-top: 1rem;
}

.chart-bars span {
  flex: 1;
  height: var(--bar-height);
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.54));
}

.chart-line {
  position: absolute;
  right: 1.2rem;
  bottom: 1.25rem;
  width: 56%;
  height: 3px;
  background: linear-gradient(90deg, transparent, transparent);
}

.chart-line span {
  position: absolute;
  right: 0;
  bottom: 1.5rem;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), var(--cyan));
  transform: rotate(-28deg);
  transform-origin: right center;
}

.chart-line span::after {
  content: "";
  position: absolute;
  right: -2px;
  top: -5px;
  width: 12px;
  height: 12px;
  border-top: 4px solid var(--cyan);
  border-right: 4px solid var(--cyan);
  transform: rotate(45deg);
}

.stack-card {
  display: grid;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.85);
}

.stack-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-height: 68px;
  padding: 0.85rem 0.95rem;
  border-radius: 18px;
  background: #121214;
  color: #ffffff;
}

.stack-item span {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--cyan);
}

.stack-item strong {
  font-size: 0.94rem;
  line-height: 1.35;
}

.stage-logo {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 124px;
  opacity: 0.08;
  filter: grayscale(1) contrast(1.15);
}

.floating-note {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.floating-note__content {
  display: grid;
  gap: 0.2rem;
}

.floating-note__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.05);
  color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06);
}

.floating-note__icon i {
  font-size: 1rem;
}

.floating-note strong {
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.2;
}

.floating-note--dark {
  left: -0.9rem;
  bottom: 1rem;
  background: rgba(12, 12, 12, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.floating-note--dark .floating-note__label {
  color: rgba(255, 255, 255, 0.64);
}

.stats-ribbon {
  position: relative;
  margin-top: -1.65rem;
  z-index: 2;
}

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

.ribbon-item {
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(18, 18, 18, 0.08);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.ribbon-item strong {
  display: block;
  margin-top: 0.55rem;
  font-size: 1.02rem;
  line-height: 1.4;
}

.editorial-section,
.services-section,
.ownership-section,
.faq-section,
.final-cta-section {
  padding: clamp(4.5rem, 7vw, 7rem) 0;
}

.editorial-grid,
.ownership-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: start;
}

.editorial-card {
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.editorial-card--dark {
  background:
    radial-gradient(circle at top right, rgba(37, 244, 238, 0.18), transparent 28%),
    radial-gradient(circle at left center, rgba(254, 44, 85, 0.2), transparent 32%),
    #0d0d0f;
  color: #ffffff;
}

.editorial-card--dark p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.72);
}

.editorial-card h2,
.section-heading h2,
.final-cta-shell h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.benefit-list {
  display: grid;
  gap: 1rem;
}

.benefit-item,
.service-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.benefit-item i,
.service-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(254, 44, 85, 0.12), rgba(37, 244, 238, 0.18));
  color: var(--pink);
  font-size: 1.15rem;
}

.benefit-item h3,
.service-card h3,
.process-card h3,
.ownership-card h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.2;
}

.benefit-item p,
.service-card p {
  margin: 0.45rem 0 0;
}

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

.section-heading h2 {
  margin-top: 0.25rem;
}

.section-heading p {
  margin: 1rem 0 0;
}

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

.service-card {
  grid-template-columns: 1fr;
  align-content: start;
  min-height: 265px;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.82);
}

.service-card::before {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink), rgba(37, 244, 238, 0.7));
  margin-bottom: 1.3rem;
}

.process-section {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
  background:
    radial-gradient(circle at top right, rgba(254, 44, 85, 0.18), transparent 24%),
    radial-gradient(circle at bottom left, rgba(37, 244, 238, 0.14), transparent 26%),
    #080809;
  color: #ffffff;
}

.section-heading--dark p {
  color: rgba(255, 255, 255, 0.7);
}

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

.process-card {
  min-height: 250px;
  padding: 1.45rem;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.04);
}

.process-card__number {
  display: inline-flex;
  margin-bottom: 1.3rem;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cyan);
}

.process-card p {
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.section-heading--left {
  margin-bottom: 0;
}

.ownership-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.ownership-card {
  min-height: 100%;
  padding: 1.8rem;
  border: 1px solid var(--line);
}

.ownership-card--light {
  background: rgba(255, 255, 255, 0.76);
}

.ownership-card--dark {
  background:
    radial-gradient(circle at top left, rgba(254, 44, 85, 0.15), transparent 24%),
    rgba(10, 10, 11, 0.96);
  border-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.ownership-card__tag {
  padding: 0.6rem 0.9rem;
  background: rgba(18, 18, 18, 0.08);
}

.ownership-card--dark .ownership-card__tag {
  background: rgba(255, 255, 255, 0.08);
}

.check-list--dark li::before {
  background: var(--text-main);
}

.check-list {
  margin-top: 1.2rem;
}

.ownership-card--dark .check-list li {
  color: rgba(255, 255, 255, 0.78);
}

.faq-shell {
  max-width: 900px;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
}

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.35rem 1.45rem;
  text-align: left;
  font-size: 1.06rem;
  font-weight: 800;
  cursor: pointer;
}

.faq-trigger i {
  flex-shrink: 0;
  color: var(--pink);
  transition: transform 180ms ease;
}

.faq-trigger[aria-expanded="true"] i {
  transform: rotate(45deg);
}

.faq-panel {
  padding: 0 1.45rem 1.4rem;
}

.faq-panel p {
  margin: 0;
}

.final-cta-shell {
  padding: clamp(2rem, 5vw, 3.6rem);
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(37, 244, 238, 0.18), transparent 28%),
    radial-gradient(circle at bottom left, rgba(254, 44, 85, 0.24), transparent 32%),
    #0b0b0d;
  color: #ffffff;
  text-align: center;
  box-shadow: var(--shadow-strong);
}

.final-cta-shell .section-tag {
  justify-content: center;
}

.final-cta-shell p {
  max-width: 640px;
  margin: 1rem auto 0;
  color: rgba(255, 255, 255, 0.72);
}

.final-cta-shell .primary-btn {
  margin-top: 2rem;
}

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

.footer-copy {
  display: grid;
  gap: 0.35rem;
}

.footer-copy p {
  margin: 0;
}

.footer-copy__summary {
  max-width: 760px;
  color: rgba(18, 18, 18, 0.72);
  font-weight: 600;
  line-height: 1.45;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(18, 18, 18, 0.08);
  padding-top: 1.4rem;
  color: rgba(18, 18, 18, 0.58);
  font-size: 0.96rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0s);
}

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

@media (max-width: 1080px) {
  .hero-grid,
  .editorial-grid,
  .ownership-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 2.5rem;
  }

  .hero-points,
  .ribbon-grid,
  .services-grid,
  .process-grid,
  .ownership-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 1.2rem), var(--container));
  }

  .hero-brand {
    margin-bottom: 1.15rem;
  }

  .hero-copy h1 {
    max-width: 11ch;
  }

  .hero-points,
  .ribbon-grid,
  .services-grid,
  .process-grid,
  .ownership-cards,
  .stage-grid {
    grid-template-columns: 1fr;
  }

  .hero-point,
  .ribbon-item,
  .service-card,
  .process-card,
  .ownership-card,
  .editorial-card,
  .faq-item {
    border-radius: 24px;
  }

  .hero-stage__panel {
    padding: 1rem;
  }

  .chart-card {
    min-height: auto;
    padding: 1.1rem;
  }

  .chart-bars {
    gap: 0.42rem;
    height: 84px;
    margin-top: 0.75rem;
  }

  .chart-bars span {
    min-height: 16px;
  }

  .chart-card strong {
    max-width: 7ch;
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .chart-line {
    display: none;
  }

  .stage-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .stage-banner strong {
    text-align: left;
  }

  .floating-note {
    position: static;
    margin-top: 0.9rem;
  }

  .stage-logo {
    width: 96px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
