:root {
  --bg: #000000;
  --panel: rgba(35, 39, 38, 0.78);
  --text: #f3f0ec;
  --muted: rgba(243, 240, 236, 0.43);
  --dim: rgba(243, 240, 236, 0.32);
  --green: #87b86f;
  --green-bright: #9bff6a;
  --yellow: #ffe45e;
  --lime: #b5d977;
  --content: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Poppins, Avenir Next, Avenir, Montserrat, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
}

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

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

.site-shell {
  position: relative;
  min-height: 4200px;
  overflow: hidden;
  background: #000000;
}

.site-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 720px 560px at calc(50% - 520px) 130px, rgba(98, 57, 32, 0.72), rgba(58, 34, 23, 0.31) 36%, transparent 70%),
    radial-gradient(ellipse 700px 620px at calc(50% + 525px) 170px, rgba(80, 130, 55, 0.58), rgba(35, 74, 31, 0.25) 42%, transparent 73%),
    radial-gradient(ellipse 620px 520px at calc(50% + 370px) 910px, rgba(45, 102, 48, 0.36), rgba(18, 58, 27, 0.16) 42%, transparent 70%),
    radial-gradient(ellipse 640px 620px at calc(50% - 620px) 1520px, rgba(92, 56, 33, 0.63), rgba(58, 36, 26, 0.25) 38%, transparent 70%),
    radial-gradient(ellipse 760px 620px at calc(50% + 600px) 1660px, rgba(32, 96, 88, 0.48), rgba(13, 51, 50, 0.22) 42%, transparent 73%),
    radial-gradient(ellipse 600px 500px at calc(50% - 580px) 2320px, rgba(38, 90, 42, 0.36), rgba(17, 52, 26, 0.15) 42%, transparent 70%),
    radial-gradient(ellipse 720px 650px at calc(50% + 560px) 2630px, rgba(30, 94, 92, 0.47), rgba(14, 52, 55, 0.2) 42%, transparent 74%),
    radial-gradient(ellipse 680px 620px at calc(50% - 540px) 3420px, rgba(64, 119, 43, 0.52), rgba(32, 69, 28, 0.24) 42%, transparent 72%),
    radial-gradient(ellipse 560px 500px at calc(50% + 470px) 3540px, rgba(25, 84, 65, 0.32), rgba(12, 45, 37, 0.14) 42%, transparent 72%);
  opacity: 0.9;
  filter: blur(2px);
}

