/* ==========================================================================
   quivexa.com — advertorial landing page
   Layout & component system modelled on a modern walking-app landing page,
   recoloured to the quivexa logo palette (deep green / sage olive / orange).
   ========================================================================== */

:root{
  /* --- brand, sampled from images/logo.png --- */
  --ink:        #123129;   /* deep green — wordmark */
  --ink-2:      #0E2A20;   /* deeper green */
  --ink-3:      #1A4033;   /* raised green surface */
  --olive:      #657853;   /* sage olive — logo network lines */
  --olive-dk:   #4E5F40;
  --brand:      #FD6734;   /* orange — logo check mark */
  --brand-dk:   #E2551F;

  --card:       #D9DFC6;   /* light sage panel */
  --card-2:     #E9EEDD;   /* lighter sage chip */
  --paper:      #FFFFFF;
  --text:       #22321F;
  --text-soft:  #4B5A46;
  --hair:       rgba(18,49,41,.12);
  --on-dark:    #EEF3E4;

  --maxw:       1440px;
  --pad:        30px;
  --pad-lg:     120px;
  --hh:         65px;      /* header height */

  --serif: "Bitter", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

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

body{
  margin:0;
  background:var(--paper);
  color:var(--text);
  font-family:var(--sans);
  font-size:17px;
  line-height:1.6;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}

img{ max-width:100%; display:block; }
a{ color:inherit; }
h1,h2,h3,h4{ margin:0; font-family:var(--serif); font-weight:400; letter-spacing:0; }
p{ margin:0; }
ul,ol{ margin:0; padding:0; list-style:none; }
button{ font:inherit; color:inherit; }

.skip-link{
  position:absolute; left:-9999px; top:0; z-index:999;
  background:var(--ink); color:#fff; padding:12px 18px; border-radius:0 0 12px 0;
}
.skip-link:focus{ left:0; }

:focus-visible{ outline:3px solid var(--brand); outline-offset:3px; }

/* ---------- layout helpers ---------- */
.wrap{
  width:100%;
  max-width:var(--maxw);
  margin-inline:auto;
  padding-inline:var(--pad);
}
@media (min-width:901px){
  .wrap{ padding-inline:var(--pad-lg); }
}

/* ---------- shared section title (marker + serif head) ---------- */
.title{
  display:inline-flex;
  align-items:baseline;
  gap:16px;
  max-width:100%;
  --title-accent:var(--olive);
  --title-base:var(--text);
}
.title .marker{ flex-shrink:0; width:16px; height:26px; }
.title .marker path{ fill:var(--title-accent); }
.title h2,.title h3{
  font-family:var(--serif);
  font-size:32px;
  line-height:110%;
  color:var(--title-base);
  margin:0;
}
.title em{
  font-family:var(--serif);
  font-style:italic;
  font-weight:800;
  color:var(--title-accent);
}
.title--dark{ --title-accent:#fff; --title-base:#fff; }
@media (min-width:769px){
  .title h2,.title h3{ font-size:44px; }
}

.lede{
  font-size:17px;
  line-height:1.55;
  color:var(--text-soft);
  max-width:640px;
  margin-top:20px;
}
.lede--dark{ color:rgba(255,255,255,.82); }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  height:51px;
  padding:0 32px;
  border:0;
  border-radius:30px;
  background:var(--brand);
  color:#fff;
  font-family:var(--sans);
  font-size:16px;
  font-weight:700;
  letter-spacing:1px;
  line-height:1;
  text-transform:uppercase;
  text-decoration:none;
  cursor:pointer;
  transition:background-color .15s ease-in-out, color .15s ease-in-out;
}
.btn:hover{ background:var(--olive); color:#fff; }
.btn .time{
  display:inline-flex;
  align-items:center;
  gap:6px;
  flex-shrink:0;
  font-size:16px;
  font-weight:300;
  letter-spacing:1px;
  text-transform:none;
  opacity:.92;
  white-space:nowrap;
}
.btn .time svg{ width:16px; height:16px; fill:none; stroke:currentColor; stroke-width:2; }
.btn--wide{ width:100%; max-width:330px; justify-content:space-between; align-self:flex-start; }
.btn--sm{ height:44px; padding:0 24px; font-size:14px; }
.btn--ghost{
  background:transparent;
  color:var(--ink);
  box-shadow:inset 0 0 0 2px var(--olive);
}
.btn--ghost:hover{ background:var(--olive); color:#fff; }
@media (min-width:769px){
  .btn--wide{ width:auto; max-width:none; justify-content:center; gap:12px; }
}

/* ==========================================================================
   TOP BAR + HEADER
   ========================================================================== */
.topbar{
  background:var(--ink-2);
  color:rgba(255,255,255,.72);
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  padding:7px 0;
  position:relative;
  z-index:70;
}
.topbar b{ color:var(--brand); font-weight:800; }

.masthead{
  position:sticky;
  top:0;
  left:0; right:0;
  width:100%;
  max-width:100vw;
  z-index:65;
  background:var(--ink);
  transition:box-shadow .3s ease-in-out;
}
.masthead::before{
  content:"";
  position:absolute; inset:0; z-index:-1;
  background-color:rgba(14,42,32,.55);
  backdrop-filter:blur(30px);
  -webkit-backdrop-filter:blur(30px);
  opacity:0;
  transition:opacity .3s ease-in-out;
}
.masthead.scrolled{ box-shadow:0 5px 50px rgba(0,0,0,.18); }
.masthead.scrolled::before{ opacity:1; }

.masthead .wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:var(--hh);
  position:relative;
}
.wordmark{
  display:inline-flex;
  align-items:center;
  position:relative;
  z-index:2;
}
.wordmark img{ height:30px; width:auto; filter:brightness(0) invert(1); }

.mast-cta{
  position:absolute;
  left:50%; top:50%;
  transform:translate(-50%,-50%);
  display:none;
  z-index:2;
}
.stamp{
  display:none;
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(255,255,255,.7);
}
.mast-cta-sm{ display:inline-flex; }

@media (min-width:769px){
  :root{ --hh:102px; }
  .wordmark img{ height:44px; }
  .mast-cta{ display:inline-flex; }
  .mast-cta-sm{ display:none; }
  .stamp{ display:inline-block; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero{
  position:relative;
  width:100%;
  overflow:hidden;
  background:var(--ink);
  min-height:880px;
}
.hero::after{
  content:"";
  position:absolute;
  left:-40vw; top:44%;
  width:180vw; height:180vw;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.10);
  pointer-events:none;
}
.hero-photo{
  position:absolute;
  right:-6%;
  bottom:300px;
  width:78%;
  max-width:660px;
  height:auto;
  z-index:1;
  filter:drop-shadow(-10px 0 40px rgba(0,0,0,.35));
  pointer-events:none;
}
/* mobile scrim so the cutout never sits behind the headline */
.hero::before{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height:66%;
  z-index:2;
  pointer-events:none;
  background:linear-gradient(180deg,
    rgba(18,49,41,0) 0%,
    rgba(18,49,41,.62) 20%,
    rgba(18,49,41,.90) 36%,
    var(--ink) 56%);
}
.hero .wrap{
  position:relative;
  z-index:3;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  min-height:880px;
  padding-top:48px;
  padding-bottom:150px;
}
.hero h1{
  font-family:var(--serif);
  font-size:40px;
  line-height:1.15;
  color:#fff;
  max-width:14ch;
}
.hero h1 em{ font-style:italic; font-weight:700; }
.hero-lead{
  color:#fff;
  font-weight:700;
  font-size:18px;
  line-height:1.25;
  max-width:340px;
  margin-top:26px;
}
.hero .btn{ margin-top:26px; }
.hero-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:30px;
}
.hero-tags li{
  border:1px solid rgba(255,255,255,.28);
  border-radius:999px;
  padding:8px 16px;
  font-size:13px;
  font-weight:600;
  letter-spacing:.04em;
  color:rgba(255,255,255,.9);
}
@media (min-width:769px){
  .hero::before{ display:none; }
  .hero{ min-height:1020px; }
  .hero .wrap{
    min-height:1020px;
    justify-content:flex-start;
    padding-top:110px;
    padding-bottom:0;
  }
  .hero h1{ font-size:80px; line-height:1.08; max-width:13ch; }
  .hero-lead{ font-size:20px; max-width:420px; margin-top:30px; }
  .hero-photo{ right:2%; bottom:195px; width:42%; max-width:620px; }
  .hero .btn{ margin-top:32px; }
}
@media (min-width:1200px){
  .hero h1{ font-size:92px; }
  .hero-photo{ right:6%; width:38%; }
}

/* ==========================================================================
   PLANS  —  "Endless ways to move every day"
   ========================================================================== */
.plans{
  position:relative;
  z-index:10;
  margin-top:-80px;
  padding-bottom:190px;
  background:transparent;
}
.plans::before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:calc(100% - 150px);
  background:var(--ink);
  z-index:-2;
}
.plans-arc{
  position:absolute;
  right:-140px; bottom:8%;
  width:1100px; max-width:none; height:auto;
  opacity:.5;
  pointer-events:none;
  z-index:-1;
}
.plans .wrap{ position:relative; z-index:1; }
.plans .title{ margin-bottom:22px; }
.plans .lede{ margin-bottom:44px; }

.plan-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:20px;
  width:100%;
}
.plan-card{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  min-height:300px;
  padding:28px;
  border-radius:32px;
  background:var(--olive);
  clip-path:inset(0 round 32px);
}
.plan-card::before{
  content:"";
  position:absolute;
  inset:0 20% 0 -10%;
  border-radius:inherit;
  background:radial-gradient(circle at 28% 22%, rgba(253,103,52,.85) 0%, rgba(253,103,52,.35) 100%);
  filter:blur(40px);
  opacity:0;
  transition:opacity .3s ease-in-out;
  pointer-events:none;
  z-index:0;
}
@media (hover:hover) and (pointer:fine){
  .plan-card:hover::before{ opacity:1; }
}
.plan-card::after{
  content:"";
  position:absolute;
  inset:0;
  border:5px solid rgba(255,255,255,.20);
  border-radius:inherit;
  pointer-events:none;
  z-index:4;
}
.plan-lines{
  position:absolute;
  top:var(--line-top,0);
  right:var(--line-right,0);
  width:var(--line-w,100%);
  height:var(--line-h,100%);
  rotate:var(--line-rot,0deg);
  object-fit:fill;
  opacity:.55;
  pointer-events:none;
  z-index:0;
}
.plan-photo{
  position:absolute;
  bottom:0;
  right:var(--photo-right,0%);
  width:var(--photo-w,52%);
  height:auto;
  max-height:100%;
  object-fit:contain;
  object-position:center bottom;
  filter:drop-shadow(8px 0 14px rgba(14,42,32,.45)) drop-shadow(18px 0 34px rgba(14,42,32,.35));
  pointer-events:none;
  z-index:1;
}
.plan-body{
  position:relative;
  z-index:2;
  max-width:62%;
}
.plan-card h3{
  color:#fff;
  font-family:var(--serif);
  font-size:24px;
  font-weight:800;
  line-height:110%;
}
.plan-card p{
  color:var(--on-dark);
  font-size:16px;
  line-height:140%;
  margin-top:12px;
  max-width:260px;
}
.plan-pop{
  position:absolute;
  top:26px; right:24px;
  z-index:3;
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#fff;
  font-size:13px;
  font-weight:800;
  letter-spacing:1px;
  line-height:1;
  text-transform:uppercase;
}
.plan-pop svg{ width:18px; height:18px; flex-shrink:0; fill:var(--brand); }
.plan-cta{
  position:absolute;
  left:28px; bottom:24px;
  z-index:3;
  display:inline-flex;
  align-items:center;
  gap:10px;
  height:48px;
  padding:0 22px;
  border-radius:999px;
  background:var(--brand);
  color:#fff;
  font-size:14px;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  text-decoration:none;
  transition:background-color .15s ease-in-out;
}
.plan-cta:hover{ background:var(--ink); }
.plan-cta svg{ width:15px; height:9px; fill:currentColor; }
.plan-card--photo .plan-body{ padding-bottom:56px; }

