:root {
  --ink: #14211e;
  --muted: #52645f;
  --accent: #ff6138;
  --accent-dark: #e84b25;
  --mint: #dceee8;
  --mint-deep: #7ba99d;
  --white: #fff;
  --glass: rgba(255, 255, 255, 0.5);
  --glass-border: rgba(255, 255, 255, 0.72);
  --shadow: 0 28px 70px rgba(38, 74, 65, 0.14);
  font-family:
    Inter, Manrope, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #eef6f2;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 255, 255, 0.9), transparent 30%),
    linear-gradient(145deg, #edf7f3 0%, #dcece7 48%, #f7f7ef 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(87, 127, 117, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(87, 127, 117, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  pointer-events: none;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

a {
  color: inherit;
  text-decoration: none;
}

svg {
  display: block;
}

.ambient {
  position: fixed;
  z-index: -2;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(12px);
}

.ambient--one {
  top: -18vw;
  right: -9vw;
  width: 52vw;
  height: 52vw;
  background: rgba(116, 180, 162, 0.33);
}

.ambient--two {
  bottom: -16vw;
  left: -14vw;
  width: 45vw;
  height: 45vw;
  background: rgba(255, 186, 116, 0.17);
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 10;
  opacity: 0.035;
  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='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
  content: "";
  pointer-events: none;
}

.site-header,
main,
footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand__mark {
  display: grid;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 8px 22px rgba(52, 96, 85, 0.12);
  place-items: center;
  backdrop-filter: blur(16px);
}

.brand__mark svg {
  width: 23px;
  fill: none;
  stroke: #214139;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.header-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #29463f;
  font-size: 14px;
  font-weight: 700;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.header-link:hover {
  color: var(--accent);
  transform: translateY(-1px);
}

.header-link svg,
.button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.glass-card {
  border: 1px solid var(--glass-border);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.27));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    var(--shadow);
  backdrop-filter: blur(24px) saturate(130%);
}

.hero {
  display: grid;
  min-height: 680px;
  padding: 25px 0 80px;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
}

.hero__copy {
  position: relative;
  z-index: 2;
  padding: 56px;
  border-radius: 36px;
}

.hero__copy::after,
.final-cta::after {
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.35), transparent 40%);
  content: "";
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  color: #3e5c54;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow__dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #43a686;
  box-shadow: 0 0 0 6px rgba(67, 166, 134, 0.12);
}

