:root{
  --ink: #0b1220;
  --navy: #0b1f3a;
  --accent: #2aa6b3;
  --bg: #ffffff;
  --muted: rgba(0,0,0,.02);

  --max: 1120px;
  --pad-mobile: 24px;
  --pad-desktop: 56px;

  --border: rgba(0,0,0,.10);
  --border-soft: rgba(0,0,0,.06);
}

*{
  box-sizing: border-box;
}

html{
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern","liga","clig";
}

body{
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

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

a:hover{
  opacity: .9;
}

.wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-mobile);
}

/* =========================
   NAV
========================= */

.nav{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}

.nav__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  gap: 16px;
}

.brand{
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.brand--logo{
  display: inline-flex;
  align-items: center;
}

.brand__img{
  height: 44px;
  width: auto;
  display: block;
}

.nav__links{
  display: none;
  gap: 26px;
  font-size: 14px;
  color: rgba(0,0,0,.70);
}

.nav__links a{
  padding: 6px 0;
}

/* =========================
   BUTTONS
========================= */

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  font-weight: 650;
  font-size: 14px;
  border: 1px solid transparent;
  border-radius: 0;
  white-space: nowrap;
  cursor: pointer;
}

.btn--primary{
  background: var(--navy);
  color: #fff;
}

.btn--accent{
  background: var(--accent);
  color: #fff;
}

.btn--ghost{
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.35);
}

.btn--outline{
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}

/* =========================
   HERO
========================= */

.hero{
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(rgba(0,0,0,.62), rgba(0,0,0,.62)),
    url("assets/hero-crevasse.png") center/cover no-repeat;
  transform: scale(1.02);
}

.hero__inner{
  position: relative;
  padding: 16px 0 24px;
  max-width: 720px;
}

.kicker{
  color: rgba(255,255,255,.78);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero__title{
  margin: 14px 0 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-size: 44px;
}

.hero__sub{
  margin: 18px 0 0;
  color: rgba(255,255,255,.86);
  font-size: 18px;
  max-width: 52ch;
}

.hero__cta{
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero__note{
  margin-top: 24px;
  color: rgba(255,255,255,.65);
  font-size: 13px;
}

/* =========================
   SECTIONS
========================= */

.section{
  padding: 24px 0;
}

.section--muted{
  background: var(--muted);
}

.section__header{
  margin-bottom: 24px;
}

.section__header h2{
  margin: 0;
  font-size: 30px;
  letter-spacing: -0.01em;
}

/* =========================
   AGREED ADDITION ONLY
========================= */

.section__header h3{
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.01em;
  font-weight: 600;
}

.section__header p{
  margin: 12px 0 0;
  color: rgba(0,0,0,.72);
}

/* =========================
   GRID + CARDS
========================= */

.grid{
  margin-top: 20px;
  display: grid;
  gap: 14px;
}

.grid--2{
  grid-template-columns: 1fr;
}

.grid--3{
  grid-template-columns: 1fr;
}

.card{
  border: 1px solid var(--border);
  background: #fff;
  padding: 22px;
}

.card h3{
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.card p{
  margin: 10px 0 0;
  color: rgba(0,0,0,.72);
}

.card ul{
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(0,0,0,.72);
}

.card li{
  margin: 6px 0;
}

/* Trial card — match btn--accent background + white text */
.card--trial{
  background: var(--accent);
  color: #fff;
}

.card--trial h3{
  color: #fff;
}

.card--trial p,
.card--trial ul,
.card--trial li{
  color: rgba(255,255,255,.86);
}

/* =========================
   CONTACT
========================= */

.actions{
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.smallprint{
  margin-top: 14px;
  font-size: 13px;
  color: rgba(0,0,0,.60);
}

/* =========================
   FOOTER
========================= */

.footer{
  border-top: 1px solid var(--border-soft);
  padding: 28px 0;
  color: rgba(0,0,0,.60);
  font-size: 13px;
}

.footer__inner{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links{
  display: flex;
  gap: 18px;
}

/* =========================
   SUBTLE (NEW)
========================= */

.subtle{
  margin-top: 6px;
  color: rgba(0,0,0,.55);
  font-size: 14px;
}

/* =========================
   RESPONSIVE
========================= */

@media (min-width: 860px){

  .wrap{
    padding: 0 var(--pad-desktop);
  }

  .nav__links{
    display: flex;
  }

  .hero__title{
    font-size: 62px;
  }

  .hero__inner{
    padding: 20px 0 28px;
  }

  .section{
    padding: 32px 0;
  }

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

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

  .footer__inner{
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (max-width: 420px){
  .hero__title{
    font-size: 38px;
  }
}