@media (min-width:901px){
  .plans{ margin-top:-190px; padding-bottom:270px; }
  .plan-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); gap:24px; }
  .plan-card{ min-height:235px; padding:32px; }
  .plan-card--wide{ grid-column:1 / -1; }
  .plan-card h3{ font-size:32px; }
  .plan-card p{ font-size:18px; }
  .plan-body{ max-width:48%; }
  .plan-card--wide .plan-body{ max-width:40%; }
  .plan-cta{ left:32px; }
}

/* ==========================================================================
   EXPLORE  —  routine carousel + stat panel
   ========================================================================== */
.explore{
  position:relative;
  z-index:11;
  margin-top:-60px;
}
.explore-head{ position:relative; z-index:11; padding-bottom:34px; }

.explore-stage{
  position:relative;
  width:100%;
  overflow:hidden;
  background:var(--ink-3);
}
.explore-stage .wrap{
  position:relative;
  z-index:0;
  display:flex;
  flex-direction:column;
  padding-top:40px;
  padding-bottom:96px;
}
.explore-count{
  position:relative;
  z-index:2;
  display:flex;
  align-items:baseline;
  gap:12px;
  color:var(--card);
}
.explore-count b{
  font-family:var(--serif);
  font-size:96px;
  font-weight:200;
  line-height:110%;
}
.explore-count i{
  font-style:normal;
  font-family:var(--serif);
  font-size:32px;
  font-weight:800;
  line-height:110%;
}
.explore-view{
  position:relative;
  z-index:1;
  height:330px;
  margin-top:-40px;
}
.explore-view::after{
  content:"";
  position:absolute;
  left:-40px; right:-40px; bottom:0;
  height:74%;
  z-index:1;
  pointer-events:none;
  background:linear-gradient(180deg,
    rgba(26,64,51,0) 0%,
    rgba(26,64,51,.55) 26%,
    rgba(26,64,51,.88) 48%,
    var(--ink-3) 74%);
}
.eslide{
  position:absolute;
  left:50%;
  bottom:-110px;
  height:470px;
  width:auto;
  opacity:0;
  transform:translateX(-50%);
  transition:opacity .45s ease-in-out, transform .55s cubic-bezier(.4,0,.2,1);
  pointer-events:none;
  z-index:0;
}
.eslide img{ height:100%; width:auto; max-width:none; }
.eslide.on{ opacity:1; z-index:1; }
.eslide-cap{
  position:absolute;
  left:0; bottom:8px;
  z-index:3;
  max-width:330px;
  color:#fff;
}
.eslide-cap h3{
  font-family:var(--serif);
  font-size:22px;
  font-weight:800;
  line-height:120%;
}
.eslide-cap p{
  font-size:15px;
  line-height:1.5;
  color:rgba(255,255,255,.8);
  margin-top:10px;
}

