@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/rubik-400.ttf?v=forest-redesign-1") format("truetype");
}

@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/rubik-500.ttf?v=forest-redesign-1") format("truetype");
}

@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/rubik-600.ttf?v=forest-redesign-1") format("truetype");
}

@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/rubik-700.ttf?v=forest-redesign-1") format("truetype");
}

@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/fonts/rubik-800.ttf?v=forest-redesign-1") format("truetype");
}

:root {
  --forest-950: #051c19;
  --forest-900: #082820;
  --forest-800: #0b3f2c;
  --forest-700: #087347;
  --forest-600: #08935a;
  --forest-500: #12ac68;
  --lime: #7ce76c;
  --lime-bright: #a1f083;
  --ink: #12211a;
  --muted: #637069;
  --line: rgb(10 77 50 / 12%);
  --paper: rgb(255 255 255 / 86%);
  --shadow: 0 18px 50px rgb(16 55 39 / 10%);
  --shadow-strong: 0 24px 70px rgb(1 30 24 / 24%);
  --radius: 18px;
  --font: "Rubik", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background: #eaf4f4;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  color: var(--ink);
  background: #eaf4f4;
  font-family: var(--font);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

@supports (overflow: clip) {
  html,
  body { overflow-x: clip; }
}

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

button,
select { font: inherit; }

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

[hidden] { display: none !important; }

.hero-stage {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgb(2 29 28 / 58%) 0%, rgb(2 33 32 / 18%) 47%, rgb(7 52 49 / 3%) 100%),
    url("/landing/images/forest-sky-hero.webp?v=033e397b") center / cover no-repeat;
}

.hero-stage::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 25%, rgb(23 194 132 / 12%), transparent 34%),
    linear-gradient(180deg, rgb(2 20 21 / 28%) 0%, transparent 58%, rgb(235 247 248 / 7%) 82%, #eef7f8 100%);
}

.hero-stage::after {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 170px;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0, rgb(239 248 249 / 22%) 28%, rgb(239 248 249 / 76%) 68%, #eef7f8 100%);
}

.site-header {
  position: relative;
  z-index: 10;
  width: min(1240px, calc(100% - 48px));
  height: 92px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -.035em;
  white-space: nowrap;
}

.brand-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.hero-stage .brand-logo,
.site-footer .brand-logo {
  filter: none;
}

.brand-name { color: #fff; }

.brand-name b {
  color: var(--lime);
  font-weight: 700;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 43px);
  font-size: 13px;
  font-weight: 500;
  color: rgb(255 255 255 / 82%);
}

.header-nav a {
  position: relative;
  padding: 12px 0;
  transition: color .2s ease;
}

.header-nav a::after {
  position: absolute;
  right: 50%;
  bottom: 5px;
  left: 50%;
  height: 2px;
  content: "";
  border-radius: 2px;
  background: var(--lime);
  transition: right .2s ease, left .2s ease;
}

