:root {
  --navy: #111c2e;
  --navy-2: #17263d;
  --gold: #c6972d;
  --gold-2: #e6c36c;
  --ivory: #f7f4ed;
  --paper: #fffdfa;
  --ink: #101624;
  --muted: #667085;
  --line: rgba(17, 28, 46, 0.12);
  --teal: #2a8d7a;
  --red: #b8423c;
  --shadow: 0 24px 70px rgba(17, 28, 46, 0.16);
  --soft-shadow: 0 12px 34px rgba(17, 28, 46, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: "Geist", "Aptos", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  min-height: 72px;
  padding: 14px clamp(20px, 4vw, 58px);
  color: #fff;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(12, 20, 34, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 124px;
  height: auto;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 13px;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.74);
}

.desktop-nav a,
.header-cta,
.contact-links a,
.whatsapp-bubble,
.site-footer a {
  transition: color 160ms ease, border-color 160ms ease, transform 160ms ease, background 160ms ease,
    box-shadow 160ms ease;
}

.desktop-nav a:hover,
.site-footer a:hover {
  color: var(--gold-2);
}

.header-cta {
  justify-self: end;
  border: 1px solid rgba(230, 195, 108, 0.8);
  border-radius: 999px;
  padding: 10px 15px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.header-cta:hover {
  background: var(--gold);
  color: var(--navy);
}

.hero {
  position: relative;
  min-height: 95vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 28%;
  filter: saturate(0.9) contrast(1.04);
  opacity: 0.58;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 15, 27, 0.95) 0%, rgba(8, 15, 27, 0.72) 42%, rgba(8, 15, 27, 0.24) 100%),
    linear-gradient(180deg, rgba(8, 15, 27, 0.12) 0%, rgba(8, 15, 27, 0.82) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 40px));
  padding: 138px 0 136px clamp(20px, 7vw, 96px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: inherit;
  font-weight: 650;
  line-height: 1.03;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 700px;
  margin: 0;
  font-size: 72px;
}

h2 {
  margin: 0;
  font-size: 48px;
}

h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
}

p {
  margin: 0;
}

.hero-copy {
  max-width: 640px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  padding: 13px 20px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 18px 36px rgba(198, 151, 45, 0.24);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hero-strip {
  position: absolute;
  z-index: 3;
  left: clamp(18px, 7vw, 96px);
  right: clamp(18px, 4vw, 58px);
  bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-strip span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.16);
}

.section {
  padding: clamp(70px, 10vw, 126px) clamp(18px, 5vw, 74px);
}

.section[id] {
  scroll-margin-top: 88px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(300px, 1.18fr);
  gap: clamp(24px, 5vw, 76px);
  align-items: end;
  margin-bottom: 44px;
}