.explore-nav{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
}
.epill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  height:56px;
  padding:0 26px;
  border:5px solid rgba(255,255,255,.2);
  border-radius:30px;
  background:var(--brand);
  color:#fff;
  font-family:var(--serif);
  font-size:17px;
  font-weight:800;
  line-height:110%;
  white-space:nowrap;
  cursor:pointer;
  min-width:220px;
}
.epill--side{ display:none; opacity:.5; transition:opacity .2s ease; }
.epill--side:hover{ opacity:.8; }
.earrow{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:24px; height:40px;
  padding:0;
  border:0;
  background:transparent;
  color:#fff;
  opacity:.85;
  cursor:pointer;
  transition:opacity .2s ease;
}
.earrow:hover{ opacity:1; }
.earrow svg{ width:14px; height:24px; fill:none; stroke:currentColor; stroke-width:2.4; stroke-linecap:round; stroke-linejoin:round; }

.explore-stats-wrap{ position:relative; z-index:3; }
.explore-stats{
  display:flex;
  flex-direction:column;
  gap:44px;
  margin-top:-60px;
  padding:52px 28px;
  border-radius:32px;
  background:var(--olive);
  box-shadow:inset 0 0 0 5px rgba(255,255,255,.16);
}
.stat-list{
  display:grid;
  grid-template-columns:1fr;
  gap:26px;
}
.stat{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:18px;
}
.stat .leaf{ flex-shrink:0; width:auto; height:54px; }
.stat .leaf path{ fill:none; stroke:rgba(255,255,255,.6); stroke-width:1.6; }
.stat .leaf.flip{ transform:scaleX(-1); }
.stat-text{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  text-align:center;
}
.stat-val{
  color:#fff;
  font-family:var(--serif);
  font-size:40px;
  font-weight:800;
  line-height:110%;
}
.stat-lab{
  color:#fff;
  font-size:15px;
  font-weight:600;
  line-height:1.2;
  max-width:150px;
  text-align:center;
}
.stat-note{
  color:rgba(255,255,255,.78);
  font-size:12px;
  line-height:1.35;
  text-align:center;
  margin:18px auto 0;
  max-width:420px;
}
.tracked-title{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:22px;
  color:#fff;
  font-family:var(--serif);
  font-size:26px;
  font-weight:400;
  line-height:110%;
  text-align:center;
  margin:0;
}
.tracked-title svg{ flex-shrink:0; width:21px; height:20px; fill:var(--brand); }
.trackchips{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
}
.trackchips li{
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.22);
  border-radius:999px;
  color:#fff;
  font-size:14px;
  font-weight:600;
  padding:10px 20px;
}
@media (min-width:769px){
  .explore-count b{ font-size:155px; }
  .explore-count i{ font-size:45px; }
  .explore-view{ height:420px; margin-top:-60px; }
  .eslide{ height:620px; bottom:-180px; }
  .eslide-cap{ max-width:380px; bottom:20px; }
  .eslide-cap h3{ font-size:26px; }
  .epill--side{ display:inline-flex; }
  .explore-nav{ gap:27px; }
  .epill{ height:64px; font-size:20px; padding:0 40px; min-width:300px; }
  .explore-stats{ margin-top:-80px; padding:70px 40px; gap:56px; }
  .stat-list{ grid-template-columns:repeat(3,minmax(0,1fr)); gap:24px; }
  .stat-val{ font-size:45px; }
  .tracked-title{ font-size:44px; gap:40px; }
}
@media (min-width:901px){
  .explore{ margin-top:-130px; }
}

