@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("/fonts/PlusJakartaSans.woff2") format("woff2");
  font-weight: 200 800;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Serif";
  src: url("/fonts/InstrumentSerif-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

:root {
  --green: #0f3d2e;
  --green-2: #16503d;
  --coral: #ff6a4d;
  --coral-text: #be3b24;
  --sage: #a9bbaa;
  --mint: #8fd1b3;
  --paper: #f6f2ea;
  --paper-2: #efe9dd;
  --surface: #fff;
  --line: #e4ded2;
  --ink: #16211c;
  --muted: #5b6660;
  --radius: 14px;
  --wrap: 1200px;
  --gutter: clamp(20px, 4vw, 40px);
  --sans:
    "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --shadow:
    0 1px 2px rgb(22 33 28 / 0.04), 0 12px 32px -8px rgb(22 33 28 / 0.12);
  --shadow-lg:
    0 2px 4px rgb(22 33 28 / 0.04), 0 30px 60px -20px rgb(15 61 46 / 0.28);
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 17px/1.6 var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}
h1,
h2,
h3 {
  margin: 0;
  color: var(--green);
  letter-spacing: -0.025em;
  font-weight: 750;
  text-wrap: balance;
}
p {
  margin: 0;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wrap {
  width: 100%;
  max-width: calc(var(--wrap) + 2 * var(--gutter));
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--green);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  z-index: 100;
}
.skip:focus {
  left: 8px;
}
:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  font: 650 16px/1 var(--sans);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.btn:active {
  transform: scale(0.98);
}
.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 8px 20px -8px rgb(15 61 46 / 0.55);
}
.btn-primary:hover {
  background: var(--green-2);
}
.btn-ghost {
  border-color: rgb(15 61 46 / 0.22);
  color: var(--green);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--green);
  background: rgb(15 61 46 / 0.04);
}
.btn-coral {
  background: var(--coral);
  color: var(--ink);
}
.btn-coral:hover {
  background: #ff7d63;
}
.btn-sm {
  height: 42px;
  padding: 0 18px;
  font-size: 15px;
}
.btn-block {
  width: 100%;
}
.btn .sm {
  display: none;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}
.nav.scrolled {
  background: rgb(246 242 234 / 0.86);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.nav-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.logo img {
  height: 32px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 34px;
}
.nav-links a,
.nav-login,
.lang {
  text-decoration: none;
  font-weight: 550;
  font-size: 15px;
  color: var(--ink);
  opacity: 0.82;
  transition: opacity 0.2s;
}
.nav-links a:hover,
.nav-login:hover,
.lang:hover {
  opacity: 1;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 22px;
}
.lang {
  font-size: 13px;
  letter-spacing: 0.06em;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 10px;
}

/* Hero */
.hero {
  overflow-x: clip;
  padding: clamp(28px, 6vw, 72px) 0 clamp(64px, 8vw, 110px);
}
.hero-in {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.eyebrow,
.kicker {
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral-text);
}
.hero h1 {
  font-size: clamp(44px, 6.3vw, 84px);
  line-height: 1;
  letter-spacing: -0.045em;
  word-spacing: 0.04em;
  margin: 18px 0 24px;
  font-weight: 780;
}
.lead {
  font-size: clamp(18px, 1.6vw, 21px);
  color: var(--muted);
  max-width: 33em;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 26px;
  font-size: 14px;
  color: var(--muted);
}
.trust li,
.includes li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust svg,
.includes svg {
  width: 18px;
  height: 18px;
  color: var(--green);
  flex: none;
}

.hero-art {
  position: relative;
  padding-bottom: 12%;
}
.hero-objects {
  position: absolute;
  right: -7%;
  bottom: -9%;
  width: 60%;
  height: auto;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 18px 24px rgb(15 61 46 / 0.08));
}

