
:root {
  --navy: #06173a;
  --navy2: #0b2454;
  --navy3: #102f6b;
  --blue: #2463eb;
  --blue2: #1d4ed8;
  --green: #18a35f;
  --orange: #ff6b1a;
  --purple: #7c4dff;
  --text: #071636;
  --muted: #60708f;
  --line: #dce6f4;
  --soft: #f6f8fc;
  --white: #ffffff;
  --shadow: 0 18px 54px rgba(6, 23, 58, 0.12);
  --radius: 24px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

.shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid rgba(220,230,244,0.9);
  backdrop-filter: blur(14px);
}

.nav-shell {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: 1.34rem;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.brand img {
  width: 40px;
  height: 40px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 750;
  font-size: 0.94rem;
}

.main-nav a {
  opacity: 0.84;
}

.main-nav a:hover {
  opacity: 1;
}

.nav-cta {
  padding: 12px 18px;
  color: white;
  background: var(--blue);
  border-radius: 12px;
  opacity: 1 !important;
  box-shadow: 0 10px 24px rgba(36, 99, 235, 0.24);
}

.menu-button {
  display: none;
  border: 0;
  background: var(--navy);
  color: white;
  border-radius: 10px;
  padding: 9px 12px;
  cursor: pointer;
  font-size: 1.1rem;
}

.hero {
  color: white;
  background:
    radial-gradient(circle at 76% 32%, rgba(36, 99, 235, 0.42), transparent 34%),
    radial-gradient(circle at 32% 85%, rgba(255, 107, 26, 0.08), transparent 30%),
    linear-gradient(120deg, #06173a 0%, #071f4d 48%, #0b2454 100%);
  overflow: hidden;
  position: relative;
}

.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.1;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 620px;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  align-items: center;
  gap: 72px;
  padding: 82px 0;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9fb8ee;
}

.hero h1 {
  margin: 0;
  max-width: 650px;
  font-size: clamp(3.4rem, 5.8vw, 6.6rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.hero h1::after,
.problem-title h2::after,
.lanes-intro h2::after,
.contact-copy h2::after {
  content: ".";
  color: var(--orange);
}

.hero-text {
  max-width: 590px;
  margin: 28px 0 0;
  font-size: 1.2rem;
  color: #e3ebfb;
}

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

.button {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: 850;
  cursor: pointer;
}

.primary {
  border: 1px solid var(--blue);
  background: var(--blue);
  color: white;
  box-shadow: 0 14px 30px rgba(36, 99, 235, 0.28);
}

.secondary {
  border: 1px solid rgba(255,255,255,0.5);
  color: white;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.trust-row span {
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.045);
  color: #d6e2fb;
  font-weight: 750;
  font-size: 0.88rem;
}

.hero-visual img {
  display: block;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  filter: drop-shadow(0 28px 80px rgba(0,0,0,0.22));
}

.problem {
  padding: 42px 0;
  background: linear-gradient(180deg, #ffffff, #f7f9fd);
}

.problem-card {
  min-height: 136px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 52px;
  align-items: center;
  padding: 30px 36px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  box-shadow: 0 12px 40px rgba(6,23,58,0.06);
}

.problem-title {
  display: flex;
  align-items: center;
  gap: 24px;
}

.problem-title img {
  width: 70px;
  height: 70px;
}

.problem h2 {
  margin: 0;
  max-width: 440px;
  color: var(--navy);
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.problem p {
  margin: 0;
  color: #283956;
  font-size: 1.04rem;
}

.section-pad {
  padding: 76px 0;
}

.section-title {
  margin: 0 0 36px;
  color: var(--navy);
  text-align: center;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.focus-card {
  min-height: 295px;
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 12px 42px rgba(6,23,58,0.07);
}

.focus-card img {
  width: 66px;
  height: 66px;
  margin-bottom: 24px;
}

.focus-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.focus-card h3:after {
  content: "";
  display: block;
  width: 44px;
  height: 4px;
  margin: 16px 0;
  border-radius: 99px;
  background: var(--blue);
}

.focus-card.green h3:after { background: var(--green); }
.focus-card.orange h3:after { background: var(--orange); }
.focus-card.purple h3:after { background: var(--purple); }

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

.platform {
  padding-top: 28px;
}

.platform-map {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 50%, rgba(36,99,235,0.1), transparent 36%),
    linear-gradient(180deg, #ffffff, #f7faff);
  box-shadow: 0 14px 48px rgba(6,23,58,0.07);
}

.source-row,
.target-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.source-row span,
.target-row span {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  color: var(--navy);
  font-weight: 800;
}

.map-center {
  width: min(560px, 100%);
  margin: 38px auto;
  padding: 20px 26px;
  display: grid;
  grid-template-columns: 54px 1fr 1.25fr;
  gap: 18px;
  align-items: center;
  border: 2px solid rgba(36,99,235,0.45);
  border-radius: 18px;
  background: white;
  box-shadow: 0 18px 52px rgba(36,99,235,0.12);
}

.map-center img {
  width: 50px;
  height: 50px;
}

.map-center strong {
  display: block;
  color: var(--navy);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.map-center small {
  color: var(--muted);
  font-weight: 750;
}

.map-center p {
  margin: 0;
  color: var(--muted);
  border-left: 1px solid var(--line);
  padding-left: 18px;
}

.lanes {
  padding: 34px 0 76px;
}

.lanes-panel {
  padding: 46px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 24% 18%, rgba(36,99,235,0.22), transparent 30%),
    linear-gradient(120deg, #06173a, #08245b);
  color: white;
  box-shadow: 0 24px 70px rgba(6,23,58,0.18);
}

.lanes-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 34px;
}

.lanes-intro h2 {
  margin: 0;
  font-size: clamp(2.2rem, 3.4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.lanes-intro p {
  margin: 18px 0 0;
  color: #d9e5fb;
  font-size: 1.05rem;
}

.lane-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.lane-card {
  min-height: 300px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  background: rgba(255,255,255,0.07);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.lane-number {
  color: #b5c8f2;
  font-size: 0.85rem;
  font-weight: 850;
}

.lane-card h3 {
  margin: 14px 0 14px;
  font-size: 1.45rem;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.lane-card p {
  margin: 0;
  color: #dce7fb;
}

.lane-card a {
  display: inline-block;
  margin-top: 20px;
  font-weight: 850;
}

.lane-green a { color: #61d997; }
.lane-blue a { color: #73a6ff; }
.lane-orange a { color: #ff9a56; }
.lane-purple a { color: #b99cff; }

.moment-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.moment-grid article {
  text-align: center;
  padding: 20px 14px;
  border-right: 1px solid var(--line);
}

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

.moment-grid img {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
}

.moment-grid h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1rem;
}

.moment-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact {
  padding-top: 10px;
}

.contact-card {
  display: grid;
  grid-template-columns: 0.85fr 1.35fr;
  gap: 42px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: 0 16px 54px rgba(6,23,58,0.08);
}

.contact-copy img {
  width: 78px;
  height: 78px;
  margin-bottom: 18px;
}

.contact-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

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

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.contact-links a {
  color: var(--blue);
  font-weight: 800;
}

form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-content: start;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
  color: var(--text);
  background: white;
  outline: none;
}

textarea {
  grid-column: 1 / -1;
  min-height: 116px;
  padding-top: 14px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(36,99,235,0.11);
}

form button {
  width: fit-content;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer p {
  margin: 0;
}

.footer a {
  margin-left: 24px;
  font-weight: 700;
}

@media (max-width: 1020px) {
  .hero-grid,
  .problem-card,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-visual img {
    margin-left: 0;
  }

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

  .source-row,
  .target-row,
  .moment-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .moment-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .map-center {
    grid-template-columns: 54px 1fr;
  }

  .map-center p {
    grid-column: 1 / -1;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 14px;
  }
}

@media (max-width: 740px) {
  .shell {
    width: min(100% - 32px, 1180px);
  }

  .nav-shell {
    min-height: 68px;
  }

  .menu-button {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 12px;
  }

  .nav-cta {
    text-align: center;
    margin-top: 6px;
  }

  .hero-grid {
    min-height: auto;
    padding: 72px 0;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .hero-actions,
  .trust-row {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .problem-card,
  .platform-map,
  .lanes-panel,
  .contact-card {
    padding: 24px;
  }

  .problem-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .focus-grid,
  .lane-grid,
  .source-row,
  .target-row,
  .moment-grid,
  form {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer a {
    display: block;
    margin: 8px 0 0;
  }
}
