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

:root {
  --g: #1d9e75;
  --gd: #0f6e56;
  --deep: #04342c;
  --light: #5dcaa5;
  --pale: #f0faf6;
  --border: #e1f5ee;
  --text: #04342c;
  --muted: #666;
  --white: #fff;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-bar {
  height: 2px;
  background: linear-gradient(
    to right,
    #0f6e56,
    #1d9e75,
    #5dcaa5,
    #1d9e75,
    #0f6e56
  );
  width: 100%;
}

/* TICKER */
.ticker {
  background: linear-gradient(135deg, #04342c 0%, #0f6e56 50%, #000 100%);
  padding: 7px 0;
  overflow: hidden;
}
.ticker-track {
  display: inline-flex;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.ticker-track span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.85);
}
.ticker-track .dot {
  color: var(--light);
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* HEADER */
.header {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #1d9e75 0%, #04342c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-fast {
  border-bottom: 2px solid #5dcaa5;
  padding-bottom: 1px;
}
.header-pills {
  display: flex;
  gap: 8px;
}
.pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #666;
  border: 1px solid var(--border);
  padding: 7px 14px;
}
.pill-active {
  color: var(--text);
  border-color: var(--g);
  background: var(--pale);
}
.pill-icon {
  width: 12px;
  height: 12px;
}
@media (max-width: 480px) {
  .header-pills {
    display: none;
  }
}

/* HERO */
.hero {
  position: relative;
  height: 100svh;
  min-height: 580px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(4, 52, 44, 0.92) 0%,
    rgba(9, 80, 65, 0.65) 40%,
    rgba(0, 0, 0, 0.15) 100%
  );
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding-bottom: 60px;
  max-width: 680px;
}
.tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--light);
  background: rgba(29, 158, 117, 0.15);
  border: 1px solid rgba(93, 202, 165, 0.3);
  padding: 4px 10px;
  margin-bottom: 18px;
}
.hero-h1 {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.h1-line1 {
  font-size: clamp(3.5rem, 12vw, 8rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.9;
  color: #fff;
}
.h1-line2 {
  font-size: clamp(3.5rem, 12vw, 8rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 2px var(--light);
}
.hero-desc {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
  max-width: 420px;
  margin-bottom: 30px;
  line-height: 1.65;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-order {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #1d9e75 0%, #0f6e56 100%);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  padding: 14px 28px;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(29, 158, 117, 0.35);
  transition: all 0.2s;
}
.btn-order:hover {
  background: linear-gradient(135deg, #5dcaa5 0%, #1d9e75 100%);
}
.btn-partner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  padding: 14px 28px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.2s;
}
.btn-partner:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-chevron {
  width: 13px;
  height: 13px;
}

/* LOCATION BANNER */
.loc-banner {
  background: linear-gradient(
    135deg,
    rgba(4, 52, 44, 0.97),
    rgba(9, 80, 65, 0.97)
  );
  padding: 11px 0;
}
.loc-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.loc-left {
  display: flex;
  align-items: center;
  gap: 6px;
}
.loc-icon {
  width: 12px;
  height: 12px;
  color: var(--light);
  flex-shrink: 0;
}
.loc-city {
  font-size: 11px;
  font-weight: 700;
  color: var(--light);
  letter-spacing: 0.08em;
}
.loc-sep {
  font-size: 11px;
  color: rgba(93, 202, 165, 0.5);
}
.loc-note {
  font-size: 11px;
  color: rgba(93, 202, 165, 0.45);
}
.loc-btn {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light);
  background: none;
  border: 1px solid rgba(93, 202, 165, 0.3);
  padding: 4px 12px;
  text-decoration: none;
  transition: all 0.2s;
}
.loc-btn:hover {
  border-color: var(--light);
  background: rgba(93, 202, 165, 0.1);
}

/* ABOUT */
.about-section {
  padding: 80px 0;
  background: var(--white);
}
.section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--g);
  margin-bottom: 6px;
}
.section-label-light {
  color: var(--light);
}
.section-title {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 48px;
}
.section-title-light {
  color: #fff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}
.feature-card {
  padding: 32px 28px;
  border-right: 1px solid var(--border);
  transition: background 0.15s;
}
.feature-card:last-child {
  border-right: none;
}
.feature-card:hover {
  background: var(--pale);
}
.feature-icon-wrap {
  width: 40px;
  height: 40px;
  background: var(--pale);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-icon {
  width: 18px;
  height: 18px;
  color: var(--g);
}
.feature-card h3 {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.4;
}
.feature-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

/* DEMO */
.demo-section {
  padding: 80px 0;
  background: var(--deep);
}
.shots-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 10px;
  margin-top: 40px;
}
.shot-main {
  position: relative;
  border: 1px solid rgba(29, 158, 117, 0.15);
  overflow: hidden;
}
.shot-main img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: top;
  min-height: 0;
  max-height: none;
}
.shots-side {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.shot-sm {
  position: relative;
  border: 1px solid rgba(29, 158, 117, 0.15);
  overflow: hidden;
  flex: 1;
}
.shot-sm img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: top;
  min-height: 100px;
}
.shot-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(4, 52, 44, 0.96), transparent);
  padding: 20px 12px 9px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--light);
  display: flex;
  align-items: center;
  gap: 5px;
}
.shot-label-icon {
  width: 10px;
  height: 10px;
}
@media (max-width: 680px) {
  .shots-grid {
    grid-template-columns: 1fr;
  }
  .shots-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

/* WAITLIST & PARTNER SECTIONS */
.waitlist-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.waitlist-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: start;
}
@media (max-width: 780px) {
  .waitlist-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.promise-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.promise-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #555;
  line-height: 1.65;
}
.promise-row strong {
  color: var(--text);
}
.promise-icon {
  width: 16px;
  height: 16px;
  color: var(--g);
  flex-shrink: 0;
  margin-top: 3px;
}

