:root {
  --ratio-navy: #0a1f44;
  --ratio-blue: #1f4ed8;
  --ratio-blue-2: #5dbaf3;
  --ratio-text: #1e2a3a;
  --ratio-muted: #667085;
  --ratio-bg: #f5f7fb;
  --ratio-card: #ffffff;
  --ratio-border: #e5e7eb;
  --ratio-white: #ffffff;
  --shadow-soft: 0 20px 50px rgba(15, 23, 42, 0.08);
  --shadow-card: 0 10px 30px rgba(15, 23, 42, 0.06);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --max-width: 1200px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ratio-text);
  background: #fff;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
}

.section { padding: 96px 0; }
.section-light { background: var(--ratio-bg); }

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.section-heading p {
  margin: 0;
  color: var(--ratio-muted);
  font-size: 1.08rem;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--ratio-blue);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--ratio-white);
  background:
    radial-gradient(circle at 80% 22%, rgba(93, 186, 243, 0.35), transparent 30%),
    linear-gradient(135deg, #081833 0%, #0b1f44 45%, #123f8f 100%);
  padding: 132px 0 72px;
}

.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 100%;
  height: 260px;
  background: linear-gradient(90deg, rgba(255,255,255,0.06), rgba(93,186,243,0.2));
  transform: skewY(-10deg) translateY(45%);
  transform-origin: left bottom;
}

.hero-bg::after {
  height: 320px;
  opacity: 0.55;
  transform: skewY(-7deg) translateY(35%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  max-width: 720px;
}

.hero-subtext {
  margin: 0 0 8px;
  font-size: 1.45rem;
  color: rgba(255,255,255,0.92);
}

.hero-description {
  max-width: 650px;
  margin: 0;
  font-size: 1.22rem;
  color: rgba(255,255,255,0.9);
}

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

.hero-visual img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 35px 100px rgba(3, 10, 30, 0.35);
}

.trust-bar {
  background: #fff;
  border-bottom: 1px solid rgba(15,23,42,0.05);
}

.trust-inner {
  padding: 28px 0;
  text-align: center;
}

.trust-inner p {
  margin: 0;
  color: var(--ratio-muted);
  font-size: 1.05rem;
}

.showcase-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 72px;
}

.showcase-row.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.showcase-row.reverse .showcase-image { order: 2; }
.showcase-row.reverse .showcase-copy { order: 1; }

.showcase-image img {
  width: 100%;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.showcase-copy h3 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.showcase-copy p {
  margin: 0 0 18px;
  color: var(--ratio-muted);
  font-size: 1.05rem;
}

.showcase-copy ul {
  margin: 0;
  padding-left: 18px;
}

.showcase-copy li {
  margin-bottom: 8px;
  color: var(--ratio-text);
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}

.founder-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.founder-copy p {
  margin: 0 0 14px;
  color: var(--ratio-muted);
  font-size: 1.05rem;
}

.founder-panel {
  display: grid;
  gap: 16px;
}

.stat-card {
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid var(--ratio-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.stat-number {
  display: block;
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--ratio-navy);
}

.stat-label {
  display: block;
  margin-top: 6px;
  color: var(--ratio-muted);
}

.final-cta {
  background: linear-gradient(135deg, #081833 0%, #0b1f44 45%, #123f8f 100%);
  color: var(--ratio-white);
  padding: 72px 0;
}

.final-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.final-cta h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.final-cta p {
  margin: 0;
  color: rgba(255,255,255,0.85);
}

.site-footer {
  background: #07152d;
  color: rgba(255,255,255,0.9);
  padding: 48px 0 24px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-start;
}

.footer-brand img {
  width: 160px;
  margin-bottom: 12px;
}

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

.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,0.85);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 28px;
  padding-top: 20px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
}
