:root {
  --maroon: #8a1538;
  --navy: #10233f;
  --gold: #c9a24a;
  --ivory: #f7f2ea;
  --teal: #007a6c;
  --charcoal: #1e1e1e;
  --paper: #fffdf8;
  --mist: #e5e1d8;
  --rose: #f2dfe5;
  --bluewash: #dce8f4;
  --shadow: 0 24px 70px rgba(16, 35, 63, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 64px);
  color: white;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--navy);
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 10px 32px rgba(16, 35, 63, 0.1);
  backdrop-filter: blur(18px);
}

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

.brand-logo {
  width: 41px;
  height: 50px;
  flex: 0 0 auto;
  filter: drop-shadow(0 8px 18px rgba(16, 35, 63, 0.18));
}

.nav {
  display: flex;
  gap: clamp(14px, 2vw, 30px);
  font-size: 0.93rem;
  font-weight: 700;
}

.nav a {
  opacity: 0.88;
}

.nav a:hover,
.nav a:focus-visible {
  opacity: 1;
  color: var(--gold);
}

.header-action,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
}

.header-action {
  padding: 0 18px;
  color: white;
  background: var(--maroon);
}

.site-header:not(.is-scrolled) .header-action {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
  background: var(--navy);
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 35, 63, 0.92) 0%, rgba(16, 35, 63, 0.76) 34%, rgba(138, 21, 56, 0.28) 68%, rgba(16, 35, 63, 0.22) 100%),
    linear-gradient(0deg, rgba(16, 35, 63, 0.52), rgba(16, 35, 63, 0.04) 46%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 96px);
  padding-top: 92px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 {
  margin-bottom: 18px;
  color: white;
  font-size: clamp(3.2rem, 7vw, 6.2rem);
  line-height: 0.94;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

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

.button {
  padding: 0 22px;
}

.button.primary {
  color: white;
  background: var(--maroon);
}

.button.secondary {
  color: var(--navy);
  background: var(--ivory);
  border: 1px solid rgba(16, 35, 63, 0.16);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.hero-stats span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

section {
  padding: clamp(70px, 9vw, 128px) clamp(20px, 5vw, 76px);
}

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

.section-head {
  max-width: 860px;
  margin-bottom: 42px;
}

.section-head h2,
.passport-copy h2,
.qatar-copy h2,
.pilot-card h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 4.2rem);
}

.section-head p:not(.eyebrow),
.passport-copy p,
.qatar-copy p,
.pilot-card p {
  color: #4d4a46;
  font-size: 1.05rem;
}

.problem-grid,
.ai-grid,
.dashboard-grid,
.business-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.problem-grid article,
.ai-grid article,
.dashboard-grid article,
.business-grid article,
.mvp-layout > div,
.passport-preview,
.pilot-card,
.questions {
  background: var(--paper);
  border: 1px solid var(--mist);
  border-radius: 8px;
  box-shadow: 0 14px 42px rgba(16, 35, 63, 0.07);
}

.problem-grid article,
.ai-grid article,
.dashboard-grid article,
.business-grid article,
.mvp-layout > div,
.questions {
  padding: 26px;
}

.icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  place-items: center;
  color: white;
  background: var(--teal);
  border-radius: 50%;
  font-weight: 900;
}

article h3,
.mvp-layout h3,
.questions h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

article p,
.mvp-layout li,
.questions p,
.check-list li,
.not-yet {
  color: #55504a;
}

.flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--mist);
  border-bottom: 1px solid var(--mist);
}

.flow article {
  padding: 30px 24px;
  border-right: 1px solid var(--mist);
}

.flow article:last-child {
  border-right: 0;
}

.step {
  display: inline-block;
  margin-bottom: 46px;
  color: var(--maroon);
  font-weight: 900;
}

.passport {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.passport-preview {
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(138, 21, 56, 0.08), transparent 42%),
    var(--paper);
}

.passport-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--mist);
}

.passport-top h2 {
  margin-bottom: 6px;
  font-size: 2.6rem;
}

.verified,
.tag {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  color: white;
  background: var(--teal);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.passport-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0;
}

.passport-metrics span {
  padding: 14px;
  background: var(--ivory);
  border-radius: 8px;
  color: #5f5a53;
  font-size: 0.88rem;
}

.passport-metrics strong {
  display: block;
  color: var(--navy);
  font-size: 1.8rem;
  line-height: 1;
}

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