/* ==========================================================================
   ARTICLE
   ========================================================================== */
.article{
  background:var(--paper);
  padding:96px 0 40px;
}
.article .wrap{ max-width:1180px; }
.article-in{ max-width:780px; margin-inline:auto; }
.article-in h2{
  font-family:var(--serif);
  font-size:30px;
  line-height:115%;
  color:var(--ink);
  margin:56px 0 18px;
}
.article-in h2 em{ font-style:italic; font-weight:800; color:var(--olive); }
.article-in p{
  font-size:17.5px;
  line-height:1.72;
  color:var(--text-soft);
  margin-bottom:18px;
}
.article-in p.dropcap::first-letter{
  float:left;
  font-family:var(--serif);
  font-size:74px;
  line-height:.82;
  font-weight:800;
  color:var(--ink);
  padding:6px 14px 0 0;
}
.article-lead{ font-size:19px !important; color:var(--text) !important; }

.figure{
  margin:48px 0;
  border-radius:32px;
  background:var(--card-2);
  padding:34px 24px 0;
  position:relative;
  overflow:hidden;
}
.figure::after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:6px;
  background:var(--brand);
}
.figure-in{
  display:flex;
  align-items:flex-end;
  justify-content:center;
  gap:24px;
}
.figure img{
  height:auto;
  width:auto;
  max-height:300px;
  max-width:44%;
  object-fit:contain;
  object-position:center bottom;
}
.figure figcaption{
  padding:18px 6px 22px;
  font-size:14px;
  line-height:1.5;
  color:var(--text-soft);
  text-align:center;
}

.needs{
  display:grid;
  gap:16px;
  margin:26px 0 8px;
}
.needs li{
  display:flex;
  gap:16px;
  align-items:flex-start;
  background:var(--card-2);
  border-radius:20px;
  padding:20px 22px;
}
.needs svg{
  flex-shrink:0;
  width:24px; height:24px;
  margin-top:2px;
  fill:none; stroke:var(--olive); stroke-width:2;
  stroke-linecap:round; stroke-linejoin:round;
}
.needs b{
  display:block;
  font-family:var(--serif);
  font-size:18px;
  font-weight:800;
  color:var(--ink);
  margin-bottom:4px;
}
.needs span{ font-size:16px; line-height:1.55; color:var(--text-soft); }

.pullquote{
  margin:52px 0;
  padding:34px 0 34px 30px;
  border-left:6px solid var(--brand);
  font-family:var(--serif);
  font-style:italic;
  font-size:24px;
  line-height:1.4;
  font-weight:600;
  color:var(--ink);
}
@media (min-width:769px){
  .article{ padding:130px 0 60px; }
  .article-in h2{ font-size:38px; }
  .pullquote{ font-size:30px; padding-left:40px; }
  .needs{ grid-template-columns:repeat(2,minmax(0,1fr)); }
  .figure img{ max-height:400px; }
}

/* ==========================================================================
   EXTRA  —  "Walk the extra mile"
   ========================================================================== */
.extra{
  position:relative;
  z-index:1;
  padding:80px 0;
  background:var(--paper);
}
.extra .wrap{ position:relative; z-index:1; display:flex; flex-direction:column; }
.extra-line{
  position:absolute;
  left:50%; top:-10%;
  transform:translateX(-50%);
  width:1440px; max-width:none; height:auto;
  opacity:.5;
  pointer-events:none;
  z-index:0;
}
.extra .title{ margin-bottom:20px; }
.extra .lede{ margin-bottom:40px; }

.extra-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:20px;
  width:100%;
}
.extra-card{
  position:relative;
  min-height:380px;
  overflow:hidden;
  border-radius:24px;
  background:var(--ink-3);
}
.extra-photo{
  position:absolute;
  left:50%; bottom:0;
  transform:translateX(-50%);
  width:auto;
  max-width:none;
  height:var(--x-h,80%);
  object-fit:contain;
  object-position:center bottom;
  z-index:0;
  pointer-events:none;
}
.extra-card::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height:52%;
  z-index:1;
  border-radius:0 0 24px 24px;
  pointer-events:none;
  background:linear-gradient(180deg,
    rgba(14,42,32,0) 0%,
    rgba(14,42,32,.42) 18%,
    rgba(14,42,32,.72) 32%,
    rgba(14,42,32,.92) 48%,
    var(--ink-2) 66%);
}
.extra-body{
  position:absolute;
  left:26px; right:26px; bottom:26px;
  z-index:2;
}
.extra-card h3{
  color:#fff;
  font-family:var(--serif);
  font-size:22px;
  font-weight:700;
  line-height:120%;
}
.extra-card p{
  color:rgba(255,255,255,.92);
  font-size:15.5px;
  line-height:140%;
  margin-top:14px;
}
.extra .btn{ margin-top:36px; align-self:flex-start; }
@media (min-width:901px){
  .extra{ padding:120px 0 100px; }
  .extra-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); gap:40px; }
  .extra-card{ min-height:430px; }
  .extra-body{ left:32px; right:32px; bottom:32px; }
  .extra-card p{ font-size:16px; }
}

/* ==========================================================================
   CONNECT  —  tracking band
   ========================================================================== */