.header-nav a:hover { color: #fff; }
.header-nav a:hover::after { right: 0; left: 0; }

.header-login {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: 14px;
  color: #fff;
  background: rgb(3 25 24 / 72%);
  box-shadow: 0 12px 32px rgb(0 21 19 / 24%);
  backdrop-filter: blur(14px);
  font-size: 14px;
  font-weight: 600;
  transition: transform .2s ease, background .2s ease;
}

.header-login svg { width: 17px; height: 17px; }

.header-login:hover {
  transform: translateY(-2px);
  background: rgb(7 55 42 / 88%);
}

.hero {
  position: relative;
  z-index: auto;
  width: min(1240px, calc(100% - 48px));
  min-height: 690px;
  margin: 0 auto;
  padding: 58px 0 138px;
  display: grid;
  grid-template-columns: minmax(380px, .82fr) minmax(540px, 1.18fr);
  align-items: center;
  gap: 18px;
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 570px;
  padding-top: 4px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: rgb(181 243 210 / 88%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.hero-eyebrow span {
  width: 24px;
  height: 1px;
  background: var(--lime);
  box-shadow: 0 0 12px var(--lime);
}

.hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(54px, 5.8vw, 86px);
  font-weight: 800;
  letter-spacing: -.052em;
  line-height: .96;
  text-wrap: balance;
  text-shadow: 0 6px 28px rgb(0 25 23 / 28%);
}

.hero h1 em {
  color: var(--lime);
  font-style: normal;
}

.hero-sub {
  max-width: 540px;
  margin: 26px 0 0;
  color: rgb(240 250 248 / 78%);
  font-size: 16px;
  line-height: 1.65;
  text-shadow: 0 2px 12px rgb(0 20 20 / 35%);
}

.hero-actions,
.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}

.button-primary,
.button-secondary {
  min-height: 50px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.button-primary {
  color: #073220;
  background: linear-gradient(135deg, #67dd76, #a6ef75);
  box-shadow: 0 14px 32px rgb(34 208 116 / 28%);
}

.button-secondary {
  color: #fff;
  border-color: rgb(255 255 255 / 38%);
  background: rgb(5 46 41 / 18%);
  backdrop-filter: blur(10px);
}

.button-primary svg,
.button-secondary svg { width: 17px; height: 17px; }

.button-primary:hover,
.button-secondary:hover { transform: translateY(-2px); }

.button-primary:hover { box-shadow: 0 18px 38px rgb(34 208 116 / 38%); }

.button-secondary:hover {
  border-color: rgb(255 255 255 / 65%);
  background: rgb(255 255 255 / 10%);
}

.hero-visual {
  position: relative;
  z-index: 2;
  min-width: 0;
  margin: 0 -7% 0 -7%;
  isolation: isolate;
}

.hero-island-picture { display: block; }

.hero-island {
  position: relative;
  z-index: 2;
  display: block;
  width: 112%;
  max-width: none;
  height: auto;
  transform: translate3d(-1%, 1%, 0);
  filter: drop-shadow(0 42px 32px rgb(0 31 26 / 30%));
  will-change: transform;
  animation: island-float 7s ease-in-out -2s infinite alternate;
}

@keyframes island-float {
  from { transform: translate3d(-1%, 1.6%, 0) rotate(-.35deg); }
  to { transform: translate3d(0, -1.6%, 0) rotate(.35deg); }
}

.hero-stat {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 148px;
  padding: 13px 16px;
  border: 1px solid rgb(255 255 255 / 28%);
  border-radius: 14px;
  color: #113029;
  background: rgb(255 255 255 / 68%);
  box-shadow: 0 18px 45px rgb(6 37 34 / 16%);
  backdrop-filter: blur(15px);
  animation: stat-float 5s ease-in-out infinite alternate;
}

.hero-stat > svg {
  width: 29px;
  height: 29px;
  color: #19a768;
}

.hero-stat div { display: grid; }

.hero-stat strong {
  font-size: 14px;
  line-height: 1.2;
}

.hero-stat span {
  color: #65766f;
  font-size: 9px;
}

.hero-stat--uptime {
  top: 8%;
  left: 5%;
  animation-delay: -1.7s;
}

.hero-stat--performance {
  right: 0;
  bottom: 22%;
  animation-delay: -3.2s;
}

@keyframes stat-float {
  from { transform: translateY(-4px); }
  to { transform: translateY(5px); }
}

.trust-row {
  position: absolute;
  z-index: 6;
  bottom: 58px;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: clamp(24px, 4.2vw, 56px);
  padding: 10px 14px;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 16px;
  background: rgb(3 38 34 / 58%);
  box-shadow: 0 12px 32px rgb(0 27 24 / 16%);
  backdrop-filter: blur(9px);
}

.trust-row article {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #fff;
}

.trust-row article > span {
  width: 37px;
  height: 37px;
  border: 1px solid rgb(122 231 108 / 28%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--lime);
  background: rgb(4 46 40 / 32%);
  backdrop-filter: blur(10px);
}

.trust-row svg { width: 20px; height: 20px; }

.trust-row div { display: grid; }

.trust-row b {
  font-size: 11px;
  line-height: 1.25;
}

.trust-row small {
  color: rgb(232 247 243 / 82%);
  font-size: 9px;
}

.cloud-content {
  --cloud-tile-height: 177.68vw;

  position: relative;
  z-index: 2;
  isolation: isolate;
  padding: 14px 0 70px;
  background:
    linear-gradient(180deg, rgb(246 251 252 / 78%), rgb(239 247 247 / 70%)),
    url("/landing/images/forest-clouds-page.webp?v=a270dd57") center top / 100% auto repeat-y;
}

.cloud-content::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(ellipse 24% 115px at 10% 0, rgb(246 251 252 / 92%), transparent 72%) top center / 100% var(--cloud-tile-height) repeat-y,
    radial-gradient(ellipse 34% 130px at 52% 0, rgb(246 251 252 / 88%), transparent 74%) top center / 100% var(--cloud-tile-height) repeat-y,
    radial-gradient(ellipse 26% 105px at 91% 0, rgb(246 251 252 / 90%), transparent 72%) top center / 100% var(--cloud-tile-height) repeat-y,
    repeating-linear-gradient(
      to bottom,
      rgb(243 250 251 / 94%) 0,
      rgb(243 250 251 / 48%) 72px,
      transparent 155px,
      transparent calc(var(--cloud-tile-height) - 155px),
      rgb(243 250 251 / 48%) calc(var(--cloud-tile-height) - 72px),
      rgb(243 250 251 / 94%) var(--cloud-tile-height)
    );
}

.cloud-content::before {
  position: absolute;
  z-index: 0;
  top: -28px;
  right: -4%;
  left: -4%;
  height: 88px;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(ellipse 18% 54% at 8% 52%, rgb(244 250 251 / 78%) 0 62%, transparent 72%),
    radial-gradient(ellipse 24% 62% at 28% 48%, rgb(244 250 251 / 82%) 0 64%, transparent 74%),
    radial-gradient(ellipse 22% 58% at 51% 54%, rgb(244 250 251 / 84%) 0 64%, transparent 74%),
    radial-gradient(ellipse 25% 64% at 73% 47%, rgb(244 250 251 / 82%) 0 64%, transparent 74%),
    radial-gradient(ellipse 19% 55% at 94% 54%, rgb(244 250 251 / 78%) 0 62%, transparent 72%),
    linear-gradient(
      to bottom,
      transparent 0,
      rgb(241 249 250 / 34%) 30%,
      rgb(241 249 250 / 82%) 49%,
      rgb(241 249 250 / 48%) 68%,
      transparent 100%
    );
  filter: blur(9px);
}

.cloud-content > * {
  position: relative;
  z-index: 1;
}

.landing-section,
.final-cta {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

.landing-section {
  padding: 43px 0 24px;
  scroll-margin-top: 28px;
}

.section-heading { margin-bottom: 22px; }

.section-heading > span,
.section-heading > div > span,
.referral-copy > span,
.final-cta > div > span {
  display: block;
  margin-bottom: 5px;
  color: var(--forest-600);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.section-heading h2,
.referral-copy h2,
.final-cta h2 {
  margin: 0;
  color: #10251c;
  font-size: clamp(25px, 2.4vw, 35px);
  line-height: 1.12;
  letter-spacing: -.035em;
}

.section-heading p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.section-heading--row,
.section-heading--plans {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-heading--row > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 4px;
  color: var(--forest-700);
  font-size: 12px;
  font-weight: 700;
}

.section-heading--row > a svg { width: 15px; height: 15px; }

.services-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 178px;
  padding: 25px 52px 24px 24px;
  border: 1px solid rgb(255 255 255 / 68%);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 49px 1fr;
  gap: 16px;
  overflow: hidden;
  background: rgb(255 255 255 / 79%);
  box-shadow: var(--shadow);
  backdrop-filter: blur(17px);
  transition: transform .25s ease, box-shadow .25s ease;
}

.service-card::after {
  position: absolute;
  width: 190px;
  height: 190px;
  right: -95px;
  top: -115px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgb(115 234 126 / 20%), transparent 70%);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 58px rgb(16 55 39 / 15%);
}

.service-card--vps,
.service-card--mail {
  color: #fff;
  border-color: rgb(255 255 255 / 10%);
  background: linear-gradient(145deg, rgb(5 95 63 / 95%), rgb(4 52 43 / 97%));
  box-shadow: 0 20px 52px rgb(5 54 42 / 23%);
}

.service-card--mail {
  background: linear-gradient(145deg, rgb(25 44 43 / 94%), rgb(12 32 33 / 97%));
}

.service-icon {
  width: 49px;
  height: 49px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--forest-600);
  background: rgb(89 224 125 / 14%);
}

.service-card--vps .service-icon,
.service-card--mail .service-icon {
  color: var(--lime);
  background: rgb(113 235 129 / 14%);
}

.service-icon svg { width: 25px; height: 25px; }

.service-kicker {
  display: block;
  margin: 0 0 4px;
  color: var(--forest-600);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.service-card--vps .service-kicker,
.service-card--mail .service-kicker { color: rgb(154 240 170 / 78%); }

.service-card h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: -.02em;
}

.service-card p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.service-card--vps p,
.service-card--mail p { color: rgb(239 251 246 / 68%); }

.service-card > a,
.service-card-link {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--forest-700);
  background: rgb(235 243 240 / 80%);
}

