@font-face {
  font-family: 'Helvetica Now Display';
  src: url('/fonts/HelveticaNowDisplay-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Now Display';
  src: url('/fonts/HelveticaNowDisplay-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Now Display';
  src: url('/fonts/HelveticaNowDisplay-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  
  --off-white: #F1F2F2;
  --off-white-2: #DFDFDF;
  --off-white-3: #A9A9A8;
  --off-white-4: #666666;
  --carbon: #111111;
  --teal: #03A687;
  --teal-soft: rgba(3, 166, 135, 0.16);
  --teal-mid: rgba(3, 166, 135, 0.38);
  --red: #EF4123;
  --surface: #FFFFFF;

  --font-sans: 'Helvetica Now Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --max-width: 1600px;

  
  --dots: radial-gradient(circle, rgba(17, 17, 17, 0.28) 1.2px, transparent 1.3px);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--carbon);
  background: var(--off-white);
  overflow-x: hidden;
}

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

a { color: inherit; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .wrap { padding: 0 40px; }
}

h1, h2, h3 { margin: 0; font-weight: 400; }

.headline-1 {
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.headline-3 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.subtitle {
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.body-lg { font-size: 1.125rem; line-height: 1.55; }

.site-header {
  padding: 26px 0;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-header .logo img { height: 38px; width: auto; }

.site-header .header-cta { display: none; }
@media (min-width: 640px) {
  .site-header .header-cta { display: inline-flex; }
}

.btn {
  display: inline-flex;
  white-space: nowrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.375;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.btn .arrow { transition: transform 0.15s ease; }
.btn:hover .arrow { transform: translateX(3px); }
.btn-primary {
  background: var(--carbon);
  color: var(--off-white);
}
.btn-primary:hover { background: #2a2a2a; }
.btn-secondary {
  background: transparent;
  color: var(--carbon);
  border-color: rgba(17, 17, 17, 0.4);
}
.btn-secondary:hover { border-color: var(--carbon); background: rgba(17, 17, 17, 0.05); }
.btn[disabled] { opacity: 0.55; cursor: not-allowed; }

:is(a, button, input, select, textarea):focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.hero { padding: 40px 0 0; }
.hero .wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 768px) {
  .hero .wrap { grid-template-columns: 1.1fr 0.9fr; }
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border: 1px solid rgba(17, 17, 17, 0.25);
  border-radius: 999px;
  background: var(--surface);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.status-chip .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(3, 166, 135, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(3, 166, 135, 0); }
}

.hero .headline-1 { max-width: 14ch; }
.hero .lede {
  margin: 24px 0 0;
  max-width: 50ch;
  font-size: 1.125rem;
  line-height: 1.55;
  color: #333;
}
.hero-actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note { margin-top: 14px; font-size: 0.8125rem; color: var(--off-white-4); }

.hero-visual {
  display: none;
}
@media (min-width: 768px) {
  .hero-visual {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.hero-visual .circle {
  position: absolute;
  border-radius: 50%;
}
.hero-visual .c1 {
  width: 78%;
  aspect-ratio: 1;
  background: var(--teal-mid);
  top: 2%;
  right: 4%;
}
.hero-visual .c2 {
  width: 46%;
  aspect-ratio: 1;
  background: var(--teal);
  bottom: 6%;
  left: 2%;
  mix-blend-mode: multiply;
  opacity: 0.55;
}
.hero-visual .c3 {
  width: 30%;
  aspect-ratio: 1;
  background: var(--teal-soft);
  top: 0;
  left: 16%;
}
.hero-visual .dots {
  position: absolute;
  width: 180px;
  height: 130px;
  background-image: var(--dots);
  background-size: 13px 13px;
  bottom: 10%;
  right: 0;
}
.hero-visual .dots-2 {
  width: 120px;
  height: 90px;
  top: 6%;
  left: 0;
  right: auto;
  bottom: auto;
  opacity: 0.6;
}
.hero-visual .product {
  position: relative;
  width: clamp(300px, 94%, 490px);
  height: auto;
  filter: drop-shadow(0 22px 40px rgba(17, 17, 17, 0.22));
}

.ticker {
  margin-top: 64px;
  background: var(--teal);
  color: var(--carbon);
  overflow: hidden;
  padding: 15px 0;
}
.ticker-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: ticker 36s linear infinite;
}
.ticker-track span {
  white-space: nowrap;
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 28px;
  border-right: 1px solid rgba(17, 17, 17, 0.25);
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
  .status-chip .pulse { animation: none; }
  .cart-drop, .cart-body, .hs-wave, .t-dot, .ill-plane, .ill-spin, .np-trail, .clock-min, .clock-hour, .pin-ping { animation: none; opacity: 1; }
  .reveal.in .num .count + em { animation: none; }
  html { scroll-behavior: auto; }
}

.section { padding: 66px 0 72px; }
.section-head { max-width: 62ch; margin-bottom: 44px; }
.section-head .subtitle { color: var(--teal); margin: 0 0 16px; line-height: 1; }
.section-head p { margin: 16px 0 0; color: #333; }

.stats-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
}
.stat-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--off-white-2);
  border-radius: 18px;
  padding: 28px;
  overflow: hidden;
}
.stat-card::after {
  content: '';
  position: absolute;
  top: 18px;
  right: 18px;
  width: 64px;
  height: 46px;
  background-image: var(--dots);
  background-size: 11px 11px;
  opacity: 0.35;
}
.stat-card .num {
  font-size: clamp(3.25rem, 6vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--carbon);
}
.stat-card .num em { font-style: normal; color: var(--teal); }
.reveal.in .num .count + em { animation: pop-in 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) 1s backwards; display: inline-block; }
@keyframes pop-in {
  from { transform: scale(0.4); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.stat-card .subtitle { color: var(--off-white-4); margin: 14px 0 10px; font-size: 0.8125rem; }
.stat-card p { margin: 0; color: #333; font-size: 0.9375rem; line-height: 1.55; }

.env-grid {
  margin-top: 20px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .env-grid { grid-template-columns: repeat(5, 1fr); }
}
.env-card {
  position: relative;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
}
.env-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}
.env-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 17, 17, 0.55) 0%, rgba(17, 17, 17, 0) 45%);
  pointer-events: none;
}
.env-card figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  color: var(--off-white);
  font-size: 0.6875rem;
  z-index: 1;
}

.contact-layout {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 1024px) {
  .contact-layout { grid-template-columns: 1fr 1fr; }
}
.contact-side {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) and (max-width: 1023.98px) {
  .contact-side { grid-template-columns: repeat(3, 1fr); }
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--off-white-2);
  border-radius: 18px;
  padding: 28px;
}
.contact-card .subtitle { color: var(--teal); margin-bottom: 14px; }
.contact-card p { margin: 0; line-height: 1.6; }
.contact-card .big-link {
  font-size: 1.125rem;
  font-weight: 500;
}
.contact-card a {
  color: var(--carbon);
  text-decoration: none;
  border-bottom: 1px solid var(--teal);
}
.contact-card a:hover { color: var(--teal); }

.form-section {
  padding-bottom: 72px;
  background: linear-gradient(rgba(3, 166, 135, 0.07), rgba(3, 166, 135, 0.07)), var(--off-white);
}
.form-section .contact-card,
.form-section .form-card { border-color: rgba(3, 166, 135, 0.18); }
.form-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--off-white-2);
  border-radius: 22px;
  padding: clamp(24px, 5vw, 48px);
}

