:root {
  color-scheme: dark;
  --ink: #080909;
  --ink-soft: #111414;
  --paper: #f8f4ea;
  --muted: #b9b2a2;
  --line: rgba(248, 244, 234, 0.16);
  --coral: #ff4f3f;
  --lime: #cbff41;
  --cyan: #51e3ff;
  --steel: #202626;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--ink);
  color: var(--paper);
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  background: rgba(8, 9, 9, 0.76);
  border-bottom: 1px solid rgba(248, 244, 234, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(248, 244, 234, 0.26);
  background: var(--coral);
  color: var(--ink);
  font-weight: 900;
}

.brand strong {
  font-size: 0.98rem;
}

.site-header nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.2vw, 28px);
  color: var(--muted);
  font-size: 0.9rem;
}

.site-header nav a:hover,
.site-footer nav a:hover,
.text-link:hover {
  color: var(--lime);
}

.hero-section {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: 150px clamp(18px, 5vw, 72px) 64px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  z-index: -3;
  opacity: 0.74;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 9, 9, 0.94) 0%, rgba(8, 9, 9, 0.76) 38%, rgba(8, 9, 9, 0.12) 78%),
    linear-gradient(0deg, rgba(8, 9, 9, 0.88) 0%, rgba(8, 9, 9, 0.16) 46%, rgba(8, 9, 9, 0.58) 100%);
}

.hero-content {
  max-width: 810px;
  padding-bottom: 72px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--lime);
  font-size: 0.76rem;
  line-height: 1.2;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(4rem, 9vw, 8.9rem);
  line-height: 0.86;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4.8vw, 5.05rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.05;
}

.hero-lede {
  max-width: 660px;
  color: #eee7d9;
  font-size: clamp(1.12rem, 1.7vw, 1.46rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  font-weight: 850;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  background: var(--lime);
  color: var(--ink);
}

.button-secondary {
  color: var(--paper);
  border-color: rgba(248, 244, 234, 0.42);
  background: rgba(248, 244, 234, 0.08);
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 42px;
  width: min(500px, calc(100% - 36px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: rgba(8, 9, 9, 0.7);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.hero-panel div {
  padding: 18px;
  border-right: 1px solid var(--line);
}

.hero-panel div:last-child {
  border-right: 0;
}

.hero-panel span {
  display: block;
  color: var(--coral);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 0.9;
}

.hero-panel p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.section {
  padding: clamp(72px, 10vw, 150px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 980px;
  margin-bottom: 42px;
}

.section-heading > p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.problem-section {
  background: var(--paper);
  color: var(--ink);
}

.problem-section .section-kicker {
  color: var(--coral);
}

.split-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: end;
}

.split-copy p,
.founder-section p,
.contact-copy p {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
}

.problem-section .split-copy p {
  color: #37352e;
}

.system-section {
  background: #0b0d0d;
}

.process-grid,
.offers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.process-card,
.offer-card {
  min-height: 300px;
  padding: clamp(22px, 2.7vw, 36px);
  background: var(--ink-soft);
}

.process-card span {
  display: inline-flex;
  margin-bottom: 54px;
  color: var(--coral);
  font-weight: 900;
}

.process-card p,
.offer-card p,
.app-copy p {
  color: var(--muted);
}

.apps-section {
  background: var(--paper);
  color: var(--ink);
}

.apps-section .eyebrow {
  color: var(--coral);
}

.apps-section .section-heading > p:not(.eyebrow) {
  color: #4c493f;
}

.apps-grid {
  display: grid;
  gap: 22px;
}

.app-card {
  display: grid;
  grid-template-columns: minmax(180px, 280px) 1fr;
  gap: clamp(20px, 4vw, 58px);
  align-items: center;
  padding: clamp(18px, 3.2vw, 42px);
  background: #fffaf0;
  border: 1px solid #ded5bf;
  color: var(--ink);
}

.app-media {
  width: min(230px, 100%);
  justify-self: center;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #141414;
  border: 10px solid #111;
  border-radius: 28px;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.24);
}

.app-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.app-copy {
  display: grid;
  gap: 22px;
}

.app-copy .eyebrow {
  color: var(--coral);
}

.app-copy p {
  max-width: 820px;
  color: #4c493f;
  font-size: 1.05rem;
}

.status-pill,
.proof-list span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border: 1px solid #d0c6ad;
  color: #302d26;
  font-size: 0.8rem;
  font-weight: 800;
}

.status-pill {
  background: var(--lime);
  border-color: var(--lime);
}

.proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.credibility-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.8fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: stretch;
  background: #0d1010;
}

.cred-panel {
  padding: clamp(28px, 4vw, 58px);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 79, 63, 0.12), rgba(81, 227, 255, 0.05));
}