.service-card--vps > a,
.service-card--mail .service-card-link {
  color: #fff;
  background: rgb(255 255 255 / 14%);
}

.service-card > a svg,
.service-card-link svg { width: 16px; height: 16px; }

.plans-location {
  min-width: 210px;
  display: grid;
  gap: 5px;
}

.plans-location label {
  color: #5d7167;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.plans-location select {
  width: 100%;
  height: 42px;
  padding: 0 38px 0 14px;
  border: 1px solid rgb(7 91 56 / 15%);
  border-radius: 12px;
  color: #173329;
  background: rgb(255 255 255 / 82%);
  box-shadow: 0 9px 24px rgb(11 58 42 / 7%);
  outline: none;
}

.plans-location select:focus {
  border-color: var(--forest-500);
  box-shadow: 0 0 0 3px rgb(14 166 96 / 12%);
}

.plans-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 14px;
}

.plan-preview {
  position: relative;
  min-width: 0;
  min-height: 365px;
  padding: 23px 20px 18px;
  border: 1px solid rgb(255 255 255 / 76%);
  border-radius: 17px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: rgb(255 255 255 / 78%);
  box-shadow: 0 16px 46px rgb(23 68 51 / 9%);
  backdrop-filter: blur(18px);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
  flex: 0 1 calc((100% - 42px) / 4);
}

