:root {
  --blue: #1155cc;
  --blue-dark: #0b2f6b;
  --blue-soft: #dbeaff;
  --yellow: #ffd84a;
  --coral: #ff725e;
  --cream: #fff8e8;
  --ink: #102b4e;
  --muted: #506b88;
  --white: #fffdf7;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 20;
  opacity: .045;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  padding: 26px clamp(24px, 5vw, 76px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.brand {
  width: 285px;
  display: block;
  text-decoration: none;
  transition: transform 220ms ease;
}

.brand:hover {
  transform: translateY(-2px);
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.status {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 15px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 100px;
  color: rgba(255,255,255,.8);
  background: rgba(6,36,92,.18);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  backdrop-filter: blur(12px);
}

.status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255,216,74,.18);
  animation: pulse 2s infinite;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, .72fr);
  gap: clamp(44px, 7vw, 120px);
  align-items: center;
  padding: 145px clamp(24px, 7vw, 110px) 90px;
  color: white;
  background:
    radial-gradient(circle at 90% 5%, rgba(102,182,255,.68) 0, rgba(102,182,255,0) 29%),
    linear-gradient(135deg, #0c43b0 0%, #1464dd 62%, #2d80eb 100%);
}

.hero::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  left: 53%;
  bottom: -155px;
  border: 54px solid var(--yellow);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 790px;
}

.eyebrow,
.section-label {
  margin: 0 0 28px;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.eyebrow span {
  margin-right: 8px;
  color: var(--coral);
}

h1 {
  max-width: 820px;
  margin: 0;
  font: 500 clamp(50px, 6.2vw, 96px)/.97 "Manrope", sans-serif;
  letter-spacing: -.068em;
}

h1 span {
  position: relative;
  display: inline-block;
  color: var(--yellow);
  font-style: italic;
  font-weight: 400;
}

h1 span::after {
  content: "";
  position: absolute;
  left: 4%;
  right: -3%;
  bottom: -7px;
  height: 7px;
  border-radius: 100%;
  background: var(--coral);
  transform: rotate(-1.5deg);
}

.intro {
  max-width: 590px;
  margin: 36px 0 0;
  color: rgba(255,255,255,.74);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.58;
  letter-spacing: -.02em;
}

.cta {
  width: fit-content;
  margin-top: 38px;
  padding: 8px 8px 8px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-radius: 100px;
  color: var(--blue-dark);
  background: var(--yellow);
  box-shadow: 0 12px 35px rgba(7,31,83,.25);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.cta span {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--blue-dark);
  transition: transform 250ms ease;
}

.cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(7,31,83,.34);
}
.cta:hover span { transform: translateY(3px); }

.path-card {
  position: relative;
  z-index: 2;
  padding: 27px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 30px;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 0 38px 80px rgba(7,31,83,.28);
  transform: rotate(2deg);
}

.path-card::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -68px;
  bottom: -65px;
  border-radius: 50%;
  background: var(--coral);
}

.path-top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  color: var(--blue-dark);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .13em;
}

.path-visual {
  position: relative;
  z-index: 1;
  margin: 17px 0 4px;
}

.path-visual svg { width: 100%; overflow: visible; }
.path-shadow, .path-line { fill: none; stroke-linecap: round; }
.path-shadow { stroke: rgba(255,255,255,.6); stroke-width: 19; }
.path-line {
  stroke: var(--blue-dark);
  stroke-width: 2.5;
  stroke-dasharray: 8 8;
  animation: walk 18s linear infinite;
}
.path-visual circle { fill: var(--blue-dark); }
.path-visual .path-end {
  fill: var(--coral);
  filter: drop-shadow(0 0 9px rgba(255,114,94,.55));
}

.path-label {
  position: absolute;
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--blue-dark);
  background: rgba(255,255,255,.76);
  font-size: 10px;
  font-weight: 600;
}
.label-start { left: 1%; bottom: 4%; }
.label-end { right: 0; top: 0; color: #b52e21; }

.path-card > p {
  position: relative;
  z-index: 1;
  max-width: 340px;
  margin: 12px 0 0;
  color: rgba(11,47,107,.72);
  font-size: 13px;
  line-height: 1.5;
}
.path-card > p strong { color: var(--blue-dark); }
.orb { display: none; }

.promise {
  position: relative;
  overflow: hidden;
  padding: clamp(95px, 12vw, 180px) clamp(24px, 8vw, 130px);
  color: var(--ink);
  background: var(--cream);
}

.promise::after {
  content: "→";
  position: absolute;
  right: -20px;
  top: 55px;
  color: var(--blue-soft);
  font: 400 clamp(180px, 25vw, 390px)/1 "Manrope", sans-serif;
}

.promise .section-label {
  position: relative;
  z-index: 1;
  color: var(--blue);
}

.promise-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr .88fr;
  gap: clamp(55px, 11vw, 180px);
}

h2 {
  margin: 0;
  font: 500 clamp(40px, 5.1vw, 76px)/1.04 "Manrope", sans-serif;
  letter-spacing: -.058em;
}

h2 em {
  color: var(--blue);
  font-style: italic;
  font-weight: 400;
}

.promise-copy {
  max-width: 570px;
  padding: 30px;
  border-left: 6px solid var(--yellow);
  background: white;
  box-shadow: 0 20px 60px rgba(16,43,78,.08);
}

.promise-copy p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.65;
  letter-spacing: -.015em;
}
.promise-copy p:last-child { margin-bottom: 0; }
.promise-copy strong { color: var(--blue); font-weight: 600; }

.possibilities {
  position: relative;
  z-index: 1;
  margin-top: 90px;
  padding-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px solid rgba(16,43,78,.16);
}

.possibilities span {
  padding: 12px 17px;
  border: 1px solid rgba(17,85,204,.24);
  border-radius: 100px;
  color: var(--blue);
  background: white;
  font-size: 12px;
  font-weight: 500;
  transition: color 200ms ease, background 200ms ease, transform 200ms ease;
}

.possibilities span:hover {
  color: white;
  background: var(--blue);
  transform: translateY(-2px);
}

footer {
  padding: 30px clamp(24px, 5vw, 76px);
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,.62);
  background: var(--blue-dark);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
}
footer p { margin: 0; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal 800ms cubic-bezier(.2,.8,.2,1) forwards;
}
.hero-copy .reveal:nth-child(2) { animation-delay: 100ms; }
.hero-copy .reveal:nth-child(3) { animation-delay: 200ms; }
.hero-copy .reveal:nth-child(4) { animation-delay: 300ms; }
.path-card.reveal { animation-delay: 380ms; }

@keyframes reveal { to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 50% { opacity: .5; } }
@keyframes walk { to { stroke-dashoffset: -160; } }

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 150px;
  }
  .path-card {
    width: min(100%, 580px);
    margin-left: auto;
    transform: rotate(1deg);
  }
  .promise-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .site-header { padding: 20px; }
  .status { padding: 8px 10px; font-size: 9px; }
  .brand {
    width: 205px;
  }
  .hero { padding: 132px 20px 75px; gap: 65px; }
  .hero::after { display: none; }
  h1 { font-size: clamp(44px, 13.4vw, 62px); }
  h1 br { display: none; }
  h1 span::after { height: 5px; bottom: -4px; }
  .path-card { padding: 19px; border-radius: 23px; }
  .promise { padding-left: 20px; padding-right: 20px; }
  .promise::after { opacity: .55; }
  .promise-copy { padding: 24px 21px; }
  .possibilities { margin-top: 60px; }
  footer { padding: 24px 20px; gap: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; }
}
