@import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@400;500;600&family=Sora:wght@300;400;500;600;700&display=swap');

:root {
  --orange: #ff5a32;
  --black: #0a0a0a;
  --white: #ffffff;
  --muted: #6d645d;
  --line: #ece4da;
  --soft: #f8f4ef;
  --soft-2: #fff7f2;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Sora", sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
}

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

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

.container {
  width: min(1220px, 100%);
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo-image {
  height: 42px;
  width: auto;
  max-width: 240px;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: #444;
}

.nav a {
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--orange);
  transition: width 0.2s ease;
}

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

.nav a:hover::after {
  width: 100%;
}

/* HERO */

.hero {
  background:
    radial-gradient(circle at top left, rgba(255, 90, 50, 0.14), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.04), transparent 22%),
    linear-gradient(180deg, #101010 0%, #090909 100%);
  color: var(--white);
  padding: 86px 0 94px;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: var(--orange);
  margin-bottom: 18px;
}

.hero-main h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.9rem, 5vw, 5.2rem);
  line-height: 0.96;
  margin-bottom: 18px;
  max-width: 860px;
}

.hero-text {
  max-width: 680px;
  font-size: 1.06rem;
  color: rgba(255, 255, 255, 0.78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-stack {
  display: grid;
  gap: 14px;
}

.hero-box {
  padding: 22px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 90, 50, 0.18);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.hero-box--accent {
  background: linear-gradient(180deg, rgba(255, 90, 50, 0.14) 0%, rgba(255, 255, 255, 0.04) 100%);
}

.box-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  color: var(--orange);
  margin-bottom: 8px;
}

.hero-box p {
  color: rgba(255, 255, 255, 0.84);
}

/* BUTTONS */

.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 700;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border: 1px solid var(--orange);
}

.btn-primary:hover {
  background: transparent;
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--white);
}

/* BASE */

.section {
  padding: 92px 0;
  border-bottom: 1px solid var(--line);
}

.section-title,
.section h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.1rem, 3vw, 3.2rem);
  line-height: 1.06;
}

.section p {
  color: var(--muted);
}

.section-dark {
  background: var(--black);
  color: var(--white);
  border-bottom: none;
}

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

.section-accent {
  background: var(--soft);
}

/* INTRO */

.split-intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: start;
}

.split-intro-copy p + p {
  margin-top: 16px;
}

/* LANE GRID */

.lane-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.lane-card {
  padding: 24px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 90, 50, 0.18);
}

.lane-card h3 {
  font-family: "Fraunces", serif;
  font-size: 1.36rem;
  margin-bottom: 10px;
}

/* COMPARISON */

.compare-table {
  margin-top: 34px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 90, 50, 0.12);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.05);
}

.compare-row {
  display: grid;
  grid-template-columns: 0.9fr 1.05fr 1.05fr;
  gap: 0;
}

.compare-row > div {
  padding: 20px 18px;
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.compare-row > div + div {
  border-left: 1px solid rgba(0, 0, 0, 0.06);
}

.compare-row--head > div {
  background: var(--soft-2);
  font-weight: 700;
}

.compare-topic {
  font-weight: 700;
  color: var(--black);
}

/* DELIVERABLES */

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.deliverable-card {
  padding: 24px 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fbf7f2 100%);
  border: 1px solid rgba(255, 90, 50, 0.14);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.05);
}

.deliverable-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  font-weight: 700;
}

.deliverable-card h3 {
  font-family: "Fraunces", serif;
  font-size: 1.34rem;
  margin-bottom: 10px;
}

/* METHOD */

.method-timeline {
  margin-top: 34px;
  display: grid;
  gap: 16px;
}

.method-step {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 20px;
  padding: 24px 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fbf7f2 100%);
  border: 1px solid rgba(255, 90, 50, 0.12);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.04);
}

.method-step span {
  color: var(--orange);
  font-size: 0.86rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  padding-top: 4px;
}

.method-step h3 {
  font-family: "Fraunces", serif;
  font-size: 1.36rem;
  margin-bottom: 8px;
}

/* FINAL CTA */

.section-final-cta {
  border-bottom: none;
}

.final-cta-wrap {
  max-width: 840px;
  text-align: center;
}

.final-cta-wrap h2 {
  margin-bottom: 16px;
}

.final-cta-wrap p {
  max-width: 760px;
  margin: 0 auto;
}

.final-cta-wrap .btn {
  margin-top: 28px;
}

/* CONTACT */

.section-contact {
  background: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}

.contact-copy h2 {
  margin-bottom: 16px;
}

.contact-info {
  display: grid;
  gap: 6px;
  margin-top: 22px;
}

.contact-card {
  padding: 30px 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fbf7f2 100%);
  border: 1px solid rgba(255, 90, 50, 0.14);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.contact-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--orange);
  margin-bottom: 12px;
}

.contact-card p {
  margin-bottom: 18px;
}

/* THANK YOU */

.thank-you-page {
  min-height: calc(100vh - 160px);
  background:
    radial-gradient(circle at top left, rgba(255, 90, 50, 0.08), transparent 28%),
    var(--soft);
  display: flex;
  align-items: center;
}

.thank-you-section {
  width: 100%;
  padding: 88px 0;
}

.thank-you-wrap {
  max-width: 820px;
}

.thank-you-wrap h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.02;
  margin-bottom: 18px;
}

.thank-you-wrap .text {
  max-width: 760px;
  color: var(--muted);
}

.thank-you-wrap .text + .text {
  margin-top: 14px;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.thank-you-link {
  font-size: 0.96rem;
  color: var(--muted);
  border-bottom: 1px solid rgba(0, 0, 0, 0.16);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.thank-you-link:hover {
  color: var(--black);
  border-bottom-color: var(--orange);
}

/* FOOTER */

.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.76);
  padding: 28px 0 34px;
  text-align: center;
  display: grid;
  gap: 6px;
}

.footer p {
  margin: 0;
}

.footer a {
  color: var(--orange);
  font-weight: 600;
}

.footer a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .hero-layout,
  .split-intro,
  .contact-layout,
  .compare-row {
    grid-template-columns: 1fr;
  }

  .lane-grid,
  .deliverables-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .compare-row > div + div {
    border-left: none;
  }
}

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

  .site-header {
    position: relative;
  }

  .hero {
    padding: 64px 0 72px;
  }

  .hero-main h1 {
    font-size: clamp(2.4rem, 10vw, 4rem);
  }

  .hero-actions,
  .thank-you-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .lane-grid,
  .deliverables-grid {
    grid-template-columns: 1fr;
  }

  .method-step {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .section {
    padding: 72px 0;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .logo-image {
    height: 38px;
    max-width: 200px;
  }

  .header-inner {
    min-height: 78px;
  }

  .thank-you-section {
    padding: 64px 0;
  }
}