/* Board (HTML product preview) */
.board {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgb(22 33 28 / 0.06);
  overflow: hidden;
  font-size: 13px;
}
.board-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 34px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  background: #fbf9f5;
}
.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #e2dccf;
}
.board-url {
  margin: 0 auto;
  transform: translateX(-20px);
  font-size: 11.5px;
  color: var(--muted);
  background: var(--paper);
  padding: 3px 14px;
  border-radius: 999px;
}
.board-body {
  display: flex;
  min-height: 330px;
}
.board-side {
  width: 58px;
  flex: none;
  background: var(--green);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
}
.board-side img {
  width: 30px;
  height: auto;
  margin-bottom: 8px;
}
.board-side i {
  width: 22px;
  height: 6px;
  border-radius: 3px;
  background: rgb(255 255 255 / 0.18);
}
.board-side i:first-of-type {
  background: rgb(255 255 255 / 0.55);
}
.board-main {
  flex: 1;
  padding: 18px 18px 22px;
  min-width: 0;
  background: #fcfbf8;
}
.board-title {
  font-weight: 750;
  font-size: 18px;
  color: var(--green);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.col {
  background: var(--paper);
  border-radius: 10px;
  padding: 10px;
}
.col-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 650;
  font-size: 12px;
  color: var(--ink);
  margin-bottom: 9px;
}
.col-head span {
  font-size: 11px;
  color: var(--muted);
  background: var(--surface);
  border-radius: 999px;
  padding: 1px 7px;
}
.col ul {
  display: grid;
  gap: 8px;
}
.card {
  background: var(--surface);
  border-radius: 8px;
  padding: 9px 10px;
  box-shadow: 0 1px 2px rgb(22 33 28 / 0.06);
  display: grid;
  gap: 1px;
}
.card-name {
  font-weight: 650;
  font-size: 12.5px;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-step {
  font-size: 11.5px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.chip {
  justify-self: start;
  margin-top: 6px;
  font-size: 10.5px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--paper-2);
  color: var(--muted);
  white-space: nowrap;
}
.chip.coral {
  background: #ffe6e0;
  color: var(--coral-text);
}
.chip.mint {
  background: #dcf1e7;
  color: var(--green);
}

/* Sections */
section {
  position: relative;
}
.sec-head {
  max-width: 720px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.sec-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.sec-head h2,
.why h2 {
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  word-spacing: 0.03em;
  margin-top: 14px;
}
.sec-head p:not(.kicker) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

.why {
  background: var(--green);
  color: #eaf1ec;
  padding: clamp(72px, 9vw, 120px) 0;
}
.why-in {
  max-width: 860px;
  text-align: center;
}
.why .kicker {
  color: var(--mint);
}
.why h2 {
  color: #fff;
  font-size: clamp(34px, 5vw, 60px);
}
.why-p {
  margin: 24px auto 0;
  font-size: clamp(18px, 1.7vw, 21px);
  color: rgb(234 241 236 / 0.82);
  max-width: 40em;
}

.features {
  padding: clamp(80px, 10vw, 140px) 0 clamp(56px, 7vw, 96px);
}
.spots {
  display: grid;
  gap: clamp(24px, 3vw, 32px);
  margin-bottom: clamp(24px, 3vw, 32px);
}
.spot {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 80px);
  background: var(--surface);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 48px);
  box-shadow: var(--shadow);
}
.spot:nth-child(even) .spot-art {
  order: 2;
}
.spot-art {
  background: var(--paper);
  border-radius: 18px;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.spot-art img {
  width: 78%;
  height: auto;
}
.spot-copy h3 {
  font-size: clamp(26px, 2.8vw, 36px);
  line-height: 1.12;
  margin: 20px 0 14px;
}
.spot-copy p {
  color: var(--muted);
  font-size: 18px;
  max-width: 28em;
}
.f-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--paper);
  color: var(--green);
  display: grid;
  place-items: center;
}
.f-icon svg {
  width: 24px;
  height: 24px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 32px);
}
.feature {
  background: var(--surface);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.feature h3 {
  font-size: 21px;
  line-height: 1.25;
  margin: 22px 0 10px;
}
.feature p {
  color: var(--muted);
  font-size: 16px;
}

.how {
  padding: clamp(56px, 7vw, 96px) 0 clamp(80px, 10vw, 140px);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 32px);
  counter-reset: s;
}
.step {
  position: relative;
  padding-top: 28px;
  border-top: 2px solid var(--line);
}
.step::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 56px;
  height: 2px;
  background: var(--coral);
}
.step-n {
  font: 400 64px/1 var(--serif);
  color: var(--coral-text);
}
.step h3 {
  font-size: 22px;
  margin: 18px 0 10px;
}
.step p {
  color: var(--muted);
  font-size: 16px;
}