.cred-panel ul {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.cred-panel li {
  padding-left: 22px;
  color: #e2dbce;
  border-left: 3px solid var(--coral);
}

.capability-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  align-content: stretch;
  background: var(--line);
  border: 1px solid var(--line);
}

.capability-board span {
  display: grid;
  place-items: center start;
  min-height: 76px;
  padding: 18px;
  background: #141818;
  color: var(--paper);
  font-weight: 800;
}

.capability-board span:nth-child(3n) {
  color: var(--cyan);
}

.capability-board span:nth-child(4n) {
  color: var(--lime);
}

.answer-section {
  background: #e9e1d3;
  color: var(--ink);
}

.answer-section .eyebrow {
  color: #a52c24;
}

.answer-section .section-heading > p:not(.eyebrow) {
  max-width: 860px;
  color: #37342d;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.answer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  background: rgba(8, 9, 9, 0.18);
  border: 1px solid rgba(8, 9, 9, 0.18);
}

.answer-grid article {
  min-height: 290px;
  padding: clamp(20px, 2.6vw, 34px);
  background: #f7f1e7;
}

.answer-grid h3 {
  max-width: 18rem;
  color: #111414;
  font-size: clamp(1.18rem, 1.45vw, 1.55rem);
}

.answer-grid p {
  color: #4a453b;
}

.offers-section {
  background: #0a0b0b;
}

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

.offer-card {
  min-height: 470px;
  display: flex;
  flex-direction: column;
}

.offer-card ul {
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.offer-card li {
  color: #ded7cb;
}

.offer-card li::before {
  content: "+";
  color: var(--lime);
  font-weight: 900;
  margin-right: 8px;
}

.text-link {
  width: fit-content;
  color: var(--cyan);
  font-weight: 850;
}

.offer-card .text-link {
  margin-top: auto;
}

.founder-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.84fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: end;
  background: var(--paper);
  color: var(--ink);
}

.founder-section .eyebrow {
  color: var(--coral);
}

.founder-section p {
  color: #3f3b32;
}

.faq-section {
  background: #0c0e0e;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 980px;
}

details {
  border: 1px solid var(--line);
  background: var(--ink-soft);
}

summary {
  cursor: pointer;
  padding: 22px;
  font-weight: 850;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(32px, 7vw, 96px);
  background:
    linear-gradient(135deg, rgba(255, 79, 63, 0.17), transparent 42%),
    #101313;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid var(--line);
  background: rgba(248, 244, 234, 0.06);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.86rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(248, 244, 234, 0.2);
  background: rgba(8, 9, 9, 0.72);
  color: var(--paper);
  padding: 13px 14px;
  font: inherit;
  border-radius: 0;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--lime);
  outline-offset: 2px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 34px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #070808;
}

.site-footer p {
  margin: 12px 0 0;
  color: var(--muted);
}

.legal-page {
  padding-top: 92px;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
}

.legal-page .eyebrow {
  color: var(--coral);
}

.legal-page h1 {
  color: var(--ink);
  font-size: clamp(3.2rem, 9vw, 7rem);
}

.legal-copy {
  max-width: 850px;
  display: grid;
  gap: 18px;
  margin-top: 38px;
}

.legal-copy h2 {
  margin: 22px 0 0;
  font-size: clamp(1.4rem, 2.3vw, 2.2rem);
}

.legal-copy p {
  margin: 0;
  color: #413d34;
  font-size: 1.06rem;
}

@media (max-width: 980px) {
  .site-header nav {
    display: none;
  }

  .hero-section {
    min-height: 100vh;
    padding-top: 126px;
  }

  .hero-content {
    padding-bottom: 190px;
  }

  .hero-panel {
    left: 18px;
    right: 18px;
    width: auto;
  }

  .split-copy,
  .credibility-section,
  .founder-section,
  .contact-section,
  .answer-grid {
    grid-template-columns: 1fr;
  }

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

  .app-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  h1 {
    font-size: clamp(3.4rem, 18vw, 5.4rem);
  }

  h2 {
    font-size: clamp(2.1rem, 13vw, 3.6rem);
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .hero-panel div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-panel div:last-child {
    border-bottom: 0;
  }

  .hero-content {
    padding-bottom: 300px;
  }

  .process-grid,
  .offers-grid,
  .capability-board,
  .answer-grid {
    grid-template-columns: 1fr;
  }

  .process-card,
  .offer-card {
    min-height: auto;
  }

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

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