.form-card form, .form-card .form-success { position: relative; }

.form-stage[hidden] { display: none; }

.form-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .span-2 { grid-column: span 2; }
}

.field-group { display: flex; flex-direction: column; gap: 6px; }
.field-group label {
  font-weight: 500;
  font-size: 0.875rem;
}
.field-group label .optional {
  color: var(--carbon);
  font-weight: 400;
}

.field {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--carbon);
  background: var(--off-white);
  border: 1px solid var(--off-white-2);
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.field:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--surface);
}
.field.invalid { border-color: var(--red); }
select.field { appearance: none; background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23111111' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
textarea.field { resize: vertical; min-height: 120px; }

.phone-row { display: flex; gap: 8px; }
.phone-row .field { min-width: 0; }

.select { position: relative; }
.select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--carbon);
  text-align: left;
  background: var(--off-white);
  border: 1px solid var(--off-white-2);
  border-radius: 10px;
  padding: 12px 14px;
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.select-trigger:hover { border-color: var(--teal); }
.select.open .select-trigger { border-color: var(--teal); background: var(--surface); }
.select-trigger .placeholder { color: var(--off-white-3); }
.select-trigger .cc-chevron { color: var(--teal); }
.select.open .select-trigger .cc-chevron { transform: rotate(180deg); }
.select-menu {
  position: absolute;
  z-index: 40;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  color: var(--carbon);
  background: var(--surface);
  border: 1px solid var(--off-white-2);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.14);
  padding: 8px;
}
.select-menu[hidden] { display: none; }
.select-menu ul { list-style: none; margin: 0; padding: 0; max-height: 280px; overflow-y: auto; }
.select-option {
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.9375rem;
  cursor: pointer;
}
.select-option:hover, .select-option.highlight { background: var(--off-white); }
.select-option[aria-selected='true'] { background: var(--teal-soft); font-weight: 500; }