.section-heading p:not(.eyebrow),
.proof-copy p,
.foundation-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.section-heading.narrow {
  display: block;
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.narrow p:not(.eyebrow) {
  max-width: 660px;
  margin: 18px auto 0;
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.problem-panel {
  min-height: 290px;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: clamp(24px, 4vw, 42px);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.problem-panel.accent {
  background: var(--navy);
  color: #fff;
}

.problem-panel h3 {
  color: var(--gold);
  margin-bottom: 22px;
}

.problem-panel ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.problem-panel.accent ul {
  color: rgba(255, 255, 255, 0.78);
}

.product-proof {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: #ebe6dc;
}

.proof-copy {
  max-width: 560px;
}

.proof-copy p {
  margin-top: 22px;
}

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

.metrics div {
  border-top: 1px solid rgba(17, 28, 46, 0.22);
  padding-top: 14px;
}

.metrics strong {
  display: block;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}

.metrics span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.screen-frame {
  overflow: hidden;
  border: 1px solid rgba(17, 28, 46, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.screen-frame img {
  width: 100%;
  height: auto;
}

.screen-frame.large {
  transform: rotate(0.35deg);
}

.foundation {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: var(--paper);
}

.foundation-copy {
  max-width: 620px;
}

.foundation-copy p:not(.eyebrow) {
  margin-top: 22px;
}

.foundation-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.foundation-card,
.partner-logos {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.foundation-card {
  min-height: 216px;
  padding: 24px;
}

.foundation-card span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.foundation-card strong {
  display: block;
  margin-top: 42px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.15;
}

.foundation-card p {
  margin-top: 14px;
  color: var(--muted);
}

.partner-logos {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 1px;
  padding: 0;
  overflow: hidden;
  background: rgba(17, 28, 46, 0.08);
}

.partner-logos img {
  width: 100%;
  height: 148px;
  object-fit: contain;
  padding: 34px clamp(24px, 4vw, 54px);
  background: #fff;
}

.differential {
  background: var(--paper);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 42px;
}

.pillars article,
.module-card,
.benefit-list div,
.compare-columns div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.pillars article {
  min-height: 230px;
  padding: 24px;
  box-shadow: var(--soft-shadow);
}

.pillars span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.pillars h3 {
  margin-top: 44px;
  font-size: 24px;
  font-weight: 650;
}

.pillars p {
  margin-top: 14px;
  color: var(--muted);
}

.modules {
  background: var(--navy);
  color: #fff;
}

.modules .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 26px;
}

.module-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  padding: 22px;
  color: rgba(255, 255, 255, 0.78);
}

.module-card h3 {
  color: #fff;
  margin-bottom: 12px;
}

.screen-showcase {
  margin-top: 28px;
}

.screen-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.screen-tabs button {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.74);
  padding: 9px 13px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.screen-tabs button.active {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.benefits {
  background: var(--ivory);
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 44px;
}

.benefit-list div {
  padding: 22px;
  box-shadow: var(--soft-shadow);
}

.benefit-list strong,
.benefit-list span {
  display: block;
}

.benefit-list strong {
  font-size: 16px;
}

.benefit-list span {
  margin-top: 8px;
  color: var(--muted);
}

.comparison-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  color: #fff;
  background: var(--navy-2);
}

.compare-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.compare-columns div {
  padding: 24px;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
}

.compare-columns h3 {
  color: var(--gold-2);
  margin-bottom: 12px;
}

.compare-columns p {
  color: rgba(255, 255, 255, 0.76);
}

.contact {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(28px, 5vw, 74px);
  align-items: start;
  background: var(--paper);
}

.contact-copy {
  position: sticky;
  top: 110px;
}

.contact-copy p {
  margin-top: 20px;
}

.contact-links {
  display: grid;
  gap: 12px;
  margin-top: 34px;
  max-width: 430px;
}

.linkedin-card {
  display: grid;
  grid-template-columns: 44px 1fr 20px;
  gap: 14px;
  align-items: center;
  min-height: 78px;
  border: 1px solid rgba(17, 28, 46, 0.12);
  border-radius: 8px;
  padding: 14px 16px 14px 14px;
  background: #fff;
  color: var(--navy);
  box-shadow: 0 12px 30px rgba(17, 28, 46, 0.06);
}

.linkedin-card:hover {
  transform: translateY(-2px);
  border-color: rgba(198, 151, 45, 0.44);
  box-shadow: 0 18px 42px rgba(17, 28, 46, 0.1);
}

.linkedin-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #0a66c2;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.linkedin-card strong,
.linkedin-card small {
  display: block;
}

.linkedin-card strong {
  font-size: 15px;
  line-height: 1.25;
}

.linkedin-card small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
}

.linkedin-card svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ivory);
  padding: clamp(18px, 3vw, 30px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 750;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(17, 28, 46, 0.18);
  border-radius: 8px;
  padding: 12px 13px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.botcheck {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.screen-tabs button:focus-visible,
.button:focus-visible,
.header-cta:focus-visible,
.linkedin-card:focus-visible,
.whatsapp-bubble:focus-visible,
.desktop-nav a:focus-visible {
  outline: 3px solid rgba(198, 151, 45, 0.42);
  outline-offset: 2px;
}

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

.form-note {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 13px;
}

.form-note[data-state="loading"] {
  color: var(--navy);
}

.form-note[data-state="success"] {
  color: #166d4d;
}

.form-note[data-state="error"] {
  color: #a33c31;
}

.contact-form button[disabled] {
  cursor: progress;
  opacity: 0.72;
  transform: none;
  box-shadow: none;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(18px, 5vw, 74px);
  background: #09111f;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 700;
}

.site-footer img {
  width: 100px;
}

.whatsapp-bubble {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 80;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #23c765;
  color: #fff;
  box-shadow: 0 18px 42px rgba(10, 91, 51, 0.28), 0 0 0 8px rgba(35, 199, 101, 0.12);
}

.whatsapp-bubble:hover {
  transform: translateY(-2px);
  background: #1fb85d;
}

.whatsapp-bubble svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

  .site-header {
    grid-template-columns: auto auto;
  }

  .hero-content {
    padding-top: 120px;
    padding-bottom: 150px;
  }

  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 40px;
  }

  .section-heading,
  .product-proof,
  .foundation,
  .comparison-band,
  .contact,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .pillars,
  .module-grid,
  .benefit-list,
  .foundation-proof {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 66px;
    padding-inline: 14px;
  }

  .brand img {
    width: 108px;
  }

  .header-cta {
    padding: 8px 11px;
  }

  .hero {
    min-height: 94vh;
  }

  .hero-content {
    width: calc(100% - 28px);
    padding-left: 14px;
    padding-bottom: 164px;
  }

  h1 {
    font-size: 40px;
    line-height: 1.08;
  }

  h2 {
    font-size: 32px;
    line-height: 1.1;
  }

  .hero-copy {
    font-size: 17px;
    line-height: 1.55;
  }

  .button {
    width: 100%;
  }

  .hero-strip {
    left: 14px;
    right: 14px;
  }

  .pillars,
  .module-grid,
  .benefit-list,
  .compare-columns,
  .metrics,
  .foundation-proof,
  .contact-form {
    grid-template-columns: 1fr;
  }

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

  .partner-logos img {
    height: 108px;
    padding: 24px 16px;
  }

  .screen-frame.large {
    transform: none;
  }
}
