:root {
  --bg: #0e0718;
  --panel: #180f26;
  --panel-soft: #25183a;
  --panel-card: #302046;
  --line: rgba(255, 255, 255, 0.08);
  --line-soft: rgba(255, 255, 255, 0.12);
  --text: #f7efff;
  --text-soft: #cfbfdf;
  --ink: #281b34;
  --muted: #73627f;
  --white: #fbf8fd;
  --accent-orange: #ff6f2c;
  --accent-pink: #db49ff;
  --accent-purple: #8c46ff;
  --shadow: 0 24px 64px rgba(6, 2, 12, 0.36);
  --radius-xl: 20px;
  --radius-lg: 16px;
  --radius-md: 14px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(219, 73, 255, 0.18), transparent 24%),
    linear-gradient(180deg, #0c0615 0%, #140b21 38%, #0f0818 100%);
  color: var(--text);
  font-family: "Manrope", sans-serif;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset-inline: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  top: 84px;
  height: 150px;
  background: radial-gradient(circle at center, rgba(220, 75, 255, 0.78), rgba(255, 111, 44, 0.28) 38%, transparent 74%);
  filter: blur(30px);
}

body::after {
  bottom: 56px;
  height: 170px;
  background: radial-gradient(circle at center, rgba(220, 75, 255, 0.68), rgba(255, 111, 44, 0.24) 40%, transparent 74%);
  filter: blur(34px);
}

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

.page {
  width: min(100%, 430px);
  margin: 0 auto;
  padding: 10px 12px 24px;
}

.construction-banner {
  margin-bottom: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 111, 44, 0.28);
  background: rgba(255, 111, 44, 0.1);
  color: var(--white);
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.surface,
.light-shell,
.contact-shell {
  border-radius: var(--radius-xl);
  margin-bottom: 12px;
}

.surface {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 14%),
    linear-gradient(180deg, #1a1028 0%, #120920 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.shell,
.light-shell,
.contact-shell {
  position: relative;
  overflow: hidden;
}

.shell {
  padding: 16px;
}

.light-shell,
.contact-shell {
  padding: 24px 16px 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 241, 251, 0.98));
  color: var(--ink);
  box-shadow: var(--shadow);
}

.header-shell {
  padding: 6px;
  border-radius: 26px;
  border-color: rgba(166, 65, 255, 0.24);
  box-shadow: var(--shadow);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(39, 23, 57, 0.98), rgba(25, 15, 38, 0.98));
  border: 0;
  box-shadow: none;
}

.top-menu {
  display: none;
  align-items: center;
  gap: 50px;
}

.top-menu a {
  color: var(--text);
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.02rem;
  font-weight: 500;
  transition: color 180ms ease, text-decoration-color 180ms ease, opacity 180ms ease;
}

.top-menu a:hover,
.top-menu a:focus-visible {
  color: var(--accent-orange);
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 0.34em;
}

.top-menu a.is-active {
  color: var(--accent-orange);
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 0.34em;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 12px 4px 4px;
  border-radius: 999px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.brand-logo {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: none;
}

.brand-name {
  display: grid;
  gap: 0;
  font-family: "Manrope", sans-serif;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.04em;
}

.brand-name span {
  display: block;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 16px;
  font-weight: 800;
  transition: box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease, filter 180ms ease;
}

.small-button {
  padding: 0;
  overflow: hidden;
  color: white;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.92rem;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-pink), var(--accent-orange));
  box-shadow: 0 16px 30px rgba(219, 73, 255, 0.24);
}

.small-button .button-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
}

.small-button .button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  min-height: 48px;
  color: #1d1228;
  background: rgba(255, 255, 255, 0.96);
  font-size: 1.55rem;
  line-height: 1;
}

.hero-shell {
  text-align: center;
  padding-top: 22px;
  padding-bottom: 18px;
}

.hero-shell::after,
.trust-shell::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: -24px;
  height: 84px;
  background: radial-gradient(circle at center, rgba(219, 73, 255, 0.84), rgba(255, 111, 44, 0.42) 36%, transparent 72%);
  filter: blur(18px);
  pointer-events: none;
}

.hero-copy h1,
.surface h2,
.light-shell h2,
.contact-shell h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  font-size: clamp(2rem, 8vw, 2.85rem);
  line-height: 0.98;
}

.hero-copy p,
.intro {
  margin: 14px 0 0;
  font-size: 0.94rem;
  line-height: 1.55;
}

.hero-copy p {
  color: var(--text-soft);
}

.hero-visual {
  position: relative;
  margin-top: 14px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset-inline: 10%;
  bottom: 8%;
  height: 44px;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(219, 73, 255, 0.82), rgba(255, 111, 44, 0.35) 42%, transparent 74%);
  filter: blur(14px);
}