.phone-cc { position: relative; flex: 0 0 auto; }
.cc-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 122px;
  padding: 12px 10px 12px 12px;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--carbon);
  background: var(--off-white);
  border: 1px solid var(--off-white-2);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.cc-trigger:hover { border-color: var(--teal); }
.phone-cc.open .cc-trigger { border-color: var(--teal); background: var(--surface); }
.cc-code {
  font-variant-numeric: tabular-nums;
  flex: 1;
  text-align: left;
}
.cc-chevron {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  color: var(--teal);
  transition: transform 0.2s ease;
}
.phone-cc.open .cc-chevron { transform: rotate(180deg); }

.flag-frame {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 16px;
  width: 24px;
  background: var(--off-white-2);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.08);
}
.flag-frame--square { width: 16px; }
.flag-frame--nepal { width: 16px; background: #FFFFFF; }
.flag-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.flag-frame--nepal img { object-fit: contain; }

.cc-menu {
  position: absolute;
  z-index: 40;
  top: calc(100% + 6px);
  left: 0;
  width: min(310px, calc(100vw - 48px));
  color: var(--carbon);
  background: var(--surface);
  border: 1px solid var(--off-white-2);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.14);
  padding: 10px;
}
.cc-menu[hidden] { display: none; }
.cc-search {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--carbon);
  background: var(--off-white);
  border: 1px solid var(--off-white-2);
  border-radius: 999px;
  padding: 9px 16px;
}
.cc-search:focus { outline: none; border-color: var(--teal); background: var(--surface); }
.cc-list {
  max-height: 264px;
  overflow-y: auto;
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
}
.cc-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 0.9375rem;
  cursor: pointer;
}
.cc-option .flag-frame { height: 18px; width: 27px; }
.cc-option .flag-frame--square, .cc-option .flag-frame--nepal { width: 18px; }
.cc-option .cc-name {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cc-option .cc-dial {
  color: var(--off-white-4);
  font-variant-numeric: tabular-nums;
}
.cc-option:hover, .cc-option.highlight { background: var(--off-white); }
.cc-option[aria-selected='true'] { background: var(--teal-soft); }
.cc-option[aria-selected='true'] .cc-dial { color: var(--carbon); }
.cc-empty { padding: 12px 10px; color: var(--off-white-4); font-size: 0.875rem; }

.err {
  color: var(--red);
  font-size: 0.8125rem;
}

.err:empty { display: none; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.chip { position: relative; }
.chip input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}
.chip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border: 1px solid var(--off-white-2);
  border-radius: 999px;
  background: var(--off-white);
  font-size: 0.9375rem;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.chip span::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid var(--off-white-3);
  background: var(--surface);
  transition: background-color 0.15s ease, border-color 0.15s ease;
}
.chip:hover span { border-color: var(--teal); }
.chip input:checked + span {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--carbon);
  font-weight: 500;
}
.chip input:checked + span::before {
  background: var(--carbon);
  border-color: var(--carbon);
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8'%3E%3Cpath d='M1 4l2.7 2.7L9 1' fill='none' stroke='%23F1F2F2' stroke-width='1.8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.chip input:focus-visible + span { outline: 2px solid var(--teal); outline-offset: 2px; }

.checks { display: flex; flex-direction: column; gap: 12px; margin-top: 6px; }
.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  line-height: 1.5;
}
.check input[type='checkbox'] {
  accent-color: var(--teal);
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: 0 0 auto;
}
.check a { color: var(--carbon); text-decoration: underline; text-decoration-color: var(--teal); }
.check .fine { color: var(--off-white-4); font-size: 0.8125rem; }