/* FORM */
.wform {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--g);
  padding: 36px 32px;
}
@media (max-width: 480px) {
  .wform {
    padding: 24px 18px;
  }
}
.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 520px) {
  .frow {
    grid-template-columns: 1fr;
  }
}
.fgroup {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}
.fgroup label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text);
}
.req {
  color: #e05252;
}
.opt {
  color: #aaa;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 11px;
}
.fgroup input,
.fgroup textarea {
  width: 100%;
  padding: 11px 14px;
  font-size: 13px;
  font-family: "Inter", sans-serif;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: border-color 0.15s;
  border-radius: 0;
  -webkit-appearance: none;
}
.fgroup input:focus,
.fgroup textarea:focus {
  border-color: var(--g);
}
.fgroup textarea {
  resize: vertical;
  min-height: 90px;
}
.sel-wrap {
  position: relative;
}
.sel-wrap select {
  width: 100%;
  padding: 11px 14px;
  font-size: 13px;
  font-family: "Inter", sans-serif;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  cursor: pointer;
  transition: border-color 0.15s;
}
.sel-wrap select:focus {
  border-color: var(--g);
}
.sel-icon {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  color: var(--g);
  pointer-events: none;
}

/* CHECKBOXES */
.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.cb-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.15s;
  user-select: none;
}
.cb-item:hover {
  border-color: var(--g);
  background: var(--pale);
}
.cb-item:has(input:checked) {
  border-color: var(--g);
  background: var(--pale);
}
.cb-item input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: var(--g);
  cursor: pointer;
  flex-shrink: 0;
  border: none;
  padding: 0;
  margin: 0;
  border-radius: 0;
}
.cb-item span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text);
}

.btn-submit {
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, #1d9e75 0%, #0f6e56 100%);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(29, 158, 117, 0.3);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
  border-radius: 0;
}
.btn-submit:hover:not(:disabled) {
  background: linear-gradient(135deg, #5dcaa5 0%, #1d9e75 100%);
}
.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.spinner {
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.hidden {
  display: none !important;
}

/* SUCCESS */
.success-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--g);
  padding: 52px 32px;
  text-align: center;
}
.success-icon-box {
  width: 52px;
  height: 52px;
  background: var(--pale);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.success-icon {
  width: 22px;
  height: 22px;
  color: var(--g);
}
.success-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--g);
  margin-bottom: 10px;
}
.success-title {
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
}
.success-sub {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 340px;
  margin: 0 auto;
}

/* FOOTER */
.footer {
  background: linear-gradient(135deg, #04342c 0%, #000000 60%);
  color: #fff;
}
.footer-inner {
  padding: 48px 24px;
}
.footer-top {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media (min-width: 640px) {
  .footer-top {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.footer-logo {
  font-size: 22px;
  display: inline-block;
  margin-bottom: 6px;
}
.footer-tagline {
  font-size: 13px;
  color: rgba(159, 225, 203, 0.7);
  margin-top: 4px;
}
.footer-cities {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(93, 202, 165, 0.4);
  margin-top: 6px;
}
.fcity-icon {
  width: 11px;
  height: 11px;
}
.footer-support {
  font-size: 13px;
  color: rgba(159, 225, 203, 0.7);
}
.footer-support-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(93, 202, 165, 0.5);
  margin-bottom: 8px;
}
.footer-support p {
  margin-bottom: 4px;
}
.footer-copy-row {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(93, 202, 165, 0.15);
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 11px;
  color: rgba(93, 202, 165, 0.35);
}
@media (min-width: 640px) {
  .footer-copy-row {
    flex-direction: row;
    justify-content: space-between;
  }
}
