:root {
  --ink: #07101c;
  --ink-soft: #162233;
  --paper: #f6f7f9;
  --muted: #697386;
  --line: #d9dee8;
  --red: #ff352f;
  --red-deep: #d9221f;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(7, 16, 28, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 64px);
  color: var(--white);
  background: rgba(7, 16, 28, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 800;
  line-height: 1;
}

.brand-mark {
  color: var(--red);
}

.nav-links {
  display: flex;
  gap: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover,
.contact-list a:hover {
  color: var(--red);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.header-cta {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.button.primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 30px rgba(255, 53, 47, 0.28);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.button.dark {
  color: var(--white);
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("assets/skyline.jpg");
  background-position: center right;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 16, 28, 0.98) 0%, rgba(7, 16, 28, 0.9) 34%, rgba(7, 16, 28, 0.36) 72%, rgba(7, 16, 28, 0.18) 100%),
    linear-gradient(0deg, rgba(7, 16, 28, 0.92) 0%, rgba(7, 16, 28, 0) 36%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  width: min(1160px, calc(100% - 40px));
  min-height: 92vh;
  margin: 0 auto;
  padding: 118px 0 46px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  max-width: none;
  margin-bottom: 22px;
  font-size: clamp(54px, 5.6vw, 92px);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
  white-space: nowrap;
}

h2 {
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.02;
}

h3 {
  font-size: 20px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 650;
  line-height: 1.42;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 12px 0 54px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 950px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.trust-strip div {
  padding: 22px;
  background: rgba(7, 16, 28, 0.62);
}

.trust-strip dt {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-strip dd {
  margin: 8px 0 0;
  color: var(--white);
  font-size: 17px;
  font-weight: 800;
}

section:not(.hero) {
  padding: clamp(54px, 6vw, 88px) clamp(20px, 5vw, 78px);
}

.intro-band,
.features,
.split-section,
.founder-section,
.qualification,
.final-cta {
  width: min(1220px, 100%);
  margin: 0 auto;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading h2,
.why-box h2,
.founder-copy h2,
.qualification h2,
.final-cta h2 {
  margin-bottom: 0;
}

.offer-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: clamp(28px, 4vw, 48px);
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.offer-panel h3 {
  margin-bottom: 10px;
  font-size: clamp(25px, 3vw, 38px);
}

.offer-panel p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.55;
}

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

.feature-grid article,
.steps article,
.founder-card,
.cta-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.feature-grid article {
  min-height: 214px;
  padding: 26px;
}

.icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 26px;
  color: var(--red);
  border: 2px solid currentColor;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 900;
}

.feature-grid p,
.steps p,
.founder-copy p,
.qualification li,
.final-cta p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.split-section,
.founder-section,
.qualification,
.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(32px, 5vw, 74px);
  align-items: start;
}

.why-box p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

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

.steps article {
  padding: 24px;
}

.steps span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.steps h3 {
  margin: 8px 0 8px;
}

.founder-section {
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
}

.founder-section .eyebrow,
.final-cta .eyebrow {
  color: var(--red);
}

.founder-copy {
  padding: clamp(34px, 5vw, 62px);
}

.founder-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.founder-copy .strong {
  color: var(--white);
  font-weight: 900;
}

.founder-card {
  align-self: center;
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin: clamp(18px, 3vw, 32px);
  padding: 20px;
  color: var(--ink);
}

.founder-card img {
  width: 148px;
  height: 196px;
  border-radius: 6px;
  object-fit: cover;
}

.founder-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  font-size: 18px;
  font-weight: 800;
}

.qualification {
  align-items: center;
}

.qualification ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.qualification li {
  position: relative;
  padding: 20px 20px 20px 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.qualification li::before {
  position: absolute;
  top: 21px;
  left: 21px;
  color: var(--red);
  content: "\2713";
  font-weight: 900;
}

.final-cta {
  margin-bottom: clamp(40px, 6vw, 80px);
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
}

.final-cta > div:first-child {
  padding: clamp(34px, 5vw, 62px);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-form {
  align-self: center;
  display: grid;
  gap: 14px;
  margin: clamp(18px, 3vw, 32px);
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
}

.contact-form input {
  min-height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 132px;
  padding: 13px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  outline: 3px solid rgba(255, 53, 47, 0.16);
}

.contact-form .button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.cta-card {
  align-self: center;
  margin: clamp(18px, 3vw, 32px);
  padding: 18px;
}

.cta-card img {
  width: 100%;
  margin-bottom: 16px;
  border-radius: 6px;
}

.cta-card .button {
  width: 100%;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 30px 20px;
  color: var(--white);
  background: var(--ink);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
  }

  .nav-links {
    display: none;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 16, 28, 0.98) 0%, rgba(7, 16, 28, 0.78) 70%, rgba(7, 16, 28, 0.62) 100%),
      linear-gradient(0deg, rgba(7, 16, 28, 0.96) 0%, rgba(7, 16, 28, 0.12) 42%);
  }

  .trust-strip,
  .feature-grid,
  .split-section,
  .founder-section,
  .qualification,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .offer-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 15px 18px;
  }

  .brand {
    font-size: 22px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 12px;
  }

  .hero-inner {
    width: min(100% - 28px, 1160px);
    padding-top: 92px;
  }

  h1 {
    font-size: clamp(42px, 16vw, 68px);
    white-space: normal;
  }

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

  .trust-strip div,
  .feature-grid article,
  .steps article {
    padding: 20px;
  }

  .founder-copy,
  .final-cta > div:first-child {
    padding: 28px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

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