.form-nav {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.form-note {
  margin: 24px 0 0;
  color: var(--off-white-3);
  font-size: 0.8125rem;
}

.form-feedback { margin-top: 16px; font-weight: 500; }
.form-feedback:empty { display: none; }
.form-feedback.error { color: var(--red); }
.form-feedback.ok { color: var(--teal); }

.form-success { position: relative; }
.form-success .headline-3 { margin-bottom: 12px; }
.form-success p { color: #333; max-width: 50ch; }

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.stage-indicator {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 28px;
}
.stage-dot {
  width: 34px;
  height: 4px;
  border-radius: 2px;
  background: var(--off-white-2);
  transition: background-color 0.2s ease;
}
.stage-dot.active { background: var(--teal); }
.stage-label { margin-left: 8px; font-size: 0.8125rem; color: var(--off-white-4); }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

.site-footer {
  position: relative;
  background: var(--carbon);
  color: var(--off-white);
  padding: 56px 0 40px;
  overflow: hidden;
}
.site-footer::after {
  content: '';
  position: absolute;
  top: 40px;
  right: 24px;
  width: 150px;
  height: 100px;
  background-image: radial-gradient(circle, rgba(241, 242, 242, 0.25) 1.2px, transparent 1.3px);
  background-size: 13px 13px;
}
.site-footer .logo img { height: 36px; width: auto; }
.footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 0.8fr; }
}
.site-footer .subtitle { color: var(--teal); margin-bottom: 12px; }
.site-footer p { margin: 0; line-height: 1.6; color: var(--off-white-2); font-size: 0.9375rem; }
.site-footer a { color: var(--off-white); text-decoration: none; border-bottom: 1px solid var(--teal); }
.site-footer a:hover { color: var(--teal); }
.footer-legal {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid #2a2a2a;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--off-white-3);
}
.footer-legal a { color: var(--off-white-3); border-bottom: none; }
.footer-legal a:hover { color: var(--off-white); }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.site-footer .footer-credit {
  margin: 40px 0 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--off-white-3);
  font-size: 0.8125rem;
}
.swiss-heart { width: 15px; height: 14px; flex: 0 0 auto; }
.req { color: var(--red); }

.grecaptcha-badge { visibility: hidden; }