.timeline div {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
}

.timeline span {
  width: 14px;
  height: 14px;
  margin-top: 5px;
  background: var(--gold);
  border: 3px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--gold);
}

.timeline p {
  margin: 0;
  color: #4e4a45;
}

.qr-block {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 28px;
  padding: 16px;
  background: var(--navy);
  border-radius: 8px;
  color: white;
}

.qr-block span {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  color: var(--navy);
  background: white;
  border-radius: 5px;
  font-weight: 900;
}

.qr-block p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.check-list,
.mvp-layout ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.mvp-layout li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 11px;
}

.check-list li::before,
.mvp-layout li::before {
  position: absolute;
  left: 0;
  color: var(--teal);
  content: "✓";
  font-weight: 900;
}

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

.ai-grid article:nth-child(1) {
  border-top: 5px solid var(--maroon);
}

.ai-grid article:nth-child(2) {
  border-top: 5px solid var(--teal);
}

.ai-grid article:nth-child(3) {
  border-top: 5px solid var(--gold);
}

.tag {
  margin-bottom: 18px;
  background: var(--maroon);
}

.dashboard-grid article:nth-child(2) .tag {
  background: var(--navy);
}

.dashboard-grid article:nth-child(3) .tag {
  color: var(--navy);
  background: var(--gold);
}

.qatar {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(16, 35, 63, 0.94), rgba(138, 21, 56, 0.82)),
    var(--navy);
  color: white;
}

.qatar h2,
.qatar p {
  color: white;
}

.qatar p {
  color: rgba(255, 255, 255, 0.78);
}

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

.qatar-points span {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-weight: 800;
}

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

.not-yet {
  margin-top: 22px;
  padding: 22px 24px;
  background: var(--bluewash);
  border-left: 5px solid var(--navy);
  border-radius: 8px;
}

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

.business-grid article {
  background:
    linear-gradient(180deg, rgba(247, 242, 234, 0.76), rgba(255, 253, 248, 0.96)),
    var(--paper);
}

.pilot {
  display: grid;
  grid-template-columns: minmax(320px, 1.3fr) minmax(280px, 0.7fr);
  gap: 18px;
  align-items: stretch;
}

.pilot-card {
  padding: clamp(28px, 5vw, 54px);
  background:
    linear-gradient(135deg, rgba(138, 21, 56, 0.09), rgba(201, 162, 74, 0.08)),
    var(--paper);
}

.questions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--navy);
}

.questions h3,
.questions p {
  color: white;
}

.questions p {
  color: rgba(255, 255, 255, 0.78);
}

.footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) auto minmax(220px, 0.75fr);
  gap: 34px;
  align-items: start;
  padding: 42px clamp(20px, 5vw, 76px);
  color: white;
  background:
    linear-gradient(90deg, rgba(8, 21, 37, 0.96), rgba(16, 35, 63, 0.98)),
    #081525;
}

.footer .brand {
  margin-bottom: 14px;
}

.footer-main p {
  max-width: 520px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: grid;
  gap: 10px;
  min-width: 130px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold);
}

.footer-note {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.footer-note span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: white;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 900;
}

.app-preview-page {
  background: var(--ivory);
}

.app-preview-header {
  position: sticky;
  color: var(--navy);
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 10px 32px rgba(16, 35, 63, 0.1);
  backdrop-filter: blur(18px);
}

.app-preview-header:not(.is-scrolled) .header-action {
  color: white;
  background: var(--maroon);
  border: 0;
}

.app-showcase-hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(340px, 1.05fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
  padding-top: 128px;
  background:
    radial-gradient(circle at 82% 20%, rgba(201, 162, 74, 0.22), transparent 28%),
    linear-gradient(135deg, #fffdf8 0%, #f7f2ea 44%, #dce8f4 100%);
}

.app-showcase-copy h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 5.7vw, 6.3rem);
}

