:root{
  --bg: #000010;
  --panel: rgba(255,255,255,0.04);
  --text: #F0F0F0;
  --muted: #A0B0B0;

  --teal: #106080;
  --sea: #3090A0;

  --radius: 16px;
  --shadow: 0 10px 30px rgba(0,0,0,0.45);
  --max: 1220px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background:
    radial-gradient(1000px 500px at 20% 0%, rgba(48,144,160,0.18), transparent 60%),
    radial-gradient(900px 450px at 85% 10%, rgba(128,176,64,0.12), transparent 60%),
    var(--bg);
  color: var(--text);
  line-height: 1.45;
}

a{ color: inherit; text-decoration: none; }
a:hover{ opacity: 0.92; }

.container{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.muted{ color: var(--muted); }
.small{ font-size: 12px; }

/* -------------------------------------------------
   HERO
-------------------------------------------------- */
.hero{
  padding: 36px 0 18px;
}

.hero-grid{
  display: block;
}

.hero-copy{
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  column-gap: clamp(24px, 3vw, 48px);
  align-items: center;
}

.hero-content{
  max-width: 740px;
  min-width: 0;
}

.brand-logo{
  justify-self: end;
  align-self: center;
  width: clamp(560px, 40vw, 760px);
  max-width: 100%;
  height: auto;
  transform-origin: right center;
  opacity: 0.98;
  filter: drop-shadow(0 18px 48px rgba(0,0,0,0.55));
}

@media (min-width: 1281px){
  .brand-logo{
    transform-origin: 98% center;
    transform: translateX(90px) scale(1.64);
  }
}

@media (max-width: 1280px){
  .hero-copy{
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    column-gap: 24px;
  }

  .brand-logo{
    width: clamp(500px, 42vw, 680px);
    transform: none;
  }
}

.hero + .section{
  padding-top: 16px;
}

.hero-headline{
  margin: 0;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero-tagline{
  margin: 10px 0 0;
  font-size: 18px;
  font-weight: 600;
  color: rgba(240,240,240,0.84);
}

.hero-subhead{
  margin: 14px 0 0;
  font-size: 16px;
  color: rgba(240,240,240,0.80);
  max-width: 64ch;
  text-wrap: pretty;
}

/* Buttons */
.cta-row{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 0;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 14px;
  background: linear-gradient(135deg, var(--sea), var(--teal));
  color: var(--bg);
  border: 1px solid rgba(255,255,255,0.0);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover{ transform: translateY(-1px); box-shadow: 0 12px 36px rgba(0,0,0,0.55); }
.btn:active{ transform: translateY(0px); }

.btn-ghost{
  background: transparent;
  border: 1px solid rgba(255,255,255,0.16);
  color: var(--text);
  box-shadow: none;
}

/* Pills */
.pill-row{
  margin-top: 14px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pill{
  font-size: 12px;
  color: rgba(240,240,240,0.76);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
}

/* Sections */
.section{ padding: 48px 0; }

.section-alt{
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.00));
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.section-head h2{
  font-size: 28px;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.section-head p{
  color: rgba(240,240,240,0.80);
  max-width: 100ch;
  margin: 0 0 22px;
  text-wrap: normal;
}

#what .section-head p{
  max-width: none;
}

/* Cards */
.cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.card{
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 18px;
}

.card h3{ margin: 0 0 8px; font-size: 16px; }
.card p{ margin: 0; color: rgba(240,240,240,0.78); }

/* Two-column lists */
.grid-two{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.list-card{
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 18px;
}

.list-card h3{ margin: 0 0 10px; font-size: 16px; }
.list-card ul{
  margin: 0;
  padding-left: 18px;
  color: rgba(240,240,240,0.80);
}

/* Callouts */
.callout{
  margin-top: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 18px;
}

/* Fit section image */
.fit-image{
  width: 100%;
  border-radius: var(--radius);
  margin-top: 18px;
  object-fit: cover;
  max-height: 400px;
  border: 1px solid rgba(255,255,255,0.08);
}

/* -------------------------------------------------
   PRICING
-------------------------------------------------- */
.pricing-cards{
  gap: 16px;
}

.pricing-card{
  display: flex;
  flex-direction: column;
  padding: 24px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.pricing-card:hover{
  transform: translateY(-2px);
  border-color: rgba(48,144,160,0.3);
}

.pricing-featured{
  border-color: rgba(48,144,160,0.4);
  background: rgba(48,144,160,0.08);
  position: relative;
}

.pricing-featured::before{
  content: "Most common";
  position: absolute;
  top: -10px;
  left: 24px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, var(--sea), var(--teal));
  color: var(--bg);
  padding: 3px 10px;
  border-radius: 999px;
}

.pricing-label{
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--sea);
  margin-bottom: 8px;
}

.pricing-fit{
  font-size: 14px;
  color: rgba(240,240,240,0.80);
  margin: 0 0 14px;
  line-height: 1.4;
}

.pricing-list{
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: rgba(240,240,240,0.80);
}

.pricing-list li{
  padding: 5px 0;
  padding-left: 18px;
  position: relative;
}

.pricing-list li::before{
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sea);
  font-weight: 700;
}

/* Form */
.form{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 18px;
}

.field{ display: grid; gap: 6px; }

label{ font-size: 12px; color: rgba(240,240,240,0.78); }

input{
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.18);
  color: var(--text);
  outline: none;
  font-family: inherit;
  font-size: 14px;
}

input:focus{
  border-color: rgba(48,144,160,0.55);
  box-shadow: 0 0 0 4px rgba(48,144,160,0.12);
}

.actions{
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.actions.full{ grid-column: 1 / -1; }

/* Thank-you */
.thankyou{
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(48,144,160,0.12);
  border: 1px solid rgba(48,144,160,0.28);
  margin-bottom: 12px;
}

/* Footer */
.footer{
  padding: 28px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner{
  display: grid;
  gap: 10px;
  justify-items: start;
}

.footer-logo{
  height: 22px;
  width: auto;
  opacity: 0.95;
}

.footer-cta{ margin-top: 14px; }

.footer a{
  color: var(--sea);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer a:hover{
  opacity: 0.85;
}

/* Mobile stack */
@media (max-width: 900px){
  .hero-copy{
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-content{
    order: 2;
    max-width: none;
  }

  .brand-logo{
    order: 1;
    justify-self: center;
    align-self: center;
    width: min(490px, 82vw);
    margin-top: 0;
    margin-bottom: 8px;
  }

  .hero-headline,
  .hero-tagline,
  .hero-subhead,
  .cta-row,
  .pill-row{
    grid-column: 1;
  }

  .cards{ grid-template-columns: 1fr; }
  .grid-two{ grid-template-columns: 1fr; }
}

@media (max-width: 640px){
  .hero{
    padding-top: 24px;
    padding-bottom: 12px;
  }

  .hero-copy{
    gap: 6px;
  }

  .brand-logo{
    width: min(520px, 92vw);
    height: clamp(132px, 38vw, 170px);
    object-fit: cover;
    object-position: center 50%;
    margin-bottom: 2px;
  }

  .hero + .section{
    padding-top: 10px;
  }
}

@media (max-width: 760px){
  .form{ grid-template-columns: 1fr; }
}