.site-header,
.hero,
.feature,
.process,
.contact-section,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: absolute;
  top: 48px;
  left: 50%;
  z-index: 10;
  width: min(var(--content), calc(100% - 56px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  width: 96px;
  height: 36px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 44px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 500;
}

.contact-pill {
  min-width: 121px;
  padding: 14px 22px 13px;
  border: 1px solid rgba(245, 245, 245, 0.72);
  border-radius: 999px;
  text-align: center;
}

.hero {
  position: relative;
  width: min(var(--content), calc(100% - 56px));
  min-height: 1088px;
  margin: 0 auto;
  padding-top: 225px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: 740px;
}

.eyebrow,
.section-label {
  margin: 0 0 43px;
  color: var(--green);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}

.eyebrow {
  text-transform: uppercase;
  font-weight: 600;
}

.hero h1 {
  margin: 0;
  color: var(--text);
  font-weight: 300;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 720px;
  font-size: 84px;
  line-height: 1.22;
}

.feature h2,
.contact-copy h2 {
  margin: 0;
  color: var(--text);
  font-weight: 400;
  letter-spacing: 0;
}

.hero h1 span {
  color: transparent;
  font-style: italic;
  font-weight: 700;
  -webkit-text-stroke: 2px rgba(210, 195, 43, 0.95);
  text-stroke: 2px rgba(210, 195, 43, 0.95);
}

.lede {
  width: 590px;
  margin: 38px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 38px;
  margin-top: 32px;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 34px;
  border-radius: 999px;
  background: linear-gradient(100deg, var(--yellow), #a9d782, var(--yellow));
  background-size: 180% 100%;
  background-position: 0 50%;
  color: #182013;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 14px 30px rgba(196, 223, 91, 0.12);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background-position 320ms ease,
    filter 220ms ease;
  will-change: transform;
}

.primary-button:hover {
  transform: translateY(-3px);
  background-position: 100% 50%;
  box-shadow:
    0 18px 42px rgba(196, 223, 91, 0.24),
    0 0 24px rgba(155, 255, 106, 0.12);
  filter: saturate(1.06);
}

.primary-button:active {
  transform: translateY(-1px);
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 400;
  white-space: nowrap;
  transition:
    color 200ms ease,
    transform 220ms ease;
  will-change: transform;
}

.text-button:hover {
  color: #f4f7ed;
  transform: translateX(4px);
}

.text-button i {
  width: 48px;
  height: 1px;
  background: currentColor;
  opacity: 0.78;
  position: relative;
  transition:
    width 220ms ease,
    opacity 200ms ease,
    box-shadow 220ms ease;
}

.text-button i::after {
  content: "";
  position: absolute;
  top: -4px;
  right: 0;
  width: 9px;
  height: 9px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.text-button.small {
  margin-top: 28px;
  font-size: 13px;
}

.text-button:hover i {
  width: 58px;
  opacity: 1;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.22);
}

.hero-art {
  position: absolute;
  top: 116px;
  right: -18px;
  z-index: 2;
  width: 640px;
  height: 800px;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 40px -60px 120px 120px;
  background: radial-gradient(circle, rgba(156, 255, 77, 0.18), transparent 64%);
  filter: blur(28px);
}

.hero-art img {
  position: relative;
  z-index: 2;
  width: 640px;
  height: 800px;
  object-fit: contain;
}

.petal {
  position: absolute;
  z-index: 1;
  display: block;
  border-radius: 999px;
  background: linear-gradient(135deg, #f0df60, #a6df85);
  box-shadow: 0 22px 32px rgba(224, 219, 78, 0.22);
}

.petal-one {
  right: 30px;
  top: 410px;
  width: 62px;
  height: 88px;
  transform: rotate(39deg);
}

.petal-two {
  right: 50px;
  bottom: 78px;
  width: 176px;
  height: 58px;
  transform: rotate(-24deg);
  background: #a8d879;
}

.petal-three {
  left: -22px;
  bottom: 60px;
  width: 55px;
  height: 86px;
  transform: rotate(-32deg);
}

.stats-ellipse {
  position: absolute;
  right: -66px;
  bottom: 168px;
  z-index: 3;
  width: 198px;
  height: 84px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d8e66a, #95d985);
  transform: rotate(-25deg);
  box-shadow: 0 28px 46px rgba(196, 223, 91, 0.16);
}

.stats-panel {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 4;
  width: 1280px;
  min-height: 240px;
  margin: 0;
  padding: 72px 82px 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  border-radius: 46px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025)),
    linear-gradient(100deg, rgba(38, 43, 42, 0.54), rgba(31, 45, 45, 0.42));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(255, 255, 255, 0.03),
    0 44px 110px rgba(0, 0, 0, 0.36);
  -webkit-backdrop-filter: blur(28px) saturate(125%);
  backdrop-filter: blur(28px) saturate(125%);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease,
    background 260ms ease;
  will-change: transform;
}

.stats-panel:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.035)),
    linear-gradient(100deg, rgba(43, 49, 48, 0.58), rgba(31, 48, 47, 0.46));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04),
    0 52px 130px rgba(0, 0, 0, 0.42),
    0 0 60px rgba(135, 184, 111, 0.08);
}

.stats-panel dt {
  margin: 0;
  color: #f7f7f4;
  font-size: 61px;
  font-weight: 500;
  line-height: 1;
}

.stats-panel dd {
  margin: 18px 0 0;
  color: var(--dim);
  font-size: 13px;
  font-weight: 300;
}