/* Pricing */
.pricing {
  background: var(--paper-2);
  padding: clamp(80px, 10vw, 140px) 0;
}
.toggles {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: -12px 0 clamp(36px, 4vw, 52px);
}
.seg {
  display: inline-flex;
  background: var(--surface);
  border-radius: 999px;
  padding: 4px;
  box-shadow: var(--shadow);
}
.seg button {
  border: 0;
  background: transparent;
  font: 600 14px/1 var(--sans);
  color: var(--muted);
  height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    background-color 0.2s,
    color 0.2s;
}
.seg button.on {
  background: var(--green);
  color: #fff;
}
.seg em {
  font-style: normal;
  font-size: 11.5px;
  font-weight: 700;
  background: #ffe6e0;
  color: var(--coral-text);
  padding: 3px 7px;
  border-radius: 999px;
}
.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 28px);
  align-items: stretch;
}
.plan {
  background: var(--surface);
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  border: 1.5px solid transparent;
}
.plan-pop {
  border-color: var(--green);
  box-shadow: var(--shadow-lg);
}
.plan-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 30px;
}
.plan h3 {
  font-size: 24px;
}
.badge {
  font-size: 12px;
  font-weight: 700;
  background: var(--coral);
  color: var(--ink);
  padding: 5px 11px;
  border-radius: 999px;
  white-space: nowrap;
}
.plan-blurb {
  color: var(--muted);
  font-size: 15.5px;
  margin-top: 10px;
  min-height: 3.2em;
}
.price {
  margin-top: 26px;
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: var(--green);
}
.cur {
  font-weight: 650;
  font-size: 17px;
}
.amt {
  font-weight: 780;
  font-size: 54px;
  letter-spacing: -0.04em;
  line-height: 1;
}
.per {
  color: var(--muted);
  font-size: 15px;
}
.seats {
  font-weight: 600;
  margin: 8px 0 26px;
  font-size: 15px;
}
.includes {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-size: 15px;
}
.includes li {
  align-items: flex-start;
}
.includes svg {
  margin-top: 3px;
}
.includes .inc-head {
  font-weight: 650;
  color: var(--green);
}
.fine {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin-top: 32px;
}

/* FAQ */
.faq {
  padding: clamp(80px, 10vw, 140px) 0;
}
.faq-in {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}
.qas {
  border-top: 1px solid var(--line);
}
.qa {
  border-bottom: 1px solid var(--line);
}
.qa summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  font-weight: 650;
  font-size: 18px;
  color: var(--green);
}
.qa summary::-webkit-details-marker {
  display: none;
}
.qa p {
  color: var(--muted);
  padding: 0 48px 26px 0;
}
.plus {
  position: relative;
  width: 28px;
  height: 28px;
  flex: none;
  border-radius: 50%;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.plus::before,
.plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 11px;
  height: 1.8px;
  background: var(--green);
  border-radius: 1px;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}
.plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.qa[open] .plus::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

