@font-face {
  font-family: "PP Mori";
  src: url("https://framerusercontent.com/assets/EHeAzD6gM8HDt9NQftiBgWSV3A.woff2")
    format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "PP Mori";
  src: url("https://framerusercontent.com/assets/1Oorn08rGlWrjFZaFMZdBCqg.woff2")
    format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Rational TW Text";
  src: url("https://framerusercontent.com/assets/93kmJ5yh3oUT4DsfmqXkBJsY0.woff2")
    format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

:root {
  color-scheme: dark;
  --bg: #010101;
  --panel: #101618;
  --panel-2: #10282c;
  --text: #f6f6f5;
  --text-warm: #faf9f4;
  --muted: #99b3be;
  --line: #373c3e;
  --green: #cfe6e4;
  --cyan: #95d2e6;
  --pink: #61afbd;
  --yellow: #f6f6f5;
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.42);
  --radius: 16px;
  --font-display:
    "PP Mori", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --font-text:
    "Rational TW Text", ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-family: var(--font-text);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  background:
    radial-gradient(
      circle at 74% 10%,
      rgba(207, 230, 228, 0.14),
      transparent 28%
    ),
    radial-gradient(
      circle at 12% 46%,
      rgba(97, 175, 189, 0.12),
      transparent 30%
    ),
    linear-gradient(180deg, #010101 0%, #101618 48%, #010101 100%);
  color: var(--text);
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 4.8vw, 72px);
  border-bottom: 1px solid rgba(246, 246, 245, 0.08);
  background: rgba(1, 1, 1, 0.78);
  backdrop-filter: blur(24px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: var(--text-warm);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
}

.brand-logo {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border: 1px solid rgba(207, 230, 228, 0.34);
  border-radius: 999px;
  background: #010101;
  box-shadow: 0 0 18px rgba(207, 230, 228, 0.12);
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.1vw, 30px);
  color: var(--muted);
  font-family: var(--font-text);
  font-size: 12px;
  text-transform: uppercase;
}

nav a {
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

nav a:hover {
  color: var(--text);
}

.nav-cta {
  min-height: 40px;
  padding: 12px 18px;
  border: 1px solid rgba(207, 230, 228, 0.44);
  border-radius: 999px;
  background: var(--green);
  color: #010101;
}

.section-band,
.section,
.intro,
.site-footer {
  padding-inline: clamp(20px, 5vw, 80px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: clamp(32px, 6vw, 84px);
  min-height: calc(100svh - 79px);
  padding-block: clamp(64px, 9vw, 122px) clamp(38px, 6vw, 78px);
}

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

.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-family: var(--font-text);
  font-size: 12px;
  line-height: 1.1;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--text-warm);
  font-family: var(--font-display);
  font-weight: 400;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(50px, 8.4vw, 100px);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 0.94;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.08;
}

.hero-lede,
.section-heading p,
.intro p,
.contact-copy p,
.evidence-panel p {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.42;
}

.hero-actions,
.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 16px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-text);
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.button.primary {
  background: var(--green);
  color: #010101;
  box-shadow: 0 0 24px rgba(207, 230, 228, 0.2);
}

.button.secondary {
  border-color: rgba(207, 230, 228, 0.32);
  background: rgba(246, 246, 245, 0.03);
  color: var(--text-warm);
}

.proof-row span {
  padding: 9px 13px;
  border: 1px solid rgba(207, 230, 228, 0.18);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
}

.hero-glow {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(720px, 96vw);
  opacity: 0.72;
  transform: translateX(-50%);
  filter: saturate(0.86) hue-rotate(158deg) brightness(1.02);
}

.phone-shell {
  position: relative;
  z-index: 1;
  width: min(318px, 76vw);
  aspect-ratio: 0.48;
  padding: 13px;
  border: 1px solid rgba(207, 230, 228, 0.22);
  border-radius: 38px;
  background: linear-gradient(145deg, #010101, #101618 52%, #373c3e);
  box-shadow: var(--shadow);
}

.phone-screen {
  display: flex;
  height: 100%;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(207, 230, 228, 0.08);
  border-radius: 27px;
  background:
    radial-gradient(
      circle at 36% 0%,
      rgba(207, 230, 228, 0.22),
      transparent 36%
    ),
    linear-gradient(180deg, #10282c, #101618 62%, #010101);
}

.app-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--text-warm);
  font-family: var(--font-text);
  font-size: 12px;
  text-transform: uppercase;
}