.connect{
  position:relative;
  z-index:0;
  overflow:hidden;
  background:var(--card-2);
  padding:84px 0 72px;
}
.connect .wrap{ position:relative; z-index:1; display:flex; flex-direction:column; }
.connect-arc{
  position:absolute;
  right:-60px; bottom:-80px;
  width:900px; max-width:none; height:auto;
  opacity:.6;
  pointer-events:none;
  z-index:0;
}
.connect-body{
  display:flex;
  flex-direction:column;
  gap:32px;
  align-items:flex-start;
  margin-top:38px;
}
.connect-text{ flex:1; }
.connect-text p{
  font-size:19px;
  line-height:1.55;
  color:var(--text-soft);
  max-width:520px;
}
.connect-text strong{ color:var(--ink); font-weight:800; }
.connect-list{
  display:grid;
  gap:14px;
  margin-top:26px;
}
.connect-list li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  font-size:16px;
  line-height:1.5;
  color:var(--text);
}
.connect-list svg{
  flex-shrink:0;
  width:22px; height:22px;
  margin-top:1px;
  fill:none; stroke:var(--brand); stroke-width:2.6;
  stroke-linecap:round; stroke-linejoin:round;
}
.connect-media{
  width:100%;
  max-width:340px;
  margin-inline:auto;
  flex-shrink:0;
}
.connect-media svg{ width:100%; height:auto; }
@media (min-width:901px){
  .connect{ padding:140px 0 96px; }
  .connect-body{ flex-direction:row; align-items:center; gap:60px; }
  .connect-media{ margin-inline:0; max-width:380px; }
}

/* ==========================================================================
   GOALS
   ========================================================================== */
.goals{
  background:var(--paper);
  padding:90px 0 60px;
}
.goals .wrap{ display:flex; flex-direction:column; align-items:flex-start; }
.goal-rows{
  display:flex;
  flex-direction:column;
  gap:20px;
  margin-top:44px;
  width:100%;
}
.goal-row{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}
.goal{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:13px 22px;
  border:0;
  border-radius:999px;
  background:var(--card-2);
  color:var(--text);
  cursor:pointer;
  transition:background-color .2s ease, color .2s ease;
}
.goal:hover{ background:#F3F7EA; color:var(--olive); }
.goal.on,.goal.on:hover{ background:var(--olive); color:#fff; }
.goal i{
  display:block;
  flex-shrink:0;
  width:20px; height:20px;
  background-color:currentColor;
  mask:var(--gi) center / contain no-repeat;
  -webkit-mask:var(--gi) center / contain no-repeat;
}
.goal span{
  font-size:13px;
  font-weight:700;
  letter-spacing:.06em;
  line-height:1;
  text-transform:uppercase;
  white-space:nowrap;
}
.goals .btn{ margin-top:48px; }
@media (min-width:769px){
  .goals{ padding:150px 0 60px; }
  .goal-rows{ margin-top:70px; gap:26px; }
  .goals .btn{ margin-top:70px; }
}

/* ==========================================================================
   FEEDBACK  —  reader testimonials
   ========================================================================== */
.feedback{
  position:relative;
  overflow:hidden;
  background:var(--paper);
  padding:70px 0 80px;
}
.feedback .wrap{
  position:relative;
  display:flex;
  flex-direction:column;
}
.fb-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  width:100%;
}
.fb-arrows{
  display:none;
  gap:16px;
  position:relative;
  z-index:3;
}
.fb-arrow{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:50px; height:50px;
  padding:0;
  border:0;
  border-radius:50%;
  background:var(--brand);
  color:#fff;
  cursor:pointer;
  transition:background-color .2s ease, opacity .2s ease;
}
.fb-arrow:hover{ background:var(--brand-dk); }
.fb-arrow:disabled{ opacity:.4; cursor:not-allowed; }
.fb-arrow svg{ width:14px; height:22px; fill:none; stroke:currentColor; stroke-width:2.6; stroke-linecap:round; stroke-linejoin:round; }
.fb-quote-bg{
  position:absolute;
  left:50%; top:62%;
  transform:translate(-50%,-50%);
  width:520px; max-width:none; height:auto;
  opacity:.35;
  pointer-events:none;
  z-index:0;
}
.fb-view{
  position:relative;
  z-index:2;
  overflow:hidden;
  width:100%;
  margin-top:34px;
}
.fb-track{
  display:flex;
  gap:20px;
  width:max-content;
  transition:transform .35s ease;
}
.fb-card{
  position:relative;
  display:flex;
  flex-direction:column;
  flex:0 0 min(84vw,420px);
  height:376px;
  overflow:hidden;
  padding:26px 24px 22px;
  border-radius:32px;
  background:var(--olive);
  box-shadow:inset 0 0 0 5px rgba(255,255,255,.2);
}
.fb-card::before{
  content:"";
  position:absolute;
  inset:0 0 auto auto;
  width:340px; height:330px;
  z-index:0;
  pointer-events:none;
  background:radial-gradient(56% 56% at 92% 4%, rgba(253,103,52,.85), rgba(253,103,52,.28), rgba(253,103,52,0));
}
.fb-card > *{ position:relative; z-index:1; }
.fb-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  min-height:22px;
}
.fb-stars{ display:inline-flex; gap:3px; }
.fb-stars i{
  display:block;
  width:18px; height:18px;
  background-color:#fff;
  mask:url(../images/icons/star-rate.svg) center / contain no-repeat;
  -webkit-mask:url(../images/icons/star-rate.svg) center / contain no-repeat;
}
.fb-src{
  font-size:11px;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:rgba(255,255,255,.75);
}
.fb-mid{ margin-top:30px; }
.fb-card h4{
  font-family:var(--serif);
  font-size:21px;
  font-weight:800;
  line-height:120%;
  color:#fff;
}
.fb-card p{
  margin-top:14px;
  font-size:15.5px;
  line-height:1.55;
  color:rgba(255,255,255,.92);
}
.fb-bot{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  margin-top:auto;
}
.fb-bot cite{
  font-style:normal;
  font-size:14px;
  font-weight:700;
  color:#fff;
}
.fb-mark{
  font-family:var(--serif);
  font-size:64px;
  line-height:.4;
  color:rgba(255,255,255,.35);
}
@media (min-width:769px){
  .feedback{ padding:80px 0 100px; }
  .fb-arrows{ display:inline-flex; gap:24px; }
  .fb-card{ flex:0 0 420px; height:400px; padding:28px 26px 24px; }
  .fb-track{ gap:26px; margin-top:42px; }
}