.hero-koala {
  position: relative;
  display: block;
  width: min(100%, 230px);
  margin: 0 auto;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.32));
}

.hero-actions {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.hero-actions .button {
  width: 100%;
  position: relative;
  z-index: 1;
}

.primary-button,
.secondary-button {
  padding: 14px 18px;
  font-size: 0.86rem;
}

.primary-button {
  color: white;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-pink), var(--accent-orange));
  box-shadow: 0 14px 28px rgba(219, 73, 255, 0.22);
  border: 0;
  cursor: pointer;
}

.primary-button:hover,
.primary-button:focus-visible {
  filter: brightness(1.06);
  box-shadow: 0 18px 34px rgba(219, 73, 255, 0.3);
}

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

.secondary-button:hover,
.secondary-button:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.eyebrow,
.feature-kicker,
.step-chip {
  display: inline-flex;
  margin: 0 0 12px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-orange);
}

.light-shell h2,
.surface h2,
.contact-shell h2 {
  font-size: clamp(1.75rem, 7vw, 2.35rem);
  line-height: 1.02;
}

.intro {
  color: var(--muted);
}

.dark-intro {
  color: var(--text-soft);
}

.problem-grid,
.capabilities-grid,
.process-grid,
.stats-grid,
.trust-grid {
  display: grid;
  gap: 12px;
}

.problem-grid {
  margin-top: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.problem-card,
.problem-note,
.solution-card,
.feature-card,
.mini-card,
.process-card,
.trust-card {
  border-radius: var(--radius-md);
}

.problem-card {
  padding: 15px 14px;
  color: var(--text);
  background: linear-gradient(180deg, #2b1c40 0%, #221632 100%);
  border: 1px solid rgba(84, 64, 112, 0.9);
}

.problem-card h3,
.solution-card h3,
.feature-card h3,
.process-card h3,
.trust-card h3 {
  margin: 0 0 10px;
  font-size: 0.95rem;
  font-family: "Sora", sans-serif;
}

.problem-card p,
.solution-card p,
.feature-card p,
.process-card p,
.trust-card p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.55;
}

.problem-note {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  text-align: center;
  font-weight: 800;
  line-height: 1.25;
}

.solution-card,
.feature-card,
.capability-card,
.process-card,
.trust-card {
  color: var(--text);
  background: linear-gradient(180deg, rgba(66, 48, 92, 0.96), rgba(42, 29, 62, 0.96));
  border: 1px solid rgba(97, 73, 128, 0.72);
}

.solution-shell {
  padding-top: 22px;
  padding-bottom: 18px;
  text-align: center;
}

.solution-head {
  max-width: 760px;
  margin: 0 auto;
}

.solution-eyebrow {
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(53, 38, 74, 0.92);
  color: var(--white);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
}

.solution-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-orange);
}

.solution-title span {
  display: block;
}

.solution-title-accent {
  color: var(--accent-orange);
}

.solution-intro {
  max-width: 34ch;
  margin: 10px auto 0;
  font-size: 0.88rem;
  line-height: 1.38;
}

.solution-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 34px;
  padding-top: 28px;
}

.solution-card {
  border: 0;
  border-radius: var(--radius-lg);
  background: #33263f;
  box-shadow: none;
  text-align: left;
}

.solution-card h3 {
  margin-bottom: 12px;
  font-size: clamp(0.98rem, 2vw, 1.22rem);
}

.solution-card p {
  color: rgba(247, 239, 255, 0.96);
}

.solution-card-top {
  position: relative;
  z-index: 2;
  width: min(100%, 40rem);
  margin-bottom: -32px;
  padding: 18px 22px 48px;
}

.solution-card-top p {
  max-width: 34ch;
  font-size: 0.86rem;
  line-height: 1.36;
}

.solution-card-base {
  width: min(100%, 49rem);
  padding: 64px 24px 24px;
}

.solution-card-base h3 {
  font-size: clamp(1.18rem, 2.1vw, 1.55rem);
}

.solution-card-base p {
  max-width: 22ch;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.22rem, 2.8vw, 1.75rem);
  line-height: 1.24;
  letter-spacing: -0.04em;
}

.solution-dash {
  margin-inline: 0.15em;
}

.capabilities-shell {
  position: relative;
  padding-top: 26px;
  overflow: hidden;
}

.capabilities-head {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
}

.capabilities-title span {
  display: block;
}

.capabilities-title-accent {
  color: var(--accent-orange);
}

.capabilities-intro-dash {
  margin-inline: 0.14em;
}