.app-top button {
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: #010101;
  font: inherit;
  font-size: 11px;
  padding: 9px 12px;
  text-transform: uppercase;
}

.metric-card,
.screen-grid div,
.asset-stack span {
  border: 1px solid rgba(207, 230, 228, 0.14);
  border-radius: 16px;
  background: rgba(246, 246, 245, 0.045);
}

.metric-card {
  padding: 20px;
}

.metric-card span,
.metric-card small,
.screen-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.metric-card strong {
  display: block;
  margin: 7px 0;
  color: var(--text-warm);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
}

.screen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.screen-grid div {
  min-height: 88px;
  padding: 12px;
}

.screen-grid b {
  display: block;
  margin-top: 8px;
  color: var(--text-warm);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
}

.tabbar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: auto;
  padding: 12px;
  border-radius: 999px;
  background: rgba(1, 1, 1, 0.48);
}

.tabbar span {
  height: 8px;
  border-radius: 999px;
  background: rgba(246, 246, 245, 0.22);
}

.tabbar span:first-child {
  background: var(--green);
}

.asset-stack {
  position: absolute;
  right: 2%;
  bottom: 11%;
  z-index: 2;
  display: grid;
  gap: 8px;
  width: min(230px, 44vw);
}

.asset-stack span {
  padding: 13px 16px;
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.26);
  color: var(--text-warm);
  font-size: 12px;
  text-transform: uppercase;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(24px, 5vw, 72px);
  padding-block: clamp(48px, 7vw, 96px);
  border-top: 1px solid rgba(246, 246, 245, 0.08);
  border-bottom: 1px solid rgba(246, 246, 245, 0.08);
  background: rgba(16, 40, 44, 0.5);
}

.intro h2 {
  font-size: clamp(32px, 3.7vw, 54px);
}

.section {
  padding-block: clamp(64px, 8vw, 112px);
}

.section-heading {
  max-width: 790px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading.align-left {
  margin: 0;
  text-align: left;
}

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

.deliverables article,
.link-grid a,
.trust-grid article,
.article-grid a,
.icon-wall figure,
.timeline article,
.faq-list details,
.lead-form,
.contact-note,
.stat-grid div,
.service-panel,
.side-cta,
.concepts {
  border: 1px solid rgba(207, 230, 228, 0.14);
  border-radius: var(--radius);
  background: rgba(246, 246, 245, 0.035);
}

.deliverables article {
  min-height: 248px;
  padding: 24px;
}

.deliverables p,
.trust-grid p,
.article-grid p,
.service-copy p,
.article-copy p,
.timeline p,
.faq-list p,
.site-footer p {
  color: var(--muted);
}

.page-links,
.trust,
.project-showcase {
  background: rgba(16, 24, 24, 0.58);
}

.link-grid,
.trust-grid,
.article-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.link-grid a,
.article-grid a {
  display: grid;
  min-height: 176px;
  align-content: start;
  padding: 22px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.link-grid a:hover,
.article-grid a:hover {
  transform: translateY(-2px);
  border-color: rgba(207, 230, 228, 0.4);
  background: rgba(207, 230, 228, 0.08);
}

.icon-wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(116px, 1fr));
  gap: 14px;
}