.legal-main { padding: 48px 0 88px; }
.legal-main h1 { font-size: clamp(2rem, 5vw, 3rem); line-height: 1.08; margin-bottom: 8px; }
.legal-main .meta { color: var(--off-white-4); font-size: 0.875rem; margin-bottom: 40px; }
.legal-main h2 { font-weight: 500; font-size: 1.375rem; margin: 40px 0 12px; }
.legal-main p, .legal-main li { color: #333; font-size: 0.9375rem; line-height: 1.65; }
.legal-main a:not(.btn) { color: var(--carbon); text-decoration: underline; text-decoration-color: var(--teal); }

.error-main { padding: 96px 0 120px; }
.error-main .headline-1 { margin-bottom: 16px; }
.error-main p { color: var(--off-white-4); max-width: 46ch; margin: 0 0 32px; }
.error-main a:not(.btn) { color: var(--carbon); }

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background: var(--surface);
  border-top: 1px solid var(--off-white-2);
  box-shadow: 0 -4px 24px rgba(17, 17, 17, 0.1);
  padding: 20px 24px;
}
.cookie-banner[hidden] { display: none; }
.cb-inner { max-width: 920px; margin: 0 auto; }
.cb-view { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.cb-view[hidden] { display: none; }
.cb-text { flex: 1 1 320px; }
.cb-title { margin: 0 0 4px; font-weight: 500; font-size: 0.9375rem; }
.cb-body { margin: 0; color: var(--off-white-4); font-size: 0.875rem; }
.cb-body a { color: var(--teal); }
.cb-actions { display: flex; flex-wrap: wrap; gap: 10px; flex: 0 0 auto; }
.cb-btn {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--off-white-4);
  background: var(--surface);
  border: 1px solid var(--off-white-2);
  border-radius: 999px;
  padding: 9px 18px;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.cb-btn:hover { border-color: var(--carbon); color: var(--carbon); }
.cb-btn-primary { background: var(--teal); border-color: var(--teal); color: var(--carbon); font-weight: 500; }
.cb-btn-primary:hover { background: #05b995; color: var(--carbon); }
.cb-row { display: flex; align-items: flex-start; gap: 10px; margin-top: 10px; cursor: pointer; }
.cb-row input { accent-color: var(--teal); width: 16px; height: 16px; margin-top: 3px; flex: 0 0 auto; }
.cb-row-disabled { cursor: not-allowed; opacity: 0.6; }
.cb-row-title { margin: 0; font-size: 0.875rem; }
.cb-row-desc { margin: 0; color: var(--off-white-3); font-size: 0.75rem; }

.coming-section { background: var(--surface); }
.coming-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .coming-grid { grid-template-columns: repeat(3, 1fr); }
}
.coming-card {
  position: relative;
  background: var(--off-white);
  border: 1px solid var(--off-white-2);
  border-radius: 18px;
  padding: 28px;
  overflow: hidden;
}
.coming-card::after {
  content: '';
  position: absolute;
  top: 18px;
  right: 18px;
  width: 64px;
  height: 46px;
  background-image: var(--dots);
  background-size: 11px 11px;
  opacity: 0.35;
}
.coming-card .subtitle { color: var(--off-white-4); margin: 14px 0 10px; font-size: 0.8125rem; }
.coming-card p:last-child { margin: 0; color: #333; font-size: 0.9375rem; line-height: 1.55; }
.ill-stat { height: 72px; width: 72px; }
.clock-min { animation: sun-rotate 9s linear infinite; transform-origin: 32px 32px; }
.clock-hour { animation: sun-rotate 54s linear infinite; transform-origin: 32px 32px; }
.pin-ping { animation: pin-ping 2.6s ease-out infinite; transform-box: fill-box; transform-origin: center; }
@keyframes pin-ping {
  0% { transform: scale(0.5); opacity: 0.8; }
  70% { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(1.25); opacity: 0; }
}
.ill { width: 60px; height: 60px; }
.cart-drop { animation: cart-drop 5.6s ease-in infinite; }
.cart-drop-b { animation-delay: 1s; }
@keyframes cart-drop {
  0% { transform: translateY(0); opacity: 0; }
  4% { opacity: 1; }
  16% { transform: translateY(26px); opacity: 1; }
  20% { transform: translateY(27px); opacity: 0; }
  100% { transform: translateY(27px); opacity: 0; }
}
.cart-body { animation: cart-bounce 5.6s ease-in-out infinite; transform-box: fill-box; transform-origin: 50% 100%; }
@keyframes cart-bounce {
  0%, 32% { transform: translateY(0); }
  36% { transform: translateY(-2.5px); }
  40% { transform: translateY(0); }
  43% { transform: translateY(-1px); }
  46%, 100% { transform: translateY(0); }
}
.hs-wave { opacity: 0; animation: hs-wave 2.8s ease-out infinite; }
.hs-wave2 { animation-delay: 0.3s; }
@keyframes hs-wave {
  0% { opacity: 0; }
  12% { opacity: 1; }
  42% { opacity: 0; }
  100% { opacity: 0; }
}
.t-dot { animation: t-dot 1.5s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
.t-dot2 { animation-delay: 0.18s; }
.t-dot3 { animation-delay: 0.36s; }
@keyframes t-dot {
  0%, 55%, 100% { transform: translateY(0); opacity: 0.5; }
  25% { transform: translateY(-2.5px); opacity: 1; }
}
@keyframes ill-bubble {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.09); }
}
.ill-spin { animation: ill-spin 5.5s ease-in-out infinite alternate; transform-origin: 26px 38px; }
@keyframes ill-spin {
  from { transform: scaleX(1); }
  to { transform: scaleX(0.25); }
}
@keyframes ill-bubble {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.09); }
}
.newsletter-panel {
  margin-top: 20px;
  position: relative;
  overflow: hidden;
  background: #05836A;
  border-radius: 18px;
  padding: clamp(24px, 4vw, 40px);
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  color: var(--off-white);
}
@media (min-width: 1024px) {
  .newsletter-panel { grid-template-columns: 1fr 1fr; align-items: start; }
}
.np-ill {
  width: 210px;
  height: auto;
  margin-top: 18px;
  opacity: 0.85;
}
.np-ill path { fill: var(--off-white); }
.np-ill path[stroke] { stroke: var(--off-white); fill: none; }
.ill-plane { animation: ill-float 4.5s ease-in-out infinite alternate; transform-box: fill-box; transform-origin: center; }
@keyframes ill-float {
  from { transform: translate(0, 3px) rotate(2deg); }
  to { transform: translate(7px, -5px) rotate(-4deg); }
}
.np-trail { animation: trail-flow 1.1s linear infinite; }
@keyframes trail-flow {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -8; }
}
.np-text .subtitle { color: var(--off-white); opacity: 0.7; }
.np-text h3 {
  font-size: clamp(1.375rem, 2.4vw, 1.75rem);
  line-height: 1.15;
  margin: 10px 0 10px;
  max-width: 22ch;
}
.np-sub { margin: 0; font-size: 0.9375rem; color: rgba(255, 255, 255, 0.82); max-width: 44ch; }
.np-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 639.98px) {
  .np-grid { grid-template-columns: 1fr; }
}
.np-grid .span-2 { grid-column: span 2; }
@media (max-width: 639.98px) {
  .np-grid .span-2 { grid-column: span 1; }
}
.np-grid .field-group label { color: var(--off-white); }
.np-grid .field-group label .optional { color: rgba(255, 255, 255, 0.65); }
.check-disabled { opacity: 0.55; cursor: not-allowed; }
.check-disabled input { cursor: not-allowed; }
.np-grid .field {
  background: var(--surface);
  border-color: transparent;
}
.np-grid .field:focus { border-color: var(--carbon); }
.np-submit { margin-top: 20px; }
.np-check { font-size: 0.8125rem; margin-top: 20px; color: rgba(255, 255, 255, 0.88); }
.np-check input[type='checkbox'] { accent-color: var(--off-white); }
.np-check a { color: var(--off-white); text-decoration-color: var(--off-white); }
.np-action .err { color: #FFD2C7; display: block; margin-top: 8px; }
.np-action .err:empty { display: none; }
.np-success h3 { font-size: 1.375rem; margin-bottom: 8px; }
.np-success p { margin: 0; color: rgba(255, 255, 255, 0.82); }



.grid-2 {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  margin: 24px 0 8px;
}
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
}
.doc-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  background: var(--surface);
  border: 1px solid var(--off-white-2);
  border-radius: 18px;
  padding: 24px 28px;
  margin-top: 24px;
}
.doc-icon { width: 44px; height: 44px; flex: 0 0 auto; }
.doc-info { flex: 1 1 200px; }
.doc-title { margin: 0; font-weight: 500; }
.doc-meta { margin: 2px 0 0; color: var(--off-white-4); font-size: 0.8125rem; }