.feature {
  position: relative;
  width: min(var(--content), calc(100% - 56px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  scroll-margin-top: 80px;
}

.feature-ai {
  min-height: 720px;
  padding-top: 116px;
}

.feature-copy {
  width: 550px;
}

.feature-copy .section-label {
  margin-bottom: 36px;
}

.feature h2,
.contact-copy h2 {
  font-size: 61px;
  line-height: 1.2;
}

.feature-copy p:not(.section-label),
.contact-copy p:not(.section-label) {
  margin: 24px 0 0;
  color: var(--dim);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.62;
}

.portrait-card {
  width: 580px;
  height: 639px;
  margin-left: 0;
}

.portrait-card img {
  width: 580px;
  height: 639px;
  object-fit: contain;
}

.feature-travel {
  min-height: 518px;
  padding-top: 40px;
}

.feature-travel .feature-copy {
  align-self: start;
  padding-top: 50px;
}

.globe-image {
  width: 540px;
  justify-self: end;
  margin-right: 24px;
}

.feature-tech {
  min-height: 536px;
  padding-top: 54px;
}

.phone-image {
  width: 675px;
  margin-left: 0;
}

.phone-image img {
  width: 675px;
  max-width: none;
}

.feature-tech .feature-copy {
  justify-self: end;
  padding-top: 44px;
}

.process {
  width: min(var(--content), calc(100% - 56px));
  margin: 80px auto 0;
}

.process-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.process-heading span {
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, rgba(135, 184, 111, 0), rgba(135, 184, 111, 0.76));
}

.process-heading span:last-child {
  background: linear-gradient(90deg, rgba(135, 184, 111, 0.76), rgba(135, 184, 111, 0));
}

.process-heading h2 {
  margin: 0;
  color: var(--text);
  font-size: 38px;
  font-weight: 300;
  line-height: 1;
}

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 70px;
  margin: 90px 0 0;
  padding: 0;
  list-style: none;
}

.process-steps::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 68px;
  height: 2px;
  background:
    linear-gradient(90deg, rgba(135, 184, 111, 0), rgba(135, 184, 111, 0.82) 14%, rgba(135, 184, 111, 0.42) 50%, rgba(135, 184, 111, 0.82) 86%, rgba(135, 184, 111, 0));
  box-shadow:
    0 0 14px rgba(135, 184, 111, 0.28),
    0 0 34px rgba(155, 255, 106, 0.1);
}

.process-steps li {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-number {
  position: relative;
  width: 142px;
  height: 142px;
  margin: 0 auto 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(135, 184, 111, 0.9);
  border-radius: 50%;
  background:
    radial-gradient(circle at 45% 36%, rgba(135, 184, 111, 0.11), rgba(0, 0, 0, 0.74) 44%, #000000 72%),
    #000000;
  color: var(--green);
  font-size: 47px;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  box-shadow:
    inset 0 0 28px rgba(135, 184, 111, 0.1),
    0 0 0 1px rgba(155, 255, 106, 0.04),
    0 0 26px rgba(135, 184, 111, 0.2),
    0 0 72px rgba(135, 184, 111, 0.09);
  text-shadow: 0 0 18px rgba(155, 255, 106, 0.28);
}

.step-number::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(135, 184, 111, 0.17), rgba(135, 184, 111, 0.05) 38%, transparent 68%);
  filter: blur(6px);
}

.process-steps h3 {
  margin: 0;
  color: var(--text);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.18;
}

.process-steps p {
  margin: 24px auto 0;
  max-width: 250px;
  color: var(--dim);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.38;
}

.contact-section {
  width: min(var(--content), calc(100% - 56px));
  min-height: 452px;
  margin: 150px auto 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
}

.contact-copy {
  padding-top: 36px;
}

.contact-copy .section-label {
  margin-bottom: 36px;
}

.contact-copy p:not(.section-label) {
  width: 640px;
  margin-top: 28px;
}

.contact-card {
  justify-self: end;
  width: 540px;
  min-height: 400px;
  margin: 0 0 60px;
  padding: 52px 48px 48px;
  border-radius: 36px;
  background: rgba(34, 35, 35, 0.95);
  font-style: normal;
  border: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease,
    background-color 260ms ease;
  will-change: transform;
}

.contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(135, 184, 111, 0.16);
  background-color: rgba(38, 40, 39, 0.97);
  box-shadow:
    0 34px 92px rgba(0, 0, 0, 0.34),
    0 0 54px rgba(135, 184, 111, 0.08);
}

.contact-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.contact-row + .contact-row {
  margin-top: 36px;
}

.contact-row img {
  width: 30px;
}

.contact-row a,
.contact-row p {
  margin: 0;
  color: #f3f0ec;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

.contact-card .primary-button {
  margin: 46px 0 0 0;
  min-height: 58px;
  padding: 0 34px;
}

.site-footer {
  width: 100%;
  min-height: 195px;
  padding-top: 68px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-inner {
  width: min(var(--content), calc(100% - 56px));
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.site-footer img {
  width: 96px;
  height: 36px;
}

.site-footer p {
  margin: 0;
  color: rgba(243, 240, 236, 0.45);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5;
}

.copyright {
  text-align: right;
}

@media (max-width: 1100px) {
  .site-shell {
    min-height: auto;
  }

  .site-header {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 32px auto 0;
  }

  .nav-links {
    gap: 18px;
  }

  .hero {
    min-height: auto;
    padding-top: 90px;
    padding-bottom: 80px;
  }

  .hero-copy,
  .lede {
    width: min(604px, 100%);
  }

  .hero h1,
  .feature h2,
  .contact-copy h2 {
    font-size: clamp(44px, 8vw, 72px);
  }

  .hero-art {
    position: relative;
    top: auto;
    right: auto;
    width: min(640px, 100%);
    height: auto;
    margin: 40px auto -20px;
  }

  .hero-art img {
    width: 100%;
    height: auto;
  }

  .stats-panel {
    position: relative;
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    padding: 48px;
  }

  .feature,
  .contact-section {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .feature {
    min-height: auto;
    padding-top: 80px;
  }

  .feature-copy,
  .contact-copy,
  .contact-copy p:not(.section-label) {
    width: min(640px, 100%);
  }

  .portrait-card,
  .phone-image,
  .globe-image {
    width: min(580px, 100%);
    height: auto;
    margin-left: 0;
    justify-self: start;
  }

  .portrait-card img {
    width: 100%;
    height: auto;
  }

  .phone-image img {
    width: 100%;
    max-width: 100%;
  }

  .feature-tech .feature-copy {
    justify-self: start;
  }

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

  .process-steps::before {
    display: none;
  }

  .contact-card {
    justify-self: start;
    width: min(540px, 100%);
  }
}

@media (max-width: 680px) {
  .site-header,
  .hero,
  .feature,
  .process,
  .contact-section,
  .footer-inner {
    width: calc(100% - 32px);
  }

  .site-header {
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 210px;
  }

  .contact-pill {
    min-width: 108px;
    padding: 11px 16px;
  }

  .hero {
    padding-top: 72px;
  }

  .eyebrow,
  .section-label {
    margin-bottom: 24px;
    font-size: 13px;
  }

  .hero h1,
  .feature h2,
  .contact-copy h2 {
    font-size: 42px;
  }

  .lede,
  .feature-copy p:not(.section-label),
  .contact-copy p:not(.section-label) {
    font-size: 13px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .stats-panel {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 36px;
    border-radius: 28px;
  }

  .stats-panel dt {
    font-size: 48px;
  }

  .portrait-card {
    width: 100%;
    height: auto;
  }

  .portrait-card img {
    width: 100%;
    height: auto;
  }

  .process {
    margin-top: 80px;
  }

  .process-heading {
    gap: 18px;
  }

  .process-heading span {
    width: 42px;
  }

  .process-heading h2 {
    font-size: 30px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-section {
    margin-top: 90px;
  }

  .contact-card {
    padding: 34px 28px;
    border-radius: 28px;
  }

  .contact-row a,
  .contact-row p {
    font-size: 16px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .copyright {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .primary-button,
  .text-button,
  .text-button i,
  .stats-panel,
  .contact-card {
    transition: none;
  }

  .primary-button:hover,
  .primary-button:active,
  .text-button:hover,
  .stats-panel:hover,
  .contact-card:hover {
    transform: none;
  }
}