.hero h1 {
  margin: 0;
  font-size: clamp(46px, 4.7vw, 68px);
  font-weight: 750;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.hero h1 span {
  color: #5d8077;
}

.hero__lead {
  max-width: 535px;
  margin: 28px 0 31px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.hero__lead strong {
  color: var(--ink);
  font-weight: 800;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 19px;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 16px 23px;
  border-radius: 17px;
  font-size: 14px;
  font-weight: 800;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button--primary {
  color: white;
  background: var(--accent);
  box-shadow:
    0 13px 27px rgba(232, 75, 37, 0.23),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.button--primary:hover {
  background: var(--accent-dark);
  box-shadow:
    0 17px 33px rgba(232, 75, 37, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.action-note {
  max-width: 110px;
  color: #71817d;
  font-size: 12px;
  line-height: 1.4;
}

.quick-facts {
  display: grid;
  margin: 43px 0 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(3, 1fr);
}

.quick-facts li {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
  padding-left: 21px;
  border-left: 1px solid rgba(64, 99, 90, 0.14);
}

.quick-facts strong {
  overflow: hidden;
  font-size: 15px;
  text-overflow: ellipsis;
}

.quick-facts span {
  color: #75847f;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero__visual {
  position: relative;
  min-height: 620px;
  margin-left: -35px;
}

.visual-orb {
  position: absolute;
  top: 25px;
  right: -12px;
  width: min(100%, 545px);
  aspect-ratio: 0.9;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 52% 48% 44% 56% / 44% 38% 62% 56%;
  background:
    radial-gradient(circle at 70% 22%, rgba(255, 250, 215, 0.95), transparent 23%),
    linear-gradient(155deg, rgba(201, 229, 220, 0.75), rgba(117, 169, 155, 0.4));
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.9),
    0 38px 80px rgba(42, 86, 75, 0.18);
  transform: rotate(2deg);
  backdrop-filter: blur(10px);
}

.city-scene {
  width: 100%;
  height: 100%;
  transform: rotate(-2deg) scale(1.03);
}

.sun {
  fill: #fff2b8;
  opacity: 0.66;
}

.mountains--far {
  fill: #b8d3cb;
  opacity: 0.6;
}

.mountains {
  fill: url("#mountain");
  opacity: 0.64;
}

.buildings {
  fill: #a9c3bb;
  opacity: 0.83;
}

.buildings .windows {
  fill: #f2faf6;
}

.ground {
  fill: #8eb5aa;
  opacity: 0.48;
}

.backpack {
  fill: var(--accent);
}

.backpack-detail {
  fill: #d94321;
}

.leg {
  fill: #243834;
}

.leg--back {
  fill: #324b45;
}

.shoe {
  fill: #10201c;
}

.arm {
  fill: #1e302c;
}

.skin,
.neck {
  fill: #d39a77;
}

.hair {
  fill: #1b2624;
}

.cap {
  fill: #ff6841;
}

.cap-bill {
  fill: #dc4623;
}

.jacket-detail {
  fill: #38544d;
}

.logo-mark {
  fill: #f3fbf7;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 17px 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.67);
  box-shadow: 0 17px 38px rgba(35, 76, 66, 0.16);
  backdrop-filter: blur(19px);
}

.floating-card--location {
  top: 165px;
  left: 15px;
  animation: float 5s ease-in-out infinite;
}

.floating-card--schedule {
  right: -11px;
  bottom: 105px;
  animation: float 5.8s ease-in-out -2s infinite;
}

.floating-card__icon {
  display: grid;
  width: 39px;
  height: 39px;
  border-radius: 12px;
  color: white;
  background: var(--accent);
  place-items: center;
}

.floating-card__icon--light {
  color: #285248;
  background: #dceee8;
}

.floating-card__icon svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.floating-card > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.floating-card small {
  color: #778782;
  font-size: 10px;
}

.floating-card strong {
  font-size: 13px;
}

.route-line {
  position: absolute;
  z-index: -1;
  width: 130px;
  height: 130px;
  border: 2px dashed rgba(75, 128, 115, 0.27);
  border-radius: 50%;
}

.route-line::after {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 4px solid #edf7f3;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.route-line--top {
  top: 17px;
  right: 12px;
  border-bottom-color: transparent;
  border-left-color: transparent;
}

.route-line--top::after {
  top: 20px;
  right: 5px;
}

.route-line--bottom {
  bottom: 2px;
  left: 50px;
  border-top-color: transparent;
  border-right-color: transparent;
}

.route-line--bottom::after {
  bottom: 16px;
  left: 7px;
}

.benefits {
  padding: 50px 0 105px;
}

.section-heading {
  margin-bottom: 31px;
  text-align: center;
}

.section-heading span,
.final-cta__label {
  color: #5f8178;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading h2,
.final-cta h2 {
  margin: 9px 0 0;
  font-size: clamp(31px, 3.5vw, 45px);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.benefits__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.benefit-card {
  position: relative;
  min-height: 275px;
  padding: 30px;
  overflow: hidden;
  border-radius: 26px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.benefit-card:hover {
  box-shadow: 0 32px 75px rgba(38, 74, 65, 0.18);
  transform: translateY(-5px);
}

.benefit-card__number {
  position: absolute;
  top: 28px;
  right: 29px;
  color: rgba(41, 75, 66, 0.24);
  font-size: 12px;
  font-weight: 800;
}

.benefit-card__icon {
  display: grid;
  width: 51px;
  height: 51px;
  margin-bottom: 37px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 16px;
  color: #315d52;
  background: rgba(222, 240, 234, 0.72);
  box-shadow: 0 10px 25px rgba(49, 93, 82, 0.1);
  place-items: center;
}

.benefit-card:nth-child(2) .benefit-card__icon {
  color: #a54428;
  background: rgba(255, 222, 207, 0.72);
}

.benefit-card:nth-child(3) .benefit-card__icon {
  color: #88691d;
  background: rgba(250, 235, 189, 0.72);
}

.benefit-card__icon svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.benefit-card h3 {
  margin: 0 0 12px;
  font-size: 19px;
  letter-spacing: -0.025em;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.final-cta {
  position: relative;
  display: flex;
  min-height: 250px;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  margin-bottom: 55px;
  padding: 48px 55px;
  overflow: hidden;
  border-radius: 31px;
}

.final-cta::before {
  position: absolute;
  top: -90px;
  right: 20%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(112, 170, 154, 0.17);
  content: "";
  filter: blur(12px);
}

.final-cta > * {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  max-width: 650px;
}

.final-cta p {
  max-width: 620px;
  margin: 15px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.final-cta .button {
  min-width: 215px;
  flex-shrink: 0;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 0 0 30px;
  color: #778681;
  font-size: 11px;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 570px;
    margin: -30px auto 0;
    width: min(100%, 620px);
  }

  .hero__copy {
    padding: 48px;
  }

  .visual-orb {
    right: 50%;
    transform: translateX(50%) rotate(2deg);
  }

  .city-scene {
    transform: rotate(-2deg) scale(1.03);
  }

  .benefits__grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: 0;
  }
}

@media (max-width: 650px) {
  .site-header,
  main,
  footer {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    padding: 17px 3px;
  }

  .header-link {
    font-size: 0;
  }

  .header-link svg {
    width: 25px;
  }

  .hero {
    padding: 15px 0 45px;
  }

  .hero__copy {
    padding: 34px 24px 27px;
    border-radius: 28px;
  }

  .eyebrow {
    margin-bottom: 20px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(36px, 11.5vw, 52px);
    line-height: 1;
  }

  .hero__lead {
    margin: 23px 0 25px;
    font-size: 15px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .hero__actions .button {
    min-height: 62px;
    width: 100%;
  }

  .action-note {
    max-width: none;
    text-align: center;
  }

  .quick-facts {
    gap: 15px 0;
    margin-top: 31px;
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-facts__income {
    grid-column: 1 / -1;
  }

  .quick-facts li {
    padding-left: 14px;
  }

  .quick-facts strong {
    font-size: 13px;
  }

  .quick-facts span {
    font-size: 9px;
  }

  .quick-facts__income strong {
    color: var(--accent-dark);
    font-size: 18px;
  }

  .hero__visual {
    min-height: 440px;
    margin-top: -10px;
  }

  .visual-orb {
    top: 30px;
    width: 390px;
    max-width: 97%;
  }

  .floating-card {
    padding: 9px 12px 9px 9px;
  }

  .floating-card--location {
    top: 105px;
    left: -2px;
  }

  .floating-card--schedule {
    right: -2px;
    bottom: 58px;
  }

  .floating-card__icon {
    width: 34px;
    height: 34px;
  }

  .floating-card small {
    font-size: 8px;
  }

  .floating-card strong {
    font-size: 11px;
  }

  .benefits {
    padding: 30px 0 70px;
  }

  .benefit-card {
    padding: 25px;
  }

  .benefit-card__icon {
    margin-bottom: 25px;
  }

  .final-cta {
    align-items: stretch;
    flex-direction: column;
    padding: 35px 26px;
    gap: 27px;
    border-radius: 27px;
  }

  .final-cta .button {
    width: 100%;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