/* Final CTA */
.final {
  padding: 0 0 clamp(80px, 10vw, 140px);
}
.final-in {
  background: var(--green);
  color: #fff;
  border-radius: 32px;
  padding: clamp(56px, 8vw, 104px) var(--gutter);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.echo {
  width: 88px;
  height: 64px;
  color: var(--mint);
}
.quote {
  font: 400 clamp(44px, 6.4vw, 84px) / 1.02 var(--serif);
  letter-spacing: -0.01em;
  margin: 28px 0 18px;
  color: #fff;
}
.final-p {
  color: rgb(234 241 236 / 0.82);
  font-size: 18px;
  margin-bottom: 34px;
}

/* Footer */
.foot {
  border-top: 1px solid var(--line);
  padding: 48px 0 56px;
}
.foot-in {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px 40px;
  align-items: center;
}
.foot-brand {
  display: flex;
  align-items: center;
  gap: 22px;
}
.foot-brand img {
  height: 28px;
  width: auto;
}
.foot-brand p,
.copy {
  color: var(--muted);
  font-size: 14px;
}
.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
}
.foot-links a {
  font-size: 14px;
  text-decoration: none;
  color: var(--muted);
}
.foot-links a:hover {
  color: var(--green);
}
.copy {
  grid-column: 1 / -1;
}

/* Legal */
.legal {
  padding: clamp(40px, 6vw, 80px) 0 clamp(80px, 10vw, 120px);
}
.legal .wrap {
  max-width: calc(760px + 2 * var(--gutter));
}
.legal h1 {
  font-size: clamp(36px, 5vw, 52px);
  letter-spacing: -0.035em;
  margin-bottom: 40px;
}
.legal h2 {
  font-size: 26px;
  margin: 48px 0 14px;
}
.legal h3 {
  font-size: 18px;
  margin: 28px 0 8px;
}
.legal p,
.legal li {
  color: var(--muted);
  margin-bottom: 12px;
}
.legal ul {
  list-style: disc;
  padding-left: 22px;
}

/* Motion */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.js .reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Responsive */
@media (max-width: 1080px) {
  .nav-links {
    gap: 24px;
  }
  .hero-in {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    max-width: 720px;
  }
  .hero-art {
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 14%;
  }
  .hero-objects {
    right: -2%;
    width: 56%;
  }
}
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .feature-grid,
  .steps,
  .plans {
    grid-template-columns: 1fr;
  }
  .plans {
    max-width: 520px;
    margin: 0 auto;
  }
  .spot {
    grid-template-columns: 1fr;
  }
  .spot:nth-child(even) .spot-art {
    order: 0;
  }
  .faq-in {
    grid-template-columns: 1fr;
  }
  .plan-blurb {
    min-height: 0;
  }
}
@media (max-width: 560px) {
  body {
    font-size: 16px;
  }
  .nav-in {
    height: 64px;
    gap: 12px;
  }
  .nav-cta {
    gap: 12px;
  }
  .nav-login {
    display: none;
  }
  .logo img {
    height: 28px;
  }
  .btn .lg {
    display: none;
  }
  .btn .sm {
    display: inline;
  }
  .hero h1 {
    font-size: clamp(40px, 11.5vw, 52px);
  }
  .actions .btn {
    flex: 1 1 100%;
  }
  .board {
    font-size: 12px;
  }
  .board-side {
    display: none;
  }
  .board-main {
    padding: 14px 12px 16px;
  }
  .cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .col:nth-child(3) {
    display: none;
  }
  .board-body {
    min-height: 0;
  }
  .hero-art {
    padding-bottom: 22%;
  }
  .hero-art {
    padding-bottom: 30%;
  }
  .hero-objects {
    right: -2%;
    bottom: 0;
    width: 66%;
  }
  .foot-links {
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: start;
    gap: 12px 28px;
  }
  .feature,
  .plan {
    padding: 28px 24px;
  }
  .spot {
    padding: 20px 20px 28px;
    border-radius: 20px;
  }
  .qa summary {
    font-size: 17px;
  }
  .qa p {
    padding-right: 0;
  }
  .foot-in {
    grid-template-columns: 1fr;
  }
  .foot-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}