.plan-preview::before {
  position: absolute;
  right: -65px;
  top: -75px;
  width: 170px;
  height: 170px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgb(91 221 118 / 15%), transparent 70%);
}

.plan-preview:hover {
  transform: translateY(-5px);
  border-color: rgb(25 170 94 / 25%);
  box-shadow: 0 24px 56px rgb(23 68 51 / 14%);
}

.plan-preview.is-unavailable { opacity: .68; }

.plan-preview-header {
  position: relative;
  min-height: 58px;
  display: flex;
  align-items: start;
  gap: 8px;
}

.plan-preview-image {
  position: absolute;
  z-index: 0;
  right: -9px;
  top: -16px;
  width: 82px;
  height: 70px;
  object-fit: contain;
  opacity: .72;
}

.plan-preview-image--fallback {
  opacity: .13;
  background:
    linear-gradient(var(--forest-700), var(--forest-700)) 8px 10px / 54px 8px no-repeat,
    linear-gradient(var(--forest-700), var(--forest-700)) 8px 24px / 54px 8px no-repeat,
    linear-gradient(var(--forest-700), var(--forest-700)) 8px 38px / 54px 8px no-repeat;
}

.plan-preview-main {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-right: 58px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.plan-preview-name {
  width: 100%;
  color: #10251c;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.025em;
}

.plan-popular-badge {
  padding: 3px 8px;
  border-radius: 999px;
  color: #087347;
  background: #d6f8dc;
  font-size: 9px;
  font-weight: 700;
}

.plan-preview-check {
  display: none;
}

.plan-preview-specs {
  min-height: 146px;
  margin: 13px 0 10px;
  padding: 0;
  display: grid;
  gap: 8px;
  list-style: none;
  color: #455d52;
  font-size: 11px;
}

.plan-preview-specs li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.plan-preview-spec-icon {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  color: #163f30;
}

.plan-preview-status {
  align-self: flex-start;
  margin-top: auto;
  padding: 4px 8px;
  border-radius: 7px;
  color: #087347;
  background: #e0f7e5;
  font-size: 9px;
  font-weight: 700;
}

.plan-preview.is-unavailable .plan-preview-status {
  color: #6c7470;
  background: #edf0ee;
}

.plan-preview footer {
  margin-top: 12px;
  display: flex;
  align-items: end;
  gap: 5px;
  color: #66736d;
  font-size: 11px;
}

.plan-preview-price {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.plan-preview-price strong {
  color: #10251c;
  font-size: 23px;
  line-height: 1;
}

.plan-preview-price del {
  color: #8b9691;
  font-size: 10px;
}

.plan-preview-action {
  width: 100%;
  min-height: 40px;
  margin-top: 14px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #07814d, #11a963);
  box-shadow: 0 9px 20px rgb(10 147 86 / 19%);
  font-size: 11px;
  font-weight: 700;
}

.plan-preview.is-unavailable .plan-preview-action {
  pointer-events: none;
  color: #64716b;
  background: #e7ece9;
  box-shadow: none;
}

.plans-note {
  margin: 14px 0 0;
  color: #758078;
  font-size: 11px;
}

.plans-loading,
.plans-empty {
  width: 100%;
  min-height: 180px;
  margin: 0;
  border: 1px solid rgb(255 255 255 / 75%);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: #62726a;
  background: rgb(255 255 255 / 68%);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.use-case-grid,
.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.capability-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.use-case-grid article,
.capability-grid article {
  min-height: 102px;
  padding: 18px;
  border: 1px solid rgb(255 255 255 / 78%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 13px;
  background: rgb(255 255 255 / 76%);
  box-shadow: 0 12px 34px rgb(23 68 51 / 7%);
  backdrop-filter: blur(16px);
}

.use-case-grid article > span,
.capability-grid article > span {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--forest-600);
  background: rgb(49 204 105 / 12%);
}

.use-case-grid article:nth-child(1) > span {
  color: #fff;
  background: #122d2b;
}

.use-case-grid article:nth-child(4) > span {
  color: #168cc4;
  background: rgb(56 180 231 / 13%);
}

.use-case-grid svg,
.capability-grid svg { width: 22px; height: 22px; }

.use-case-grid h3,
.steps-list h3 {
  margin: 0;
  font-size: 13px;
  line-height: 1.3;
}

.use-case-grid p,
.capability-grid p,
.steps-list p {
  margin: 5px 0 0;
  color: #68766f;
  font-size: 10px;
  line-height: 1.5;
}

.capability-grid article {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.capability-grid article > span {
  width: 48px;
  height: 48px;
  box-shadow: inset 0 0 0 1px rgb(22 157 87 / 8%);
}

.capability-grid b {
  font-size: 14px;
  letter-spacing: -.015em;
}

.details-grid,
.community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 18px;
}

.info-panel,
.faq-section {
  padding: 26px;
  border: 1px solid rgb(255 255 255 / 80%);
  border-radius: var(--radius);
  background: rgb(255 255 255 / 76%);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.info-panel .section-heading,
.faq-section .section-heading { margin-bottom: 19px; }

.info-panel .section-heading h2,
.faq-section .section-heading h2 { font-size: 23px; }

.os-list {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.os-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 11px;
  animation: os-marquee 42s linear infinite;
}

.os-list:hover .os-track { animation-play-state: paused; }

@keyframes os-marquee {
  to { transform: translateX(-50%); }
}

.os-item {
  width: 76px;
  min-height: 76px;
  padding: 9px 6px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 8px;
  color: #5b6962;
  font-size: 9px;
  text-align: center;
}

.os-logo,
.os-mark {
  width: 31px;
  height: 31px;
  object-fit: contain;
}

.os-mark-fallback {
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #6b7b73;
  background: #edf3ef;
  font-size: 14px;
}

span.os-logo {
  background-color: var(--os-color);
  -webkit-mask: var(--os-icon) center / contain no-repeat;
  mask: var(--os-icon) center / contain no-repeat;
}

.steps-list {
  margin: 2px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  list-style: none;
  counter-reset: step;
}

.steps-list li {
  position: relative;
  min-width: 0;
  padding-top: 42px;
}

.steps-list li:not(:last-child)::after {
  position: absolute;
  top: 15px;
  right: -8px;
  width: 18px;
  height: 1px;
  content: "";
  background: rgb(7 126 73 / 23%);
}

.steps-list strong {
  position: absolute;
  top: 0;
  left: 0;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #075a38;
  background: #b9efb7;
  font-size: 11px;
}

.community-grid { padding-top: 20px; }

.referral-section {
  position: relative;
  min-height: 285px;
  padding: 36px 34px;
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 88px 1fr;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 20% 20%, rgb(86 224 127 / 20%), transparent 31%),
    linear-gradient(135deg, #0a4d38, #062922);
  box-shadow: var(--shadow-strong);
}

.referral-section::after {
  position: absolute;
  right: -70px;
  bottom: -135px;
  width: 280px;
  height: 280px;
  content: "";
  border: 1px solid rgb(119 231 116 / 13%);
  border-radius: 50%;
  box-shadow: 0 0 0 35px rgb(119 231 116 / 4%), 0 0 0 70px rgb(119 231 116 / 3%);
}

.referral-icon {
  width: 82px;
  height: 82px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  color: var(--lime);
  background: rgb(113 236 126 / 11%);
  box-shadow: inset 0 0 0 1px rgb(113 236 126 / 11%);
}

.referral-icon svg { width: 42px; height: 42px; }

.referral-copy {
  position: relative;
  z-index: 1;
}

.referral-copy > span { color: rgb(162 242 176 / 75%); }

.referral-copy h2 {
  color: #fff;
  font-size: 24px;
}

.referral-copy p {
  margin: 10px 0 18px;
  color: rgb(238 250 245 / 65%);
  font-size: 11px;
}

.referral-copy a {
  min-height: 39px;
  padding: 0 15px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #06371f;
  background: #8ce985;
  font-size: 10px;
  font-weight: 700;
}

.referral-copy a svg { width: 14px; height: 14px; }

.faq-section { min-height: 285px; }

.faq-list {
  display: grid;
  gap: 7px;
}

.faq-list details {
  border: 1px solid rgb(8 87 54 / 8%);
  border-radius: 10px;
  background: rgb(248 251 249 / 80%);
  overflow: hidden;
}

.faq-list summary {
  position: relative;
  padding: 11px 38px 11px 14px;
  color: #273c33;
  cursor: pointer;
  list-style: none;
  font-size: 11px;
  font-weight: 600;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 10px;
  height: 1.5px;
  content: "";
  border-radius: 2px;
  background: #537067;
  transition: transform .2s ease;
}

.faq-list summary::after { transform: rotate(90deg); }

.faq-list details[open] summary::after { transform: rotate(0); }

.faq-list details p {
  margin: 0;
  padding: 0 38px 13px 14px;
  color: #64726c;
  font-size: 10px;
  line-height: 1.55;
}

.faq-list details p a {
  color: var(--forest-700);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.final-cta {
  position: relative;
  min-height: 235px;
  margin-top: 48px;
  padding: 45px clamp(30px, 6vw, 80px);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(90deg, rgb(2 42 37 / 94%), rgb(3 57 49 / 76%), rgb(2 37 34 / 89%)),
    url("/landing/images/forest-sky-hero.webp?v=033e397b") center 68% / cover no-repeat;
  box-shadow: var(--shadow-strong);
}

.final-cta::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 72% 25%, rgb(128 237 116 / 14%), transparent 30%);
}

.final-cta > div {
  position: relative;
  z-index: 1;
}

.final-cta > div:first-child { max-width: 610px; }

.final-cta > div > span { color: rgb(153 239 168 / 70%); }

.final-cta h2 {
  color: #fff;
  font-size: clamp(28px, 3.2vw, 42px);
}

.final-cta p {
  margin: 10px 0 0;
  color: rgb(235 247 244 / 67%);
  font-size: 12px;
}

.final-cta-actions {
  justify-content: center;
  margin-top: 0;
}

.final-cta-actions .button-primary,
.final-cta-actions .button-secondary {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 11px;
}

.site-footer {
  color: rgb(231 244 239 / 67%);
  background: #061d1b;
}

.footer-inner {
  width: min(1240px, calc(100% - 48px));
  min-height: 170px;
  margin: 0 auto;
  padding: 34px 0 26px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 22px 45px;
}

.site-footer .brand { font-size: 17px; }
.site-footer .brand-logo { width: 42px; height: 42px; }

.footer-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  color: rgb(236 247 243 / 67%);
  font-size: 10px;
}

.footer-nav a:hover,
.footer-links a:hover { color: var(--lime); }

.footer-socials a {
  width: 34px;
  height: 34px;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgb(255 255 255 / 5%);
}

.footer-socials svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  stroke: none;
}

.footer-copy {
  margin: 0;
  color: rgb(232 244 240 / 65%);
  font-size: 10px;
}

.footer-copy small { color: rgb(232 244 240 / 42%); }

.footer-legal {
  margin: 0;
  color: rgb(232 244 240 / 38%);
  font-size: 9px;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 16px;
  color: rgb(232 244 240 / 43%);
  font-size: 8px;
}

.cookie-notice {
  position: fixed;
  z-index: 100;
  right: 20px;
  bottom: 20px;
  width: min(430px, calc(100% - 40px));
  padding: 16px;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 14px;
  color: #fff;
  background: rgb(5 38 32 / 93%);
  box-shadow: 0 24px 70px rgb(0 20 17 / 30%);
  backdrop-filter: blur(16px);
}

.cookie-notice p {
  margin: 0 0 12px;
  color: rgb(242 250 247 / 72%);
  font-size: 11px;
}

.cookie-notice a {
  color: var(--lime);
  text-decoration: underline;
}

.cookie-notice button {
  min-height: 36px;
  padding: 0 16px;
  border: 0;
  border-radius: 9px;
  color: #07321f;
  background: var(--lime);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
}

.landing-motion .landing-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .58s ease var(--landing-reveal-delay, 0ms), transform .58s ease var(--landing-reveal-delay, 0ms);
}