.page-ill { width: 250px; height: auto; margin: 6px 0 34px; }
.page-ill-s { width: 150px; }
.page-ill-w { width: 260px; }
.turbine-rotor { animation: sun-rotate 3.6s linear infinite; transform-origin: 112px 26px; }
.sun-rays { animation: sun-rotate 26s linear infinite; transform-origin: 172px 16px; }
@keyframes sun-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.sun-core { animation: sun-glow 3.2s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
@keyframes sun-glow {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.18); opacity: 0.85; }
}
.tree-sway { transform-box: fill-box; transform-origin: 50% 100%; }
.t1 { animation: tree-sway 5s ease-in-out infinite alternate; }
.t2 { animation: tree-sway 6.4s ease-in-out infinite alternate-reverse; }
.t3 { animation: tree-sway 5.6s ease-in-out infinite alternate; }
@keyframes tree-sway {
  from { transform: rotate(-2.5deg); }
  to { transform: rotate(2.5deg); }
}
.heart-beat {
  animation: heart-beat 2.3s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}
@keyframes heart-beat {
  0%, 48%, 100% { transform: scale(1); }
  12% { transform: scale(1.16); }
  24% { transform: scale(1); }
  34% { transform: scale(1.1); }
}
@keyframes person-breath {
  0%, 100% { transform: scale(1); }
  35% { transform: scale(1.045); }
}
@media (prefers-reduced-motion: reduce) {
  .t1, .t2, .t3, .sun-rays, .sun-core, .turbine-rotor, .heart-beat { animation: none; }
}

.country-select { position: relative; }
.country-select .cs-trigger {
  width: 100%;
  justify-content: flex-start;
}
.cs-name {
  flex: 1;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.country-select .cs-menu { width: min(360px, 100%); }
@media (prefers-reduced-motion: reduce) {
  .reveal.in .num .count + em { animation: none; }
}