.app-showcase-copy p:not(.eyebrow) {
  max-width: 620px;
  color: #4d4a46;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

.phone-stage {
  display: grid;
  min-height: 650px;
  place-items: center;
}

.phone-frame {
  position: relative;
  width: min(100%, 300px);
  padding: 14px;
  background: #091727;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 38px;
  box-shadow: 0 28px 80px rgba(16, 35, 63, 0.26);
}

.large-phone {
  width: min(100%, 360px);
}

.phone-speaker {
  position: absolute;
  top: 11px;
  left: 50%;
  z-index: 2;
  width: 86px;
  height: 6px;
  background: #172b44;
  border-radius: 999px;
  transform: translateX(-50%);
}

.phone-screen {
  min-height: 585px;
  overflow: hidden;
  padding: 18px;
  background: #fffdf8;
  border-radius: 28px;
}

.large-phone .phone-screen {
  min-height: 710px;
}

.mobile-status,
.mobile-topbar,
.mobile-section-title,
.mobile-stats-row,
.bottom-tabs,
.evidence-row,
.skill-bars p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mobile-status {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
}

.mobile-topbar {
  justify-content: flex-start;
  margin-bottom: 18px;
}

.mobile-topbar img {
  width: 38px;
  height: 46px;
}

.mobile-topbar strong,
.mobile-topbar span,
.screen-label,
.match-card span,
.generator-card span {
  display: block;
}

.mobile-topbar span,
.muted,
.opportunity-card p,
.match-card p,
.tracker-list p,
.certificate-card p,
.generator-card p,
.draft-box p {
  color: #6c655d;
  font-size: 0.84rem;
}

.mobile-hero-card,
.insight-card,
.match-card,
.certificate-card,
.generator-card {
  padding: 18px;
  background: var(--ivory);
  border: 1px solid var(--mist);
  border-radius: 18px;
}

.mobile-hero-card {
  color: white;
  background:
    linear-gradient(135deg, rgba(138, 21, 56, 0.96), rgba(16, 35, 63, 0.94)),
    var(--navy);
}

.mobile-hero-card h2 {
  margin: 16px 0 10px;
  color: white;
  font-size: 1.75rem;
}

.mobile-hero-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.mobile-stats-row {
  margin: 14px 0 22px;
}

.mobile-stats-row span {
  flex: 1;
  min-height: 70px;
  padding: 12px;
  background: white;
  border: 1px solid var(--mist);
  border-radius: 14px;
  color: #615a54;
  font-size: 0.72rem;
}

.mobile-stats-row strong {
  display: block;
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1;
}

.mobile-section-title {
  margin-bottom: 12px;
}

.mobile-section-title h3,
.phone-screen h3 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: 1.2rem;
}

.mobile-section-title a {
  color: var(--maroon);
  font-size: 0.8rem;
  font-weight: 900;
}

.opportunity-card {
  padding: 16px;
  background: white;
  border: 1px solid var(--mist);
  border-radius: 16px;
}

.opportunity-card span,
.screen-label,
.match-card span,
.generator-card span {
  color: var(--maroon);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.opportunity-card h4,
.match-card h4,
.certificate-card h4,
.generator-card h4 {
  margin: 8px 0 6px;
  color: var(--navy);
  line-height: 1.15;
}

.progress-line,
.skill-bars div {
  height: 8px;
  overflow: hidden;
  background: #eee8dd;
  border-radius: 999px;
}

.progress-line i,
.skill-bars i {
  display: block;
  height: 100%;
  background: var(--teal);
  border-radius: inherit;
}

.bottom-tabs {
  margin-top: 18px;
  padding: 10px;
  background: #f4efe6;
  border-radius: 18px;
  color: #7a7168;
  font-size: 0.68rem;
  font-weight: 900;
}

.bottom-tabs span {
  flex: 1;
  text-align: center;
}

.bottom-tabs .active {
  min-height: 30px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--maroon);
  border-radius: 999px;
}

.app-screen-section {
  background: var(--paper);
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  align-items: start;
}

.phone-card {
  padding: 20px;
  background: var(--ivory);
  border: 1px solid var(--mist);
  border-radius: 8px;
  box-shadow: 0 14px 42px rgba(16, 35, 63, 0.07);
}

.phone-card .phone-frame {
  width: 100%;
  max-width: 275px;
  margin: 0 auto 22px;
}

.phone-card .phone-screen {
  min-height: 500px;
}

.phone-card > h3 {
  margin-bottom: 8px;
}

.phone-card > p {
  color: #56504a;
}