.landing-motion .landing-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: minmax(340px, .85fr) minmax(460px, 1.15fr);
  }

  .hero h1 { font-size: clamp(52px, 6.4vw, 72px); }

  .hero-visual { margin-inline: -8% -12%; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card--mail { grid-column: 1 / -1; }

  .plan-preview { flex-basis: calc((100% - 14px) / 2); }

  .plan-preview { min-height: 350px; }

  .use-case-grid,
  .capability-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .footer-inner { grid-template-columns: 1fr auto; }
  .footer-nav { order: 3; grid-column: 1 / -1; justify-content: center; }
  .footer-copy { order: 4; }
  .footer-legal { order: 5; }
  .footer-links { order: 6; grid-column: 1 / -1; justify-content: center; }
}

@media (max-width: 900px) {
  html,
  body { scrollbar-width: none; }

  html::-webkit-scrollbar,
  body::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }

  .hero-stage {
    min-height: 980px;
    background-position: 58% top;
  }

  .hero-stage::before {
    background:
      linear-gradient(180deg, rgb(2 28 27 / 63%) 0%, rgb(2 32 31 / 44%) 43%, rgb(4 35 32 / 5%) 76%, #eef7f8 100%);
  }

  .site-header {
    width: min(100% - 32px, 720px);
    height: 78px;
    grid-template-columns: 1fr auto;
  }

  .header-nav { display: none; }

  .hero {
    width: min(100% - 32px, 720px);
    min-height: 860px;
    padding: 54px 0 120px;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 22px;
  }

  .hero-copy {
    width: 100%;
    max-width: 580px;
    text-align: center;
    justify-self: center;
  }

  .hero-eyebrow { justify-content: center; }

  .hero h1 { font-size: clamp(52px, 10vw, 76px); }

  .hero-sub { margin-inline: auto; }

  .hero-actions { justify-content: center; }

  .hero-visual {
    width: min(760px, 105vw);
    margin: -30px auto -30px;
    justify-self: center;
  }

  .hero-island { width: 100%; }

  .hero-stat--uptime { left: 6%; }
  .hero-stat--performance { right: 4%; }

  .trust-row {
    right: 0;
    bottom: 45px;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

  .trust-row article { justify-content: center; }

  .cloud-content {
    --cloud-tile-height: 1635px;

    padding-top: 0;
    background-size: 920px auto;
  }

  .landing-section,
  .final-cta { width: min(100% - 32px, 720px); }

  .details-grid,
  .community-grid { grid-template-columns: 1fr; }

  .final-cta { flex-direction: column; }
}

@media (max-width: 640px) {
  .hero-stage { min-height: 890px; }

  .site-header {
    width: calc(100% - 28px);
    height: 70px;
  }

  .brand { font-size: 18px; }
  .brand-logo { width: 44px; height: 44px; }

  .header-login {
    min-height: 39px;
    padding: 0 14px;
    border-radius: 11px;
    font-size: 12px;
  }

  .hero {
    width: calc(100% - 28px);
    min-height: 800px;
    padding: 42px 0 138px;
  }

  .hero-eyebrow {
    margin-bottom: 15px;
    font-size: 9px;
    letter-spacing: .18em;
  }

  .hero h1 {
    font-size: clamp(44px, 13vw, 60px);
    line-height: .98;
  }

  .hero-sub {
    margin-top: 19px;
    font-size: 14px;
  }

  .hero-actions {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .hero-actions > * {
    min-width: 0;
  }

  .button-primary,
  .button-secondary {
    min-height: 46px;
    padding-inline: 12px;
    font-size: 11px;
  }

  .hero-visual {
    width: 112vw;
    margin: -12px -8vw -25px;
  }

  .hero-stat {
    min-width: 116px;
    padding: 9px 10px;
    border-radius: 11px;
  }

  .hero-stat > svg { width: 22px; height: 22px; }
  .hero-stat strong { font-size: 11px; }
  .hero-stat span { font-size: 7px; }

  .hero-stat--uptime {
    top: 4%;
    left: 10%;
  }

  .hero-stat--performance {
    right: 8%;
    bottom: 18%;
  }

  .trust-row {
    bottom: 40px;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 5px;
  }

  .trust-row article { justify-content: flex-start; }
  .trust-row article > span { width: 31px; height: 31px; }
  .trust-row svg { width: 17px; height: 17px; }

  .cloud-content {
    --cloud-tile-height: 1350px;

    background-size: 760px auto;
  }

  .landing-section,
  .final-cta { width: calc(100% - 28px); }

  .landing-section { padding: 34px 0 14px; }

  .section-heading--row,
  .section-heading--plans {
    align-items: start;
    flex-direction: column;
    gap: 14px;
  }

  .section-heading h2,
  .referral-copy h2 { font-size: 25px; }

  .section-heading--row > a { align-self: flex-start; }

  .services-grid,
  .use-case-grid,
  .capability-grid { grid-template-columns: 1fr; }

  .service-card--mail { grid-column: auto; }

  .service-card { min-height: 150px; }

  .plans-location { width: 100%; }

  .plan-preview {
    flex-basis: 100%;
    min-height: 345px;
    padding: 22px;
  }

  .use-case-grid article,
  .capability-grid article { min-height: 88px; }

  .info-panel,
  .faq-section { padding: 22px 18px; }

  .steps-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .steps-list li {
    min-height: 38px;
    padding: 0 0 0 46px;
  }

  .steps-list li:not(:last-child)::after {
    top: 32px;
    right: auto;
    bottom: -16px;
    left: 15px;
    width: 1px;
    height: 16px;
  }

  .referral-section {
    min-height: 0;
    padding: 28px 24px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .referral-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
  }

  .referral-icon svg { width: 33px; height: 33px; }

  .final-cta {
    min-height: 300px;
    margin-top: 34px;
    padding: 35px 22px;
  }

  .final-cta-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-inner {
    width: calc(100% - 28px);
    padding: 32px 0;
    grid-template-columns: 1fr auto;
    gap: 20px;
  }

  .footer-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  .footer-copy,
  .footer-legal {
    grid-column: 1 / -1;
    text-align: left;
  }

  .footer-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}