.branch-koala {
  position: absolute;
  top: 18px;
  right: 6px;
  z-index: 0;
  display: block;
  width: min(26vw, 170px);
  filter: drop-shadow(0 16px 26px rgba(0, 0, 0, 0.28));
  pointer-events: none;
}

.capabilities-grid {
  position: relative;
  z-index: 1;
  margin-top: 92px;
}

.capability-card {
  min-height: 100%;
  padding: 18px 16px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.chip-row span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-soft);
  font-size: 0.74rem;
}

.capability-card h3 {
  margin: 0 0 10px;
  font-size: 0.95rem;
  font-family: "Sora", sans-serif;
}

.capability-card p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.55;
}

.process-grid {
  margin-top: 20px;
}

.process-card {
  padding: 16px;
}

.step-chip {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  letter-spacing: 0.08em;
}

.process-offset {
  padding-top: 28px;
  padding-bottom: 24px;
}

.trust-shell {
  padding: 22px 18px 18px;
  background:
    radial-gradient(circle at left bottom, rgba(220, 75, 255, 0.22), transparent 28%),
    radial-gradient(circle at right bottom, rgba(255, 111, 44, 0.18), transparent 24%),
    linear-gradient(180deg, #180922 0%, #15081f 100%);
  border: 0;
  box-shadow: none;
}

.trust-shell::after {
  display: none;
}

.trust-head {
  text-align: center;
}

.trust-eyebrow {
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(59, 43, 82, 0.92);
  color: var(--white);
  letter-spacing: 0.18em;
}

.trust-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-orange);
}

.trust-title {
  font-size: clamp(2.2rem, 7vw, 3.55rem);
  line-height: 0.96;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 12px;
  margin: 32px 0 30px;
}

.trust-stat {
  text-align: center;
}

.trust-stat strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: clamp(3.3rem, 11vw, 5.6rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.06em;
  background: linear-gradient(90deg, #8d46ff 0%, #d64aff 42%, #ff6a45 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.trust-stat span {
  display: block;
  margin-top: 12px;
  color: rgba(247, 239, 255, 0.92);
  font-size: 0.86rem;
  line-height: 1.35;
}

.trust-grid {
  display: grid;
  gap: 18px;
}

.trust-card {
  position: relative;
  min-height: 172px;
  padding: 16px 16px 14px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #34293f;
  box-shadow: none;
}

.trust-card:first-child::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 180px;
  height: 180px;
  border-top-left-radius: 24px;
  background: radial-gradient(circle at top left, rgba(228, 77, 148, 0.7), rgba(228, 77, 148, 0.18) 46%, transparent 74%);
  pointer-events: none;
}

.trust-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.98);
}

.trust-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #161119;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-card h3 {
  position: relative;
  z-index: 1;
  margin: 10px 0 0;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
}

.trust-card p {
  position: relative;
  z-index: 1;
  margin-top: 38px;
  max-width: 28ch;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(247, 239, 255, 0.96);
}

.trust-dash {
  margin-inline: 0.16em;
}

.contact-shell {
  background:
    radial-gradient(circle at top, rgba(219, 73, 255, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 241, 251, 0.99));
}

.contact-layout {
  margin-top: 20px;
}

.contact-card {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(40, 27, 52, 0.08);
  box-shadow: 0 18px 40px rgba(52, 28, 70, 0.1);
}

.contact-card label {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  margin-top: 7px;
  margin-bottom: 16px;
  padding: 14px 15px;
  border: 1px solid rgba(40, 27, 52, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
}

.contact-card textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-note {
  margin: 12px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
}

.contact-koala {
  display: block;
  width: min(100%, 190px);
  margin: 18px auto 0;
  filter: drop-shadow(0 18px 28px rgba(51, 17, 66, 0.16));
}

.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: rgba(247, 239, 255, 0.7);
  font-size: 0.78rem;
}

.footer-shell p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 12px;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.small-button:hover,
.small-button:focus-visible {
  box-shadow: 0 18px 34px rgba(219, 73, 255, 0.3);
}

@media (min-width: 820px) {
  .page {
    width: min(94vw, 1080px);
    padding-inline: 20px;
  }

  .header-bar {
    gap: 22px;
  }

  .shell,
  .light-shell,
  .contact-shell {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
    align-items: center;
    text-align: left;
    gap: 10px 28px;
  }

  .hero-copy p {
    max-width: 28ch;
  }

  .hero-visual {
    grid-column: 2;
    grid-row: 1 / span 2;
    margin-top: 0;
  }

  .hero-actions {
    width: min(100%, 340px);
  }

  .top-menu {
    display: inline-flex;
  }

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

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

  .trust-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 38px;
  }

  .capabilities-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
  }

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

  .contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 16px;
    align-items: center;
  }

  .contact-koala {
    margin-top: 0;
    margin-left: auto;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