/* ==========================================================================
   PRICING
   ========================================================================== */
.pricing{
  background:var(--paper);
  padding:20px 0 90px;
}
.pricing .title{ margin-bottom:20px; }
.pricing .lede{ margin-bottom:40px; }
.price-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:22px;
}
.price-card{
  display:flex;
  flex-direction:column;
  padding:34px 28px;
  border-radius:32px;
  background:var(--card-2);
  box-shadow:inset 0 0 0 2px rgba(18,49,41,.08);
}
.price-card .tag{
  align-self:flex-start;
  border-radius:999px;
  background:rgba(18,49,41,.1);
  color:var(--ink);
  font-size:12px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  padding:7px 14px;
}
.price-card h3{
  font-family:var(--serif);
  font-size:28px;
  font-weight:800;
  color:var(--ink);
  margin-top:18px;
}
.price-card .price{
  font-size:15px;
  color:var(--text-soft);
  margin-top:8px;
}
.price-card ul{ display:grid; gap:12px; margin:26px 0 30px; }
.price-card li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  font-size:15.5px;
  line-height:1.5;
}
.price-card li svg{
  flex-shrink:0; width:20px; height:20px; margin-top:2px;
  fill:none; stroke-width:2.6; stroke-linecap:round; stroke-linejoin:round;
}
.price-card li.yes svg{ stroke:var(--brand); }
.price-card li.no{ opacity:.5; }
.price-card li.no svg{ stroke:currentColor; }
.price-card .btn{ margin-top:auto; align-self:flex-start; }
.price-card--pro{
  background:var(--ink);
  box-shadow:inset 0 0 0 5px rgba(255,255,255,.14);
}
.price-card--pro .tag{ background:var(--brand); color:#fff; }
.price-card--pro h3{ color:#fff; }
.price-card--pro .price{ color:rgba(255,255,255,.75); }
.price-card--pro li{ color:#fff; }
.fineprint{
  margin-top:26px;
  font-size:13px;
  line-height:1.6;
  color:var(--text-soft);
  max-width:900px;
}
@media (min-width:901px){
  .price-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); gap:32px; }
  .price-card{ padding:44px 40px; }
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq{ background:var(--paper); padding:20px 0 100px; }
.faq .title{ margin-bottom:36px; }
.faq-grid{ display:grid; gap:14px; }
.faq details{
  border-radius:24px;
  background:var(--card-2);
  padding:4px 22px;
  transition:background-color .2s ease;
}
.faq details[open]{ background:var(--card); }
.faq summary{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  list-style:none;
  cursor:pointer;
  padding:20px 0;
  font-family:var(--serif);
  font-size:18px;
  font-weight:700;
  line-height:1.35;
  color:var(--ink);
}
.faq summary::-webkit-details-marker{ display:none; }
.faq .plus{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  width:34px; height:34px;
  border-radius:50%;
  background:var(--brand);
  color:#fff;
  transition:transform .2s ease;
}
.faq .plus svg{ width:16px; height:16px; fill:none; stroke:currentColor; stroke-width:2.6; stroke-linecap:round; }
.faq details[open] .plus{ transform:rotate(45deg); }
.faq details p{
  padding:0 0 22px;
  font-size:16px;
  line-height:1.65;
  color:var(--text-soft);
  max-width:900px;
}
@media (min-width:901px){
  .faq-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px; }
  .faq summary{ font-size:19px; }
}

/* ==========================================================================
   FOOTER  (closing CTA + link card)
   ========================================================================== */
.site-footer{
  position:relative;
  overflow-x:clip;
  background:radial-gradient(75% 138% at 50% 50%, var(--ink-3), var(--ink-2));
  color:#fff;
}
.site-footer > .wrap{
  position:relative;
  z-index:1;
  padding-top:64px;
}
.foot-cta{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:26px;
  max-width:564px;
}
.foot-cta h2{
  display:flex;
  align-items:baseline;
  gap:12px;
  font-family:var(--serif);
  font-size:32px;
  line-height:1.1;
  color:#fff;
}
.foot-cta h2 svg{ flex-shrink:0; width:16px; height:26px; fill:var(--brand); }
.foot-cta h2 em{ font-style:italic; font-weight:800; }
.foot-cta p{
  margin-left:28px;
  max-width:400px;
  color:rgba(255,255,255,.88);
  font-size:17px;
  font-weight:500;
  line-height:1.5;
}
.foot-cta .btn{ margin-left:28px; }

.foot-bottom{
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:38px;
  margin-top:52px;
}
.foot-left{
  margin-left:28px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:24px;
}
.foot-left img{ height:44px; width:auto; filter:brightness(0) invert(1); }
.foot-lang{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:14px;
  color:rgba(255,255,255,.8);
}
.foot-lang svg{ width:18px; height:18px; fill:none; stroke:currentColor; stroke-width:1.6; }
.foot-id{
  font-style:normal;
  font-size:13px;
  line-height:1.7;
  color:rgba(255,255,255,.72);
  max-width:280px;
}
.foot-id b{ display:block; color:#fff; font-size:14px; }
.foot-id a{ color:rgba(255,255,255,.85); }

.foot-links-wrap{ position:relative; flex:1; width:100%; }
.foot-photo{
  position:absolute;
  left:12%; bottom:24%;
  width:420px;
  max-width:100%;
  height:auto;
  z-index:1;
  pointer-events:none;
  display:none;
}
.foot-card{
  position:relative;
  z-index:2;
  display:flex;
  flex-direction:column;
  border-radius:32px 32px 0 0;
  background:var(--card);
  padding:26px;
  color:var(--ink);
}
.foot-cols{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:28px 20px;
}
.foot-col h3{
  font-family:var(--sans);
  font-size:14px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#2A3A26;
  margin:0 0 6px;
}
.foot-col .sub{
  display:block;
  font-size:13px;
  line-height:1.7;
  color:#2A3A26;
  opacity:.5;
}
.foot-col ul{ display:flex; flex-direction:column; }
.foot-col a{
  display:inline-block;
  font-size:13px;
  line-height:1.7;
  color:#2A3A26;
  text-decoration:none;
  text-decoration-color:var(--brand);
  text-underline-offset:3px;
}
.foot-col a:hover{ text-decoration-line:underline; }
.foot-row{ flex-direction:row; gap:24px; margin-top:8px; }
.foot-end{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  margin-top:auto;
  padding-top:30px;
}
.copyright{
  font-size:13px;
  color:#2A3A26;
  opacity:.9;
}
.disclaimer{
  position:relative;
  z-index:1;
  background:var(--ink-2);
  color:rgba(255,255,255,.62);
  font-size:12.5px;
  line-height:1.7;
  padding:26px 0 30px;
}
.disclaimer a{ color:rgba(255,255,255,.85); }
@media (min-width:769px){
  .site-footer > .wrap{ padding-top:96px; }
  .foot-cta h2{ font-size:44px; }
  .foot-photo{ display:block; }
  .foot-cols{ grid-template-columns:repeat(4,minmax(0,1fr)); gap:20px; }
  .foot-card{ padding:26px; }
  .foot-end{ flex-direction:row; align-items:flex-end; }
}
@media (min-width:901px){
  .foot-bottom{ flex-direction:row; gap:34px; margin-top:72px; }
  .foot-left{ min-width:280px; gap:32px; }
}

/* ==========================================================================
   COOKIE BAR
   ========================================================================== */
.cookiebar{
  position:fixed;
  left:0; right:0; bottom:0;
  z-index:80;
  background:var(--ink);
  color:rgba(255,255,255,.88);
  box-shadow:0 -10px 40px rgba(0,0,0,.28);
}
.cookiebar[hidden]{ display:none; }
.cookiebar .wrap{
  display:flex;
  flex-direction:column;
  gap:14px;
  padding-top:16px;
  padding-bottom:16px;
}
.cookiebar p{ font-size:13.5px; line-height:1.6; margin:0; }
.cookiebar a{ color:#fff; }
.cb-actions{ display:flex; align-items:center; gap:18px; flex-wrap:wrap; }
.cb-link{ font-size:13px; color:rgba(255,255,255,.75); }
@media (min-width:769px){
  .cookiebar .wrap{ flex-direction:row; align-items:center; justify-content:space-between; gap:30px; }
  .cb-actions{ flex-shrink:0; }
}

@media (prefers-reduced-motion:reduce){
  *{ animation:none !important; transition:none !important; scroll-behavior:auto !important; }
}

/* ==========================================================================
   INNER PAGES  (about / contact / privacy / terms / disclaimer)
   ========================================================================== */
.site-nav ul{
  display:flex;
  align-items:center;
  gap:26px;
}
.site-nav a{
  font-size:14px;
  font-weight:600;
  letter-spacing:.04em;
  color:rgba(255,255,255,.82);
  text-decoration:none;
  transition:color .15s ease-in-out;
}
.site-nav a:hover,
.site-nav a[aria-current="page"]{ color:var(--brand); }

.page-hero{
  background:var(--ink);
  color:#fff;
  padding:56px 0 72px;
}
.page-hero h1{
  font-family:var(--serif);
  font-size:36px;
  font-weight:400;
  line-height:1.12;
  color:#fff;
  margin:14px 0 0;
}
.page-hero > .wrap > p{
  max-width:660px;
  margin-top:20px;
  font-size:17px;
  line-height:1.6;
  color:rgba(255,255,255,.82);
}
.crumbs{
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(255,255,255,.6);
}
.crumbs a{ color:var(--brand); text-decoration:none; }
.crumbs a:hover{ text-decoration:underline; }
@media (min-width:769px){
  .page-hero{ padding:80px 0 96px; }
  .page-hero h1{ font-size:52px; }
}

.prose{
  max-width:780px;
  margin:0 auto;
  padding:56px 0 90px;
}
.prose h2{
  font-family:var(--serif);
  font-size:26px;
  font-weight:800;
  line-height:1.2;
  color:var(--ink);
  margin:44px 0 14px;
}
.prose h2:first-child{ margin-top:0; }
.prose h3{
  font-family:var(--serif);
  font-size:19px;
  font-weight:800;
  color:var(--ink);
  margin:28px 0 10px;
}
.prose p{
  font-size:17px;
  line-height:1.72;
  color:var(--text-soft);
  margin-bottom:16px;
}
.prose strong{ color:var(--ink); font-weight:700; }
.prose a{ color:var(--olive); text-decoration:underline; text-underline-offset:3px; }
.prose a:hover{ color:var(--brand); }
.prose ul,.prose ol{
  margin:0 0 20px;
  padding-left:0;
  display:grid;
  gap:10px;
}
.prose li{
  position:relative;
  padding-left:26px;
  font-size:17px;
  line-height:1.65;
  color:var(--text-soft);
}
.prose ul li::before{
  content:"";
  position:absolute;
  left:2px; top:.62em;
  width:8px; height:8px;
  border-radius:50%;
  background:var(--brand);
}
.prose ol{ counter-reset:pl; }
.prose ol li{ counter-increment:pl; }
.prose ol li::before{
  content:counter(pl) ".";
  position:absolute;
  left:0; top:0;
  font-weight:700;
  color:var(--brand);
}
.prose table{
  width:100%;
  border-collapse:collapse;
  margin:0 0 24px;
  font-size:15.5px;
}
.prose th,.prose td{
  text-align:left;
  padding:12px 14px;
  border-bottom:1px solid var(--hair);
  color:var(--text-soft);
}
.prose th{ color:var(--ink); font-weight:700; background:var(--card-2); }
@media (min-width:769px){
  .prose{ padding:80px 0 110px; }
  .prose h2{ font-size:30px; }
}

.aside{
  margin:30px 0;
  padding:24px 26px;
  border-radius:24px;
  background:var(--card-2);
  border-left:6px solid var(--brand);
}
.aside p{ margin:0; color:var(--text); }
.aside p + p{ margin-top:12px; }

.info-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
  margin:26px 0 30px;
}
.info-card{
  padding:22px 24px;
  border-radius:24px;
  background:var(--card-2);
}
.info-card h3{ margin:0 0 10px; font-size:14px; letter-spacing:.08em; text-transform:uppercase; font-family:var(--sans); font-weight:700; color:var(--ink); }
.info-card p{ margin:0 0 6px; font-size:15.5px; line-height:1.55; }
.info-card a{ color:var(--olive); }
@media (min-width:769px){
  .info-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); gap:20px; }
}