.icon-wall figure {
  display: grid;
  min-height: 142px;
  margin: 0;
  padding: 16px 10px 14px;
  place-items: center;
  text-align: center;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.icon-wall figure:hover {
  transform: translateY(-2px);
  border-color: rgba(207, 230, 228, 0.4);
  background: rgba(207, 230, 228, 0.08);
}

.icon-wall img {
  width: 74px;
  height: 74px;
  margin-bottom: 13px;
  border-radius: 20px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.icon-wall figcaption {
  max-width: 100%;
  overflow-wrap: anywhere;
  color: var(--text-warm);
  font-size: 12px;
  line-height: 1.15;
  text-transform: uppercase;
}

.link-grid span,
.article-grid span {
  margin-bottom: 16px;
  color: var(--green);
  font-size: 12px;
  text-transform: uppercase;
}

.link-grid strong {
  color: var(--text-warm);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.08;
}

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

.trust-grid article {
  min-height: 214px;
  padding: 24px;
}

.concepts {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(280px, 1.25fr);
  gap: clamp(18px, 4vw, 48px);
  margin-top: 18px;
  padding: 26px;
  background: rgba(1, 1, 1, 0.28);
}

.concepts ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

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

.article-grid a {
  min-height: 244px;
}

.article-grid h3 {
  font-size: 28px;
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  padding-block: clamp(64px, 9vw, 122px);
}

.service-hero h1 {
  max-width: 960px;
}

.service-panel {
  padding: 26px;
  background: rgba(16, 40, 44, 0.58);
  box-shadow: var(--shadow);
}

.service-panel ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.service-copy,
.article-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(280px, 0.24fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  padding-block: clamp(48px, 7vw, 92px);
}

.service-copy article,
.article-copy article {
  max-width: 850px;
}

.service-copy h2,
.article-copy h2 {
  margin-top: 38px;
  font-size: clamp(34px, 3.8vw, 56px);
}

.service-copy h2:first-child,
.article-copy h2:first-child {
  margin-top: 0;
}

.side-cta {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 14px;
  padding: 22px;
  background: rgba(16, 40, 44, 0.58);
}

.side-cta p {
  margin-bottom: 0;
  font-size: 15px;
}

.content-list {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.card-icon {
  display: inline-grid;
  min-width: 48px;
  height: 34px;
  margin-bottom: 26px;
  padding: 0 13px;
  place-items: center;
  border: 1px solid rgba(207, 230, 228, 0.28);
  border-radius: 999px;
  background: rgba(207, 230, 228, 0.08);
  color: var(--green);
  font-size: 11px;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0 18px;
  padding: 22px;
}

.timeline span {
  grid-row: span 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(207, 230, 228, 0.24);
  border-radius: 999px;
  background: rgba(149, 210, 230, 0.09);
  color: var(--green);
  font-size: 12px;
}

.timeline h3,
.timeline p {
  grid-column: 2;
}

.evidence {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.86fr);
  gap: 18px;
  align-items: stretch;
  background: var(--text-warm);
  color: #010101;
}

.evidence h2 {
  color: #010101;
}

.evidence .eyebrow {
  color: #10282c;
}

.evidence-panel {
  padding: clamp(28px, 4vw, 48px);
}

.evidence-panel p {
  color: #10282c;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.stat-grid div {
  display: grid;
  place-items: center;
  min-height: 150px;
  background: #f6f6f5;
  text-align: center;
}

.stat-grid strong {
  display: block;
  color: #010101;
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 76px);
  font-weight: 400;
  line-height: 1;
}

.stat-grid span {
  color: #10282c;
  font-size: 12px;
  text-transform: uppercase;
}

.faq-list {
  display: grid;
  max-width: 920px;
  margin: 0 auto;
  gap: 12px;
}

summary {
  cursor: pointer;
  padding: 22px;
  color: var(--text-warm);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

.contact-note {
  margin-top: 24px;
  padding: 20px;
  color: var(--muted);
}

.contact-note strong {
  color: var(--text-warm);
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
  background: rgba(16, 40, 44, 0.58);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 15px;
  border: 1px solid rgba(207, 230, 228, 0.18);
  border-radius: 12px;
  background: rgba(1, 1, 1, 0.48);
  color: var(--text);
  font: inherit;
}

textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-size: 14px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 30px;
  border-top: 1px solid rgba(246, 246, 245, 0.08);
  background: #010101;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--green);
}

@media (max-width: 980px) {
  .hero,
  .intro,
  .split,
  .evidence,
  .contact,
  .service-hero,
  .service-copy,
  .article-copy,
  .concepts {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .deliverables,
  .link-grid,
  .trust-grid,
  .article-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-visual {
    min-height: 500px;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
    overflow-x: auto;
    white-space: nowrap;
  }

  nav a {
    padding-block: 10px;
  }

  h1 {
    font-size: 50px;
  }

  .hero-actions .button,
  .lead-form .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 460px;
  }

  .asset-stack {
    right: 0;
    bottom: 5%;
  }

  .deliverables,
  .link-grid,
  .trust-grid,
  .article-grid,
  .concepts ul,
  .lead-form,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .timeline article {
    grid-template-columns: 1fr;
  }

  .timeline span,
  .timeline h3,
  .timeline p {
    grid-column: 1;
  }

  .timeline span {
    margin-bottom: 14px;
  }

  .site-footer {
    flex-direction: column;
  }
}