.profile-ring {
  display: grid;
  width: 138px;
  height: 138px;
  margin: 22px auto;
  place-items: center;
  color: var(--navy);
  background:
    radial-gradient(circle at center, #fffdf8 0 52%, transparent 53%),
    conic-gradient(var(--teal) 0 72%, #e7dfd3 72% 100%);
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 900;
}

.pill-row,
.evidence-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill-row span,
.evidence-row span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  color: var(--navy);
  background: white;
  border: 1px solid var(--mist);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
}

.insight-card {
  margin-top: 16px;
  background: #f2dfe5;
}

.insight-card p {
  margin: 8px 0 0;
}

.match-card {
  margin-top: 12px;
  background: white;
}

.match-card.high {
  color: white;
  background: var(--navy);
}

.match-card.high h4,
.match-card.high p,
.match-card.high span {
  color: white;
}

.tracker-list {
  display: grid;
  gap: 14px;
  margin: 22px 0;
}

.tracker-list div {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 10px;
}

.tracker-list p,
.skill-bars p {
  margin: 0;
}

.tracker-list strong {
  display: block;
  color: var(--navy);
}

.dot {
  width: 12px;
  height: 12px;
  margin-top: 5px;
  background: #d8d0c4;
  border-radius: 50%;
}

.dot.done {
  background: var(--teal);
}

.dot.active {
  background: var(--gold);
}

.mobile-button {
  width: 100%;
  min-height: 42px;
  border: 0;
  color: white;
  background: var(--maroon);
  border-radius: 12px;
  font: inherit;
  font-weight: 900;
}

.mobile-button.gold {
  color: var(--navy);
  background: var(--gold);
}

.certificate-card {
  position: relative;
  margin-top: 18px;
  padding-right: 80px;
  background: white;
}

.certificate-card .verified {
  margin-bottom: 12px;
}

.qr-mini {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: white;
  background: var(--navy);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 900;
}

.evidence-row {
  margin: 14px 0;
}

.skill-bars {
  display: grid;
  gap: 8px;
}

.skill-bars p {
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 900;
}

.draft-box {
  min-height: 130px;
  margin: 14px 0;
  padding: 14px;
  background: white;
  border: 1px dashed var(--gold);
  border-radius: 14px;
}

.app-presentation {
  background: var(--ivory);
}

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

.presentation-steps article {
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--mist);
  border-radius: 8px;
}

.presentation-steps span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--maroon);
  font-weight: 900;
}

.presentation-steps p {
  color: #56504a;
}

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

  .problem-grid,
  .ai-grid,
  .dashboard-grid,
  .business-grid,
  .mvp-layout,
  .flow,
  .screen-grid,
  .presentation-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flow article:nth-child(2) {
    border-right: 0;
  }

  .flow article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--mist);
  }

  .passport,
  .qatar,
  .pilot,
  .app-showcase-hero {
    grid-template-columns: 1fr;
  }

  .phone-stage {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand span:last-child {
    max-width: 120px;
    line-height: 1.1;
  }

  .header-action {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.84rem;
  }

  .hero {
    min-height: 78vh;
  }

  .hero-media img {
    object-position: 64% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(16, 35, 63, 0.96), rgba(16, 35, 63, 0.78) 64%, rgba(138, 21, 56, 0.28)),
      linear-gradient(0deg, rgba(16, 35, 63, 0.5), transparent);
  }

  .hero-content {
    width: calc(100% - 32px);
    margin-left: 16px;
    padding-top: 80px;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 16vw, 4.5rem);
  }

  .button {
    width: 100%;
  }

  .hero-stats span {
    width: 100%;
  }

  section {
    padding: 58px 16px;
  }

  .problem-grid,
  .ai-grid,
  .dashboard-grid,
  .business-grid,
  .mvp-layout,
  .flow,
  .qatar-points,
  .screen-grid,
  .presentation-steps {
    grid-template-columns: 1fr;
  }

  .app-showcase-hero {
    min-height: auto;
    padding-top: 104px;
  }

  .app-showcase-copy h1 {
    font-size: clamp(2.45rem, 13vw, 3.7rem);
  }

  .phone-card {
    padding: 16px;
  }

  .large-phone {
    width: min(100%, 330px);
  }

  .flow {
    border: 0;
  }

  .flow article,
  .flow article:nth-child(2),
  .flow article:nth-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--mist);
  }

  .flow article:last-child {
    border-bottom: 0;
  }

  .passport-preview {
    padding: 22px;
  }

  .passport-top {
    flex-direction: column;
  }

  .passport-metrics {
    grid-template-columns: 1fr;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 36px 16px;
  }

  .footer-note {
    justify-content: flex-start;
  }
}