/* inner-page footer variant (no closing-CTA block) */
.foot-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:32px;
  padding-bottom:34px;
  border-bottom:1px solid rgba(255,255,255,.14);
}
.foot-logo{ margin:0 0 18px; }
.foot-logo img{ height:44px; width:auto; filter:brightness(0) invert(1); }
.foot-grid .foot-col h4{
  font-family:var(--sans);
  font-size:14px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#fff;
  margin:0 0 10px;
}
.foot-grid .foot-col ul{ display:flex; flex-direction:column; gap:6px; }
.foot-grid .foot-col a{
  font-size:14px;
  color:rgba(255,255,255,.8);
  text-decoration:none;
}
.foot-grid .foot-col a:hover{ color:var(--brand); }
.site-footer > .wrap > .foot-id{ margin-top:28px; max-width:none; }
.site-footer > .wrap > .copyright{
  margin:16px 0 0;
  padding-bottom:44px;
  color:rgba(255,255,255,.6);
  opacity:1;
}
@media (min-width:769px){
  .foot-grid{ grid-template-columns:2fr 1fr 1fr; gap:40px; }
}

/* ==========================================================================
   CONTACT FORM
   ========================================================================== */
.cform{ margin:26px 0 34px; }
.cform-row{ display:grid; grid-template-columns:1fr; gap:0; }
.cfield{ display:block; margin:0 0 18px; }
.cfield label{
  display:block;
  margin-bottom:8px;
  font-family:var(--sans);
  font-size:13px;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--ink);
}
.cfield .req{ color:var(--brand); }
.cfield .opt{ font-weight:500; letter-spacing:0; text-transform:none; color:var(--text-soft); }
.cform input[type="text"],
.cform input[type="email"],
.cform input[type="url"],
.cform select,
.cform textarea{
  width:100%;
  padding:14px 16px;
  border:2px solid transparent;
  border-radius:14px;
  background:var(--card-2);
  color:var(--text);
  font-family:var(--sans);
  font-size:16px;
  line-height:1.5;
  transition:border-color .15s ease-in-out, background-color .15s ease-in-out;
}
.cform textarea{ resize:vertical; min-height:150px; border-radius:20px; }
.cform select{
  appearance:none;
  -webkit-appearance:none;
  padding-right:44px;
  background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23657853' stroke-width='2.4' stroke-linecap='round'%3e%3cpath d='M6 9l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat:no-repeat;
  background-position:right 16px center;
  background-size:18px 18px;
  cursor:pointer;
}
.cform input::placeholder,
.cform textarea::placeholder{ color:#8B9A85; }
.cform input:focus,
.cform select:focus,
.cform textarea:focus{
  outline:none;
  border-color:var(--brand);
  background:var(--paper);
}
.cform input:user-invalid,
.cform textarea:user-invalid{ border-color:#B4462C; }

.ccheck{ margin:6px 0 24px; }
.ccheck label{
  display:flex;
  align-items:flex-start;
  gap:12px;
  cursor:pointer;
  font-size:15.5px;
  line-height:1.55;
  color:var(--text-soft);
}
.ccheck input{
  flex-shrink:0;
  width:20px; height:20px;
  margin-top:2px;
  accent-color:var(--brand);
  cursor:pointer;
}
.ccheck a{ color:var(--olive); }
.ccheck .req{ color:var(--brand); }

/* honeypot — never shown to a person, never announced to a screen reader */
.cform-hp{
  position:absolute;
  width:1px; height:1px;
  margin:-1px; padding:0; border:0;
  overflow:hidden;
  clip:rect(0 0 0 0);
  clip-path:inset(50%);
  white-space:nowrap;
}

.cform-actions{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:16px;
  margin:0;
}
.cform-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:51px;
  padding:0 34px;
  border:0;
  border-radius:30px;
  background:var(--brand);
  color:#fff;
  font-family:var(--sans);
  font-size:16px;
  font-weight:700;
  letter-spacing:1px;
  line-height:1;
  text-transform:uppercase;
  cursor:pointer;
  transition:background-color .15s ease-in-out;
}
.cform-btn:hover{ background:var(--olive); }
.cform-btn:disabled{ opacity:.6; cursor:progress; }
.cform-note{ font-size:14px; color:var(--text-soft); margin:0; }

.cform-status{
  margin:20px 0 0;
  padding:16px 20px;
  border-radius:16px;
  border-left:5px solid var(--olive);
  background:var(--card-2);
  font-size:15.5px;
  line-height:1.55;
  color:var(--text);
}
.cform-status.is-ok{ border-left-color:var(--olive); background:#E6EFDC; }
.cform-status.is-err{ border-left-color:#B4462C; background:#FBE9E2; }
.cform-status.is-busy{ border-left-color:var(--brand); }

@media (min-width:600px){
  .cform-row{ grid-template-columns:repeat(2,minmax(0,1fr)); gap:0 20px; }
}
