/* =========================================================
   Ascend direction: site-wide restyle, loaded after styles.css.
   Calm grotesk type at weight 400 with tight tracking, cream and
   white grounds, deep green ink, one lime accent for the main
   call to action, soft white pill buttons, painted full-bleed
   imagery. Tokens first so every existing rule picks them up,
   then targeted overrides per section.
   ========================================================= */

:root {
  --bg:           #ffffff;
  --bg-2:         #f3f2ee;
  --bg-3:         #eae9e2;
  --bg-dark:      #f3f2ee;
  --bg-darker:    #eae9e2;
  --surface:      #ffffff;
  --surface-alt:  #f7f6f2;

  --nav-h:        0px;

  --text:         #22332b;
  --text-2:       #34463d;
  --text-muted:   #66736c;
  --text-subtle:  #9aa39d;

  --border:       #e0e0d8;
  --border-strong:#cbccc2;
  --border-soft:  #efefe9;
  --border-dark:  #e0e0d8;

  --c-ink:           #1c2a23;
  --c-accent:        #3f6a2c;
  --c-accent-mid:    #8fb33a;
  --c-accent-bright: #d9f35c;
  --lime:            #d9f35c;
  --lime-hover:      #cdea45;
  --cream:           #f7f1e3;
  --grad-brand:      linear-gradient(135deg, #8fb33a 0%, #c3e24f 55%, #d9f35c 100%);
  --grad-brand-soft: linear-gradient(135deg, rgba(143,179,58,.14), rgba(217,243,92,.14));
  --grad-brand-text: linear-gradient(135deg, #2f5220 0%, #3f6a2c 60%, #557f33 100%);

  --font-serif: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-sans:  "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-mono:  "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  32px;

  --sh-sm:  0 1px 2px rgba(16,37,31,.06);
  --sh-md:  0 8px 24px -12px rgba(16,37,31,.18);
  --sh-lg:  0 24px 50px -24px rgba(16,37,31,.28);
  --sh-pill: 0 5px 16px rgba(16,37,31,.2), 0 2px 4px rgba(16,37,31,.08);
  --ease-soft: cubic-bezier(.22,.8,.24,1);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

/* ---------- Type ---------- */
h1, h2, h3, h4,
.section-title, .cw2-title, .offer-q, .team-name, .final-cta h2 {
  font-weight: 400;
  letter-spacing: -0.035em;
}
.serif-italic,
.section-title .serif-italic,
.final-cta h2 .serif-italic {
  font-style: normal;
  font-weight: 400;
  background: none;
  -webkit-text-fill-color: currentColor;
  color: var(--text-muted);
}
.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: none;
  border: 0;
  padding: 0;
}
.eyebrow-dot { background: var(--c-accent-mid); box-shadow: none; }

/* ---------- Buttons ---------- */
.btn {
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0;
}
.btn--ink {
  background: var(--c-ink);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--sh-pill);
}
.btn--ink:hover { background: #2a3d33; color: #fff; box-shadow: var(--sh-pill); transform: translateY(-1px); }
.btn--ghost {
  background: #fff;
  color: var(--c-ink);
  border: 1px solid #fff;
  box-shadow: var(--sh-pill);
}
.btn--ghost:hover { background: #f1eee6; color: var(--c-ink); border-color: #f1eee6; }

.pill-cta {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 7px 7px 7px 28px;
  border-radius: 999px;
  background: var(--lime);
  color: #17231d;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 12px 30px -12px rgba(0,0,0,.5);
  transition: background .2s ease, transform .3s var(--ease-soft);
}
.pill-cta:hover { background: var(--lime-hover); color: #17231d; transform: translateY(-2px); }
.pill-cta-arrow {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: #141c18;
  color: #fff;
  transition: transform .35s var(--ease-soft);
}
.pill-cta-arrow svg { width: 18px; height: 18px; }
.pill-cta:hover .pill-cta-arrow { transform: rotate(45deg); }

.white-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  padding: 15px 24px;
  border-radius: 999px;
  background: #fff;
  color: #25382f;
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--sh-pill);
  transition: background .2s ease, transform .3s var(--ease-soft);
}
.white-pill:hover { background: #f1eee6; color: #25382f; transform: translateY(-1px); }
.white-pill svg { width: 15px; height: 15px; }

/* =========================================================
   Nav: open header over imagery, solid cream bar once scrolled
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 0;
  display: block;
}
.nav.nav--scrolled { padding-top: 0; }
.nav-inner,
.nav--scrolled .nav-inner,
.nav--menu-open .nav-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 20px 4.2%;
  gap: 32px;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: background-color .35s ease, padding .35s ease, box-shadow .35s ease;
}
@supports (backdrop-filter: url("#glass-distortion")) {
  .nav-inner { backdrop-filter: none; }
}
.nav-inner::after { display: none; }
.nav--scrolled .nav-inner {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(247,246,241,.88);
  box-shadow: 0 1px 0 rgba(34,51,43,.08);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
}
.brand {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--cream);
  text-shadow: 0 1px 12px rgba(0,0,0,.25);
}
.brand-mark { height: 26px; }
.nav--scrolled .brand,
.nav--menu-open .brand { color: var(--text); text-shadow: none; }

.nav-links { gap: 30px; margin-left: auto; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--cream);
  text-shadow: 0 1px 10px rgba(0,0,0,.2);
}
.nav-links a::after { height: 1px; }
.nav--scrolled .nav-links a { color: var(--text-muted); }
.nav--scrolled .nav-links a:hover,
.nav--scrolled .nav-links a.active { color: var(--text); }

.nav .btn--sm,
.nav .btn--ink,
.nav-cta.btn--ink {
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 500;
  background: var(--lime);
  color: #17231d;
  box-shadow: 0 6px 18px -8px rgba(0,0,0,.45);
}
.nav .btn--ink:hover { background: var(--lime-hover); color: #17231d; }

.nav-toggle {
  border: 0;
  color: var(--cream);
  padding: 8px;
}
.nav--scrolled .nav-toggle,
.nav--menu-open .nav-toggle { color: var(--text); border: 0; }

@media (max-width: 980px) {
  .nav { flex-direction: row; }
  .nav-inner { padding: 16px 5%; }
  .nav-mobile-menu {
    position: absolute;
    top: calc(100% + 4px);
    right: 5%;
    width: min(290px, 90vw);
    border-radius: 18px;
    background: #fffdf6;
    border-top: 0;
    box-shadow: 0 16px 40px rgba(16,37,31,.22);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .nav-mobile-menu.is-open { border-top-color: transparent; }
  .nav-mobile-links { padding: 10px 18px 4px; }
  .nav-mobile-links a {
    color: var(--text);
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 16px;
    border-bottom-color: var(--border);
    padding: 13px 0;
  }
  .nav-mobile-links a:hover { color: var(--c-accent); }
  .nav-mobile-cta { padding: 12px 18px 18px; }
  .nav-mobile-cta .btn--ink { background: var(--lime); color: #17231d; }
}

/* Fixed nav: pages with no photo under the header need their own room. */
.hero, .photo-band { margin-top: 0; }
main.article-wrap { padding-top: calc(78px + clamp(40px, 6vw, 80px)); }

/* =========================================================
   Homepage stage: pinned landscape hero, then a panel that
   rises over it as you scroll (driven by script.js).
   ========================================================= */
.hero.stage {
  display: block;
  position: relative;
  height: 270svh;
  min-height: 0;
  padding: 0;
  overflow: visible;
  align-items: initial;
  color: var(--cream);
  background: #16241d;
}
.stage-viewport {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
}
.stage-scene { position: relative; height: 100%; }
.stage-landscape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform-origin: 50% 70%;
  will-change: transform;
}
.stage-flyer {
  position: absolute;
  top: 6%;
  left: 0;
  width: clamp(150px, 19vw, 340px);
  max-width: none;
  z-index: 5;
  pointer-events: none;
  will-change: transform;
}
.stage-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14,24,20,.62), rgba(14,24,20,.12) 55%, rgba(14,24,20,0) 75%),
    linear-gradient(0deg, rgba(12,20,16,.55), rgba(12,20,16,0) 45%, rgba(12,20,16,.22));
}
.stage-hero {
  position: absolute;
  z-index: 3;
  left: 6.2%;
  right: 6.2%;
  bottom: clamp(36px, 8vh, 88px);
  max-width: 940px;
  will-change: transform, opacity;
}
.stage-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(247,241,227,.82);
}
.stage-hero h1 {
  margin: 16px 0 22px;
  font-size: clamp(44px, 5.8vw, 96px);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 400;
  color: var(--cream);
  text-shadow: 0 2px 25px rgba(20,35,30,.22);
}
@media (min-width: 900px) {
  .stage-hero h1 span { display: block; white-space: nowrap; }
}
.stage-lede {
  max-width: 40ch;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.55;
  color: rgba(247,241,227,.9);
}
.stage-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 30px;
}
.stage-sub-link {
  color: rgba(247,241,227,.88);
  font-size: 15px;
  border-bottom: 1px solid rgba(247,241,227,.4);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.stage-sub-link:hover { color: #fff; border-color: #fff; }
.stage-proof {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 40px;
}
.laurel-badge {
  position: relative;
  flex: none;
  width: 104px;
  height: 86px;
  display: grid;
  place-content: center;
  text-align: center;
  color: var(--cream);
}
.laurel-badge svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: rgba(247,241,227,.92);
}
.laurel-badge b { display: block; font-size: 24px; font-weight: 500; line-height: 1; }
.laurel-badge small { display: block; font-size: 9px; line-height: 1.15; margin-top: 3px; letter-spacing: .02em; }
.stage-proof-rule { width: 1px; height: 52px; background: rgba(247,241,227,.35); }
.stage-proof-copy b { display: block; font-size: 15px; font-weight: 500; color: var(--cream); }
.stage-proof-copy small { display: block; margin-top: 4px; font-size: 13px; color: rgba(247,241,227,.78); }

.stage-fold {
  position: absolute;
  inset: 0;
  z-index: 4;
  clip-path: inset(100% 0 0);
  background: #17261f;
  color: var(--cream);
}
.stage-fold-bg {
  position: absolute;
  inset: -4%;
  width: 108%;
  max-width: none;
  height: 108%;
  object-fit: cover;
  will-change: transform;
}
.stage-fold::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(12,22,18,.82), rgba(12,22,18,.35) 62%, rgba(12,22,18,.1)),
    linear-gradient(0deg, rgba(12,22,18,.55), rgba(12,22,18,0) 50%);
}
.stage-fold-inner {
  position: absolute;
  z-index: 2;
  inset: 0;
  padding: 112px 6.2% 48px;
  display: flex;
  flex-direction: column;
  will-change: transform;
}
.stage-fold-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(247,241,227,.28);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(247,241,227,.8);
}
.stage-fold-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
}
.stage-fold h2 {
  margin: 0 0 22px;
  font-size: clamp(40px, 5.6vw, 88px);
  line-height: 1.02;
  letter-spacing: -.045em;
  color: var(--cream);
}
.stage-fold p {
  max-width: 44ch;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.6;
  color: rgba(247,241,227,.88);
}
.stage-fold .white-pill { margin-top: 30px; }

/* No motion: stack the two scenes as plain full-height sections. */
.stage--static.hero.stage { height: auto; }
.stage--static .stage-viewport { position: relative; height: auto; overflow: visible; }
.stage--static .stage-scene { height: 100svh; min-height: 620px; }
.stage--static .stage-flyer { display: none; }
.stage--static .stage-fold { position: relative; height: 100svh; min-height: 620px; clip-path: none; }

@media (max-width: 640px) {
  .hero.stage { height: 230svh; }
  .stage-flyer { top: 4%; width: 42vw; }
  .stage-landscape { object-position: 62% center; }
  .stage-shade {
    background: linear-gradient(0deg, rgba(12,20,16,.8), rgba(12,20,16,.18) 55%, rgba(12,20,16,.5));
  }
  .stage-hero { left: 6%; right: 6%; bottom: 28px; }
  .stage-hero h1 { font-size: clamp(38px, 11vw, 52px); letter-spacing: -.04em; }
  .stage-actions { gap: 18px; margin-top: 24px; }
  .pill-cta { font-size: 15px; padding-left: 22px; }
  .pill-cta-arrow { width: 42px; height: 42px; }
  .stage-proof { gap: 16px; margin-top: 26px; }
  .laurel-badge { width: 88px; height: 72px; }
  .laurel-badge b { font-size: 20px; }
  .stage-fold-inner { padding: 112px 7% 32px; }
  .stage-fold-top span:last-child { display: none; }
  .stage-fold h2 { font-size: clamp(36px, 10vw, 50px); letter-spacing: -.035em; }
}
@media (max-height: 700px) and (min-width: 641px) {
  .stage-hero h1 { font-size: clamp(40px, 5vw, 72px); }
  .stage-proof { display: none; }
}

/* =========================================================
   Content sections
   ========================================================= */
.section { padding-block: clamp(80px, 9vw, 120px); background: var(--bg); }
.section--alt { background: var(--bg-2); }
.section-head {
  text-align: left;
  max-width: none;
  margin: 0 0 clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  column-gap: 6%;
  align-items: end;
}
.section-head > .eyebrow { grid-column: 1 / -1; margin-bottom: 18px; justify-self: start; }
.section-title {
  margin: 0;
  text-align: left;
  max-width: none;
  font-size: clamp(38px, 5vw, 76px);
  line-height: 1.02;
  letter-spacing: -.045em;
  color: var(--text);
}
.section-sub {
  margin: 0;
  max-width: 44ch;
  justify-self: end;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-muted);
}
@media (max-width: 860px) {
  .section-head { grid-template-columns: 1fr; row-gap: 18px; }
  .section-sub { justify-self: start; }
}

/* Reviews marquee */
.testimonials-section { background: var(--bg); }
.testimonial-card {
  background: var(--bg-2);
  border: 0;
  border-radius: var(--r-lg);
  box-shadow: none;
}
.testimonial-quote { color: var(--text-2); }
.testimonial-avatar { background: var(--c-ink); color: var(--lime); }

/* What we do */
.offer {
  background: var(--bg-2);
  border: 0;
  border-radius: var(--r-xl);
  box-shadow: none;
}
.offer-icon-badge { background: var(--c-ink) !important; color: var(--lime) !important; border: 0 !important; }
.offer-eyebrow { font-size: 11px; letter-spacing: .16em; color: var(--text-muted) !important; }
.offer-q { font-size: clamp(28px, 3vw, 44px); line-height: 1.06; letter-spacing: -.04em; color: var(--text); }
.offer-tags span {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text-2);
  border-radius: 999px;
}
.offer-frame { border-radius: var(--r-lg); border-color: var(--border); box-shadow: var(--sh-lg); }

/* Client work */
.cw2 { background: var(--bg-2); padding-block: clamp(80px, 9vw, 120px); }
.cw2-head { text-align: left; max-width: 1240px; padding: 0 28px; }
.cw2-title { font-size: clamp(38px, 5vw, 76px); line-height: 1.02; letter-spacing: -.045em; }
.cw2-card { border-radius: var(--r-lg); border-color: var(--border); box-shadow: none; background: #fff; }
.cw2-card:hover { box-shadow: var(--sh-lg); }
.cw2-all { border-radius: 999px; }

/* Why Rylo: hairline-topped columns */
.why-grid { gap: clamp(24px, 4vw, 56px); border: 0; background: none; }
.why-cell {
  background: none;
  border: 0;
  border-top: 1px solid var(--border-strong);
  border-radius: 0;
  box-shadow: none;
  padding: 28px 0 0;
}
.why-cell h3, .why-cell h4 { font-size: 26px; letter-spacing: -.03em; font-weight: 400; color: var(--text); }
.why-cell p { color: var(--text-muted); line-height: 1.65; }
.why-num { color: var(--c-accent); font-weight: 500; }

/* Executives */
.team-section { background: var(--bg); }
.team-photo-wrap, .team-photo { border-radius: var(--r-xl); }
.team-name { font-size: clamp(40px, 5vw, 72px); letter-spacing: -.045em; }
.name-white { color: var(--text); }
.name-accent { color: var(--text-muted); }
.team-role { letter-spacing: .16em; font-size: 11px; color: var(--c-accent); }
.team-linkedin { color: var(--text); border-bottom: 1px solid var(--border-strong); }

/* Updates */
.insight-card {
  background: #fff;
  border: 0;
  border-top: 1px solid var(--border-strong);
  border-radius: 0;
  box-shadow: none;
  padding: 26px 0 0;
}
.insight-card:hover { box-shadow: none; transform: none; border-top-color: var(--c-ink); }
.section--alt .insight-card { background: transparent; }
.insight-card h3 { font-size: 24px; line-height: 1.2; letter-spacing: -.03em; font-weight: 400; }
.insight-link { color: var(--text); font-weight: 500; }

/* Final call to action + form */
.final-cta {
  background: var(--bg-2);
  color: var(--text);
  text-align: left;
  align-items: flex-start;
  padding: clamp(90px, 10vw, 140px) 6.2%;
}
.final-cta::before { display: none; }
.final-cta h2 {
  font-size: clamp(44px, 6vw, 96px);
  line-height: 1.0;
  letter-spacing: -.045em;
  color: var(--text);
  text-align: left;
}
.final-cta p { color: var(--text-muted); text-align: left; margin-left: 0; }
.final-cta-actions { justify-content: flex-start; }
.contact-form-wrap { margin-left: 0; max-width: 760px; }
.contact-form {
  background: #fff;
  border: 0;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-md);
}
.contact-field input,
.contact-field textarea {
  border-radius: 12px;
  border-color: var(--border);
  background: var(--surface-alt);
}
.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--c-ink);
  box-shadow: 0 0 0 3px rgba(217,243,92,.5);
}
.contact-form-submit.btn--ink { background: var(--lime); color: #17231d; }
.contact-form-submit.btn--ink:hover { background: var(--lime-hover); color: #17231d; }

/* Footer */
.footer { background: var(--bg-2); color: var(--text); border-top: 1px solid var(--border); }
.footer .brand { color: var(--text); text-shadow: none; }
.footer-col h5 { font-size: 10px; letter-spacing: .18em; font-weight: 500; color: var(--text-muted); }
.footer-col ul a { color: var(--text-2); }
.footer-col ul a:hover { color: var(--c-accent); }
.footer-bottom { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--text-muted); }

.scroll-progress-bar { background: var(--lime); }
.cursor-glow { display: none; }

/* Why Rylo flow cards: old amber icon chips move to the green/lime pair */
.whyflow-card { border-radius: var(--r-xl); border-color: var(--border); box-shadow: none; }
.whyflow-icon { background: var(--c-ink) !important; color: var(--lime) !important; border-color: transparent !important; }
.offer-points svg, .offer-pain-lede svg { color: var(--c-accent) !important; }

/* =========================================================
   Reviews page
   ========================================================= */
.rv-hero.photo-band { min-height: clamp(460px, 74svh, 760px); }
.rv-hero.photo-band h1 {
  font-size: clamp(46px, 7vw, 108px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .98;
  color: var(--cream);
}
.rv-hero.photo-band p.lede { color: rgba(247,241,227,.9); }
.rv-section { padding-top: clamp(64px, 8vw, 100px); }
.rv-card { border: 0; background: var(--bg-2); border-radius: var(--r-lg); box-shadow: none; }
.rv-card:hover { box-shadow: var(--sh-md); }
.rv-cta { background: var(--c-ink); border: 0; border-radius: var(--r-lg); }
.rv-cta h3 { color: var(--cream); font-weight: 400; font-size: 28px; }
.rv-cta p { color: rgba(247,241,227,.75); }
.rv-cta a { background: var(--lime); color: #17231d; border-radius: 999px; }
.rv-cta a:hover { background: var(--lime-hover); color: #17231d; }
.rv-close-inner { background: var(--bg-2); border: 0; border-radius: var(--r-xl); }
.rv-close h2 { font-weight: 400; font-size: clamp(32px, 4vw, 56px); letter-spacing: -.04em; }

/* =========================================================
   Portfolio page
   ========================================================= */
.pf-hero { padding-top: 110px; }
.pf-panel {
  border: 0;
  border-radius: var(--r-xl);
  background:
    radial-gradient(900px 480px at 88% -10%, rgba(217,243,92,.14), transparent 62%),
    radial-gradient(700px 420px at 4% 108%, rgba(143,179,58,.16), transparent 60%),
    linear-gradient(160deg, #243a2f 0%, #1a2b23 60%, #111c17 100%);
}
.pf-panel h1 { font-weight: 400; letter-spacing: -.045em; color: var(--cream); }
.pf-panel h1 .dim { color: var(--lime); }
.pf-badge i { background: var(--lime); }
.pf-cta { background: var(--lime); color: #17231d; }
.pf-cta:hover { background: var(--lime-hover); color: #17231d; }
.pf-cta--ghost { background: transparent; color: var(--cream); border: 1px solid rgba(247,241,227,.4); }
.pf-cta--ghost:hover { background: var(--cream); color: #17231d; }
.pf-filter button.on { background: var(--c-ink); border-color: var(--c-ink); }
.case-head h2 { font-weight: 400; letter-spacing: -.04em; }
.case-shot { border-radius: var(--r-lg); }
.case-live { background: var(--lime); color: #17231d; }
.case-live i { background: #17231d; }
.case-cta { background: var(--bg-2); border: 0; border-radius: var(--r-xl); }
.case-cta h3 { font-weight: 400; }

/* =========================================================
   WebGL stage: the drone lifts the next panel like a sheet
   ========================================================= */
.stage-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: none;
}
.stage--gl .stage-canvas { display: block; }
.stage--gl .stage-scene picture,
.stage--gl .stage-landscape,
.stage--gl .stage-shade,
.stage--gl .stage-fold-bg { visibility: hidden; }
.stage--gl .stage-fold {
  clip-path: none;
  background: transparent;
}
.stage--gl .stage-fold::before { display: none; }
.stage--gl .stage-fold-inner { opacity: 0; }
.stage-hero { z-index: 4; }
.stage-fold { z-index: 3; }
.stage-flyer { z-index: 6; }
.stage-fold-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 30px;
}

/* =========================================================
   What we build
   ========================================================= */
.build-grid { display: grid; gap: clamp(28px, 4vw, 48px); }
.build-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding: clamp(28px, 3.4vw, 52px);
  border-radius: var(--r-xl);
  background: var(--bg-2);
}
.build-card--dark { background: var(--c-ink); color: var(--cream); }
.build-num {
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--text-muted);
}
.build-card--dark .build-num { color: rgba(247,241,227,.6); }
.build-card h3 {
  margin: 14px 0 14px;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.05;
  letter-spacing: -.04em;
  font-weight: 400;
}
.build-card--dark h3 { color: var(--cream); }
.build-copy > p { color: var(--text-muted); font-size: 17px; line-height: 1.6; max-width: 46ch; }
.build-card--dark .build-copy > p { color: rgba(247,241,227,.78); }
.build-points { list-style: none; margin: 22px 0 26px; padding: 0; display: grid; gap: 10px; }
.build-points li {
  position: relative;
  padding-left: 26px;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--text-2);
}
.build-card--dark .build-points li { color: rgba(247,241,227,.88); }
.build-points li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-accent-mid);
}
.build-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border-strong);
  padding-bottom: 4px;
  transition: gap .25s var(--ease-soft);
}
.build-link:hover { gap: 16px; color: var(--text); }
.build-link svg { width: 16px; height: 16px; }
.build-link--lime { color: var(--lime); border-color: rgba(217,243,92,.45); }
.build-link--lime:hover { color: var(--lime); }
.build-visual { min-width: 0; }

/* Browser frame with a live site inside */
.browser-frame {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--sh-lg);
}
.build-card--dark .browser-frame { border-color: rgba(247,241,227,.16); }
.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  height: 34px;
  background: #ecebe5;
  border-bottom: 1px solid var(--border);
}
.browser-bar i { width: 8px; height: 8px; border-radius: 50%; background: #c9cac0; }
.browser-bar i:first-child { background: #e8a2a2; }
.browser-bar i:nth-child(2) { background: #e8cf9a; }
.browser-bar i:nth-child(3) { background: #a9d3a2; }
.browser-url {
  margin-left: 10px;
  font-size: 11.5px;
  color: var(--text-muted);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.browser-vp {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-3);
}
.browser-vp iframe {
  position: absolute;
  top: 0; left: 0;
  width: 1440px;
  height: 1000px;
  border: 0;
  transform-origin: 0 0;
  pointer-events: none;
  background: #fff;
  opacity: 0;
  transition: opacity .8s ease;
}
.browser-vp iframe.loaded { opacity: 1; }
.frame-poster {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 0 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(150deg, color-mix(in srgb, var(--accent, #1c2a23) 92%, #000), color-mix(in srgb, var(--accent, #1c2a23) 45%, #000));
  transition: opacity .8s ease;
}
.frame-poster.hide { opacity: 0; }

/* The small working model of UtahOp */
.utah-app {
  border-radius: 16px;
  overflow: hidden;
  background: #101a15;
  border: 1px solid rgba(247,241,227,.14);
  box-shadow: var(--sh-lg);
  color: var(--cream);
}
.utah-top {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(247,241,227,.12);
  background: #16241d;
}
.utah-logo { font-weight: 500; letter-spacing: -.02em; }
.utah-tabs { display: flex; gap: 6px; margin-left: auto; }
.utah-tabs button {
  font: inherit;
  font-size: 12.5px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(247,241,227,.66);
  cursor: pointer;
  transition: background .2s, color .2s;
}
.utah-tabs button:hover { color: var(--cream); background: rgba(247,241,227,.08); }
.utah-tabs button.on { background: var(--lime); color: #17231d; }
.utah-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(247,241,227,.12); }
.utah-stat { background: #101a15; padding: 16px; }
.utah-stat b { display: block; font-size: 22px; font-weight: 500; }
.utah-stat span { font-size: 11.5px; color: rgba(247,241,227,.6); }
.utah-rows { padding: 8px 0 14px; }
.utah-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  font-size: 13.5px;
  border-bottom: 1px solid rgba(247,241,227,.07);
}
.utah-row:last-child { border-bottom: 0; }
.utah-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); flex: none; }
.utah-row b { font-weight: 500; }
.utah-row em { font-style: normal; color: rgba(247,241,227,.55); margin-left: auto; }
.utah-tag {
  flex: none;
  font-size: 10.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(247,241,227,.22);
  color: rgba(247,241,227,.8);
}

/* =========================================================
   Use cases and reviews on the homepage
   ========================================================= */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}
.case-tile { display: block; color: inherit; }
.case-tile .browser-frame { transition: transform .4s var(--ease-soft), box-shadow .4s var(--ease-soft); }
.case-tile:hover .browser-frame { transform: translateY(-4px); box-shadow: 0 30px 60px -28px rgba(16,37,31,.4); }
.case-meta { padding: 14px 2px 0; }
.case-meta b { display: block; font-weight: 500; font-size: 16px; letter-spacing: -.02em; }
.case-meta span { display: block; margin-top: 3px; font-size: 13.5px; color: var(--text-muted); }
.cases-foot { margin-top: clamp(34px, 4vw, 56px); }
.rv-wall--home { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(18px, 2vw, 24px); }
.rv-wall--home .rv-card { background: var(--bg-2); opacity: 1; transform: none; }
.reviews-home .rv-card blockquote { margin-bottom: 18px; }

/* =========================================================
   Contact
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.final-cta .contact-intro h2 { margin: 18px 0 16px; }
.contact-intro p { max-width: 42ch; }
.contact-direct { display: grid; gap: 8px; margin-top: 26px; }
.contact-direct a {
  font-size: 15.5px;
  color: var(--text);
  border-bottom: 1px solid var(--border-strong);
  padding-bottom: 4px;
  width: fit-content;
}
.contact-direct a:hover { color: var(--c-accent); }
.final-cta .contact-form { margin: 0; max-width: none; }

@media (max-width: 900px) {
  .build-card { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rv-wall--home { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .cases-grid { grid-template-columns: 1fr; }
  .utah-stats { grid-template-columns: 1fr 1fr; }
  .utah-stat:last-child { display: none; }
  .stage-fold-actions { gap: 16px; }
}

/* Review cards on the homepage (the Reviews page has its own copy) */
.reviews-home .rv-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border-radius: var(--r-lg);
  background: var(--bg-2);
}
.reviews-home .rv-quote-mark {
  font-size: 2.4rem;
  line-height: .8;
  color: var(--accent, var(--c-accent));
  opacity: .3;
  margin-bottom: 8px;
}
.reviews-home .rv-card blockquote {
  margin: 0 0 20px;
  flex: 1;
  font-size: 15.5px;
  line-height: 1.66;
  color: var(--text-2);
}
.reviews-home .rv-author {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.reviews-home .rv-avatar {
  flex: none;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent, var(--c-accent)) 14%, #fff);
  border: 1px solid color-mix(in srgb, var(--accent, var(--c-accent)) 32%, #fff);
  color: var(--accent, var(--c-accent));
  font-size: .74rem;
  font-weight: 600;
}
.reviews-home .rv-who { min-width: 0; }
.reviews-home .rv-who b {
  display: block;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}
.reviews-home .rv-who > span {
  display: block;
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: 1px;
}

/* =========================================================
   HERO: video background with an on-load reveal
   ========================================================= */
.hero-v {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0d1512;
  isolation: isolate;
}
.hero-v-media { position: absolute; inset: 0; z-index: 0; }
.hero-v-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.14);
  transition: transform 2.6s var(--ease-soft);
  will-change: transform;
}
.hero-v.is-in .hero-v-video { transform: scale(1.02); }
.hero-v-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,18,15,.62) 0%, rgba(10,18,15,.28) 34%, rgba(10,18,15,.72) 100%),
    linear-gradient(100deg, rgba(10,18,15,.7) 0%, rgba(10,18,15,.15) 62%);
}
.hero-v-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: clamp(110px, 16vh, 180px);
  padding-bottom: clamp(90px, 14vh, 150px);
  color: #fff;
}
.hero-v-eyebrow {
  font-size: 11.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  margin-bottom: 20px;
}
.hero-v-title {
  margin: 0;
  max-width: 17ch;
  font-size: clamp(38px, 6.4vw, 92px);
  line-height: 1.03;
  letter-spacing: -.045em;
  font-weight: 400;
  color: #fff;
}
.hero-v-title .rise-line { display: block; overflow: hidden; padding-bottom: .06em; }
.hero-v-lede {
  margin: 22px 0 0;
  max-width: 48ch;
  font-size: clamp(16px, 1.35vw, 19.5px);
  line-height: 1.6;
  color: rgba(255,255,255,.85);
}
.hero-v-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 26px;
  margin-top: 34px;
}
.hero-v-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.4);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  backdrop-filter: blur(6px);
  transition: background .25s ease, border-color .25s ease, transform .3s var(--ease-soft);
}
.hero-v-ghost:hover { background: rgba(255,255,255,.14); border-color: #fff; color: #fff; transform: translateY(-2px); }
.hero-v-ghost svg { width: 15px; height: 15px; }
.hero-v-proof {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 46px;
  color: #fff;
}
.hero-v-proof .laurel-badge { color: rgba(255,255,255,.9); }
.hero-v-proof .stage-proof-rule { background: rgba(255,255,255,.28); }
.hero-v-proof .stage-proof-copy b { color: #fff; }
.hero-v-proof .stage-proof-copy small { color: rgba(255,255,255,.7); }
.hero-v-scroll {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
}
.hero-v-scroll:hover { color: #fff; }
.hero-v-scroll i {
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, rgba(255,255,255,.75), rgba(255,255,255,0));
  animation: heroScroll 2.4s ease-in-out infinite;
}
@keyframes heroScroll {
  0%   { transform: scaleY(.2); transform-origin: top; opacity: .3; }
  45%  { transform: scaleY(1);  transform-origin: top; opacity: 1; }
  46%  { transform: scaleY(1);  transform-origin: bottom; }
  100% { transform: scaleY(.2); transform-origin: bottom; opacity: .2; }
}

/* On-load reveal. Everything starts hidden and slides up in order. */
.hero-v .rise,
.hero-v .rise-line > span {
  display: block;
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s var(--ease-soft), transform 1.05s var(--ease-soft);
  transition-delay: var(--d, 0s);
}
.hero-v .rise-line > span { display: inline-block; }
.hero-v-eyebrow.rise { display: inline-block; }
.hero-v.is-in .rise,
.hero-v.is-in .rise-line > span { opacity: 1; transform: none; }

/* =========================================================
   Section to section transitions
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .85s var(--ease-soft), transform .95s var(--ease-soft);
}
.reveal.in { opacity: 1; transform: none; }
.section { position: relative; }

/* =========================================================
   Websites card extras
   ========================================================= */
.build-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 26px;
}
.build-stats div {
  flex: 1 1 120px;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--bg-3, #efece4);
  border: 1px solid var(--border);
}
.build-stats b { display: block; font-size: 19px; font-weight: 500; letter-spacing: -.02em; }
.build-stats span { display: block; margin-top: 2px; font-size: 12.5px; color: var(--text-muted); }

/* =========================================================
   UtahOp showcase
   ========================================================= */
.ushow {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 44px);
  align-items: start;
}
.ushow-rail { display: grid; gap: 10px; }
.ushow-tab {
  font: inherit;
  text-align: left;
  cursor: pointer;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  transition: background .25s ease, border-color .25s ease, transform .3s var(--ease-soft);
}
.ushow-tab:hover { background: #fff; transform: translateX(3px); }
.ushow-tab b { display: block; font-size: 16px; font-weight: 500; letter-spacing: -.02em; }
.ushow-tab span { display: block; margin-top: 4px; font-size: 13px; line-height: 1.45; color: var(--text-muted); }
.ushow-tab.on {
  background: var(--c-ink);
  border-color: var(--c-ink);
  color: var(--cream);
}
.ushow-tab.on span { color: rgba(247,241,227,.72); }
.ushow-frame {
  border-radius: 16px;
  overflow: hidden;
  background: #0e1512;
  border: 1px solid rgba(28,42,35,.16);
  box-shadow: var(--sh-lg);
}
.ushow-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 14px;
  background: #17211c;
  border-bottom: 1px solid rgba(247,241,227,.1);
}
.ushow-bar i { width: 8px; height: 8px; border-radius: 50%; background: rgba(247,241,227,.28); }
.ushow-url { margin-left: 12px; font-size: 11.5px; color: rgba(247,241,227,.55); }
.ushow-vp { position: relative; aspect-ratio: 1600 / 750; background: #0e1512; overflow: hidden; }
.ushow-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity .6s var(--ease-soft), transform .9s var(--ease-soft);
}
.ushow-img.on { opacity: 1; transform: none; }
.ushow-dots { display: none; justify-content: center; gap: 8px; margin-top: 16px; }
.ushow-dots button {
  width: 8px; height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(28,42,35,.25);
  cursor: pointer;
}
.ushow-dots button.on { background: var(--c-accent); }
.ushow-points {
  list-style: none;
  margin: clamp(30px, 4vw, 48px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 22px);
}
.ushow-points li {
  padding: 20px;
  border-radius: 14px;
  background: var(--bg-2);
  border: 1px solid var(--border);
}
.ushow-points b { display: block; font-size: 15.5px; font-weight: 500; letter-spacing: -.02em; }
.ushow-points span { display: block; margin-top: 6px; font-size: 13.5px; line-height: 1.5; color: var(--text-muted); }
.ushow-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 26px;
  margin-top: clamp(28px, 3.4vw, 42px);
}
.ushow-cta-link { font-size: 15px; color: var(--text-muted); border-bottom: 1px solid var(--border-strong); padding-bottom: 3px; }
.ushow-cta-link:hover { color: var(--text); }

/* Green button, used for every UtahOp and send action */
.btn-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border: 0;
  border-radius: 10px;
  background: var(--c-accent);
  color: #fff;
  font: inherit;
  font-size: 15.5px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 14px 28px -18px rgba(28,58,20,.9);
  transition: background .22s ease, transform .3s var(--ease-soft), box-shadow .3s var(--ease-soft);
}
.btn-green:hover { background: #4a7d34; color: #fff; transform: translateY(-2px); box-shadow: 0 20px 34px -18px rgba(28,58,20,.95); }
.btn-green:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.btn-green svg { width: 16px; height: 16px; }
.btn-green--full { width: 100%; padding: 18px 30px; font-size: 16px; }

/* =========================================================
   Social proof, small cards
   ========================================================= */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 20px);
}
.proof-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--border);
  transition: transform .35s var(--ease-soft), box-shadow .35s var(--ease-soft);
}
.proof-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.proof-card p { margin: 0; flex: 1; font-size: 14.5px; line-height: 1.6; color: var(--text-2); }
.proof-who { display: flex; align-items: center; gap: 10px; padding-top: 14px; border-top: 1px solid var(--border); }
.proof-avatar {
  flex: none;
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent, #3f6a2c) 14%, #fff);
  border: 1px solid color-mix(in srgb, var(--accent, #3f6a2c) 32%, #fff);
  color: var(--accent, #3f6a2c);
  font-size: .72rem;
  font-weight: 600;
}
.proof-who b { display: block; font-size: 13.8px; font-weight: 500; line-height: 1.3; }
.proof-who small { display: block; margin-top: 1px; font-size: 12px; color: var(--text-muted); }

/* =========================================================
   Contact form, rectangular boxes and a green send button
   ========================================================= */
.form-box {
  padding: clamp(22px, 2.6vw, 34px);
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--sh-lg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.form-field--full { margin-bottom: 8px; }
.form-field label { font-size: 13px; font-weight: 500; color: var(--text); }
.form-field label span { color: var(--text-muted); font-weight: 400; }
.form-field input,
.form-field select,
.form-field textarea {
  font: inherit;
  font-size: 15px;
  width: 100%;
  padding: 14px 15px;
  border-radius: 8px;
  border: 1px solid rgba(28,42,35,.2);
  background: #f4f1ea;
  color: var(--text);
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.form-field textarea { resize: vertical; line-height: 1.55; }
.form-field select {
  appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231c2a23' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: #9aa196; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 0;
  background: #fff;
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(63,106,44,.16);
}
.form-box .contact-form-hint { font-size: 12.5px; color: var(--text-muted); margin: 0 0 16px; }
.form-box .contact-form-status { margin: 14px 0 0; font-size: 14px; }

/* =========================================================
   Footer call to action
   ========================================================= */
.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding: clamp(26px, 3vw, 40px);
  margin-bottom: clamp(32px, 4vw, 56px);
  border-radius: var(--r-xl);
  background: #fff;
  border: 1px solid var(--border);
}
.footer-cta-copy h3 {
  margin: 0;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.1;
  letter-spacing: -.035em;
  font-weight: 400;
  color: var(--text);
}
.footer-cta-copy p { margin: 8px 0 0; font-size: 15px; color: var(--text-muted); max-width: 46ch; }
.footer-cta-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px 22px; }
.footer-cta-ghost { font-size: 15px; color: var(--text-muted); border-bottom: 1px solid var(--border-strong); padding-bottom: 3px; }
.footer-cta-ghost:hover { color: var(--text); border-color: var(--text); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .ushow { grid-template-columns: 1fr; }
  .ushow-rail {
    grid-auto-flow: column;
    grid-auto-columns: minmax(200px, 1fr);
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
  }
  .ushow-rail::-webkit-scrollbar { display: none; }
  .ushow-points { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .proof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .hero-v { min-height: 92svh; }
  .hero-v-proof { gap: 14px; margin-top: 34px; }
  .hero-v-actions .pill-cta,
  .hero-v-ghost { width: 100%; justify-content: center; }
  .build-stats div { flex: 1 1 100%; }
  .form-row { grid-template-columns: 1fr; }
  .ushow-tab span { display: none; }
  .ushow-rail { grid-auto-columns: minmax(150px, 1fr); }
  .ushow-dots { display: flex; }
  .ushow-points { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .footer-cta { flex-direction: column; align-items: flex-start; }
  .footer-cta-actions .btn-green { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-v-video { transition: none; transform: none; }
  .hero-v .rise,
  .hero-v .rise-line > span { opacity: 1; transform: none; transition: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-v-scroll i { animation: none; }
}

/* The footer styles its own links, so state the button colour again here. */
.footer .footer-cta .btn-green,
.footer .footer-cta .btn-green:hover,
.footer .footer-cta .btn-green:visited { color: #fff; }

/* =========================================================
   Pricing page
   ========================================================= */
.price-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(460px, 62vh, 640px);
  overflow: hidden;
  background: #0d1512;
}
.price-hero-media { position: absolute; inset: 0; }
.price-hero-img { width: 100%; height: 100%; max-width: none; object-fit: cover; display: block; }
.price-hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,18,15,.62) 0%, rgba(10,18,15,.2) 42%, rgba(10,18,15,.66) 100%),
    linear-gradient(95deg, rgba(10,18,15,.8) 0%, rgba(10,18,15,.34) 46%, rgba(10,18,15,0) 72%);
}
.price-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: clamp(120px, 18vh, 200px);
  padding-bottom: clamp(48px, 7vh, 80px);
  color: #fff;
}
.price-hero-inner h1 {
  margin: 0;
  font-size: clamp(36px, 5.6vw, 76px);
  line-height: 1.04;
  letter-spacing: -.045em;
  font-weight: 400;
  color: #fff;
}
.price-hero-inner > p {
  margin: 20px 0 0;
  max-width: 54ch;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.6;
  color: rgba(255,255,255,.85);
}
.price-hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.price-hero-badges span {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35);
  font-size: 13px;
  color: #fff;
  backdrop-filter: blur(6px);
}

/* Plan cards */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  align-items: stretch;
}
.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--border);
  transition: transform .35s var(--ease-soft), box-shadow .35s var(--ease-soft);
}
.plan-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.plan-card--best { border-color: var(--c-accent); box-shadow: 0 24px 50px -30px rgba(28,58,20,.5); }
.plan-flag {
  position: absolute;
  z-index: 3;
  top: 14px; right: 14px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--lime);
  color: #17231d;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .02em;
}
.plan-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-3); }
.plan-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  display: block;
  transition: transform .7s var(--ease-soft);
}
.plan-card:hover .plan-media img { transform: scale(1.05); }
.plan-body { display: flex; flex-direction: column; flex: 1; padding: clamp(22px, 2.4vw, 30px); }
.plan-body h2 {
  margin: 0;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -.035em;
  font-weight: 500;
}
.plan-for { margin: 8px 0 0; font-size: 14.5px; line-height: 1.55; color: var(--text-muted); min-height: 3.1em; }
.plan-price { display: flex; align-items: baseline; gap: 4px; margin: 20px 0 4px; }
.plan-cur { font-size: 22px; font-weight: 500; color: var(--text-muted); }
.plan-price b { font-size: clamp(42px, 4.4vw, 56px); font-weight: 500; letter-spacing: -.05em; line-height: 1; }
.plan-price em { font-style: normal; margin-left: 8px; font-size: 13.5px; color: var(--text-muted); }
.plan-points { list-style: none; margin: 22px 0 26px; padding: 0; display: grid; gap: 11px; flex: 1; }
.plan-points li {
  position: relative;
  padding-left: 26px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text-2);
}
.plan-points li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--c-accent) 16%, #fff) url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233f6a2c' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 10px no-repeat;
}
.plan-then { display: block; margin-top: 12px; text-align: center; font-size: 12.5px; color: var(--text-muted); }

/* Hosting and care */
.care-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.care-points { list-style: none; margin: clamp(26px, 3vw, 36px) 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.care-points li { padding: 16px 18px; border-radius: 12px; background: #fff; border: 1px solid var(--border); }
.care-points b { display: block; font-size: 15px; font-weight: 500; }
.care-points span { display: block; margin-top: 4px; font-size: 13px; line-height: 1.45; color: var(--text-muted); }
.care-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px 24px; margin-top: clamp(26px, 3vw, 36px); }
.care-visual { border-radius: 18px; overflow: hidden; box-shadow: var(--sh-lg); }
.care-visual img { width: 100%; max-width: none; display: block; }

/* Comparison table */
.price-table-wrap { overflow-x: auto; border-radius: 16px; border: 1px solid var(--border); background: #fff; }
.price-table { width: 100%; border-collapse: collapse; min-width: 720px; }
.price-table th,
.price-table td { padding: 16px 18px; text-align: left; font-size: 14.5px; border-bottom: 1px solid var(--border); }
.price-table thead th {
  background: var(--c-ink);
  color: var(--cream);
  font-weight: 500;
  font-size: 15px;
  border-bottom: 0;
}
.price-table thead th span { display: block; margin-top: 3px; font-size: 12.5px; color: rgba(247,241,227,.65); }
.price-table tbody th { font-weight: 500; color: var(--text); }
.price-table tbody td { color: var(--text-muted); }
.price-table tbody tr:last-child th,
.price-table tbody tr:last-child td { border-bottom: 0; }
.price-table tbody tr:nth-child(even) { background: var(--bg-2); }

/* UtahOp strip */
.price-utah-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(30px, 4vw, 60px);
  align-items: center;
}
.price-utah-shot { border-radius: 16px; overflow: hidden; border: 1px solid rgba(28,42,35,.16); box-shadow: var(--sh-lg); }
.price-utah-shot img { width: 100%; max-width: none; display: block; }

/* FAQ */
.faq-list { display: grid; gap: 12px; max-width: 860px; }
.faq-item {
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  padding: 0 20px;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 22px;
  line-height: 1;
  color: var(--text-muted);
  transition: transform .25s var(--ease-soft);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 0 0 18px; font-size: 14.5px; line-height: 1.65; color: var(--text-muted); max-width: 64ch; }

@media (max-width: 1024px) {
  .plan-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .plan-for { min-height: 0; }
  .care-grid { grid-template-columns: 1fr; }
  .price-utah-inner { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .care-points { grid-template-columns: 1fr; }
  .care-actions .btn-green { width: 100%; }
}

/* The care section has no picture, so the list uses the full width. */
.care-grid--solo { grid-template-columns: 1fr; max-width: 900px; }
.care-grid--solo .care-points { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px) { .care-grid--solo .care-points { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .care-grid--solo .care-points { grid-template-columns: 1fr; } }

/* =========================================================
   UtahOp landing page
   ========================================================= */
.uop-hero {
  position: relative;
  background: #111111;
  color: #e9e9e6;
  overflow: hidden;
}
.uop-hero::before {
  content: "";
  position: absolute;
  inset: -30% -10% auto -10%;
  height: 120%;
  background:
    radial-gradient(60% 55% at 22% 8%, rgba(56,214,168,.16), transparent 70%),
    radial-gradient(45% 45% at 88% 0%, rgba(217,243,92,.1), transparent 70%);
  pointer-events: none;
}
.uop-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: clamp(130px, 19vh, 210px);
  padding-bottom: clamp(56px, 8vh, 92px);
}
.uop-hero .hero-v-eyebrow { color: rgba(233,233,230,.6); display: inline-block; }
.uop-hero h1 {
  margin: 0;
  font-size: clamp(38px, 5.8vw, 80px);
  line-height: 1.03;
  letter-spacing: -.045em;
  font-weight: 400;
  color: #fff;
}
.uop-hero > .container > p {
  margin: 22px 0 0;
  max-width: 56ch;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.6;
  color: rgba(233,233,230,.72);
}
.uop-hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px 26px; margin-top: 34px; }
.uop-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: rgba(233,233,230,.78);
  border-bottom: 1px solid rgba(233,233,230,.3);
  padding-bottom: 3px;
}
.uop-ghost:hover { color: #fff; border-color: #fff; }
.uop-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(38px, 5vw, 60px);
}
.uop-hero-stats div {
  flex: 1 1 180px;
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
}
.uop-hero-stats b { display: block; font-size: 30px; font-weight: 500; letter-spacing: -.04em; color: #fff; }
.uop-hero-stats span { display: block; margin-top: 3px; font-size: 13px; color: rgba(233,233,230,.6); }

/* The demo itself sits on the app's own dark background */
.uop-demo {
  background: #0d0d0d;
  padding: clamp(56px, 8vw, 100px) 0 clamp(56px, 8vw, 100px);
  border-top: 1px solid rgba(255,255,255,.08);
}
.uop-demo-head { margin-bottom: clamp(26px, 3vw, 40px); }
.uop-demo-head .section-title { color: #fff; }
.uop-demo-head .section-title .serif-italic { color: rgba(233,233,230,.55); }
.uop-demo-head .section-sub { color: rgba(233,233,230,.66); }
.uop-demo-head .eyebrow { color: rgba(233,233,230,.6); }
.utah-live { margin-top: 1.5rem; }
.utah-live-frame {
  display: block;
  width: 100%;
  height: 980px;
  border: 0;
  border-radius: 16px;
  background: #101010;
  box-shadow: 0 40px 80px -40px rgba(0,0,0,.9);
}
.utah-live-note {
  margin: .9rem 0 0;
  font-size: .875rem;
  color: rgba(233,233,230,.55);
}
.utah-live-note a { color: rgba(233,233,230,.85); border-bottom: 1px solid rgba(233,233,230,.35); padding-bottom: 2px; }
.utah-live-note a:hover { color: #fff; border-color: #fff; }

/* What it does */
.uop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}
.uop-card {
  padding: clamp(22px, 2.4vw, 30px);
  border-radius: 16px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  transition: transform .35s var(--ease-soft), box-shadow .35s var(--ease-soft);
}
.uop-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.uop-num { font-size: 11px; letter-spacing: .2em; color: var(--text-muted); }
.uop-card h3 {
  margin: 12px 0 10px;
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: -.03em;
  font-weight: 500;
}
.uop-card p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--text-muted); }

/* Why */
.uop-why-inner {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 4vw, 64px);
  align-items: start;
}
.uop-why-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.uop-why-list li { padding: 20px 22px; border-radius: 14px; background: #fff; border: 1px solid var(--border); }
.uop-why-list b { display: block; font-size: 16px; font-weight: 500; letter-spacing: -.02em; }
.uop-why-list span { display: block; margin-top: 5px; font-size: 14.5px; line-height: 1.55; color: var(--text-muted); }

/* Closing call to action */
.uop-cta { background: #111111; color: #e9e9e6; }
.uop-cta-inner { padding: clamp(60px, 9vw, 110px) 0; text-align: center; }
.uop-cta-inner h2 {
  margin: 0;
  font-size: clamp(32px, 4.4vw, 60px);
  line-height: 1.05;
  letter-spacing: -.045em;
  font-weight: 400;
  color: #fff;
}
.uop-cta-inner p { margin: 16px auto 0; max-width: 52ch; font-size: 17px; line-height: 1.6; color: rgba(233,233,230,.7); }
.uop-cta-actions { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 14px 26px; margin-top: 34px; }

@media (max-width: 1024px) {
  .uop-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .uop-why-inner { grid-template-columns: 1fr; }
}
@media (max-width: 900px) { .utah-live-frame { height: 860px; } }
@media (max-width: 700px) {
  .uop-grid { grid-template-columns: 1fr; }
  .uop-hero-actions .btn-green,
  .uop-cta-actions .btn-green { width: 100%; justify-content: center; }
  .uop-hero-stats div { flex: 1 1 100%; }
}
@media (max-width: 600px) { .utah-live-frame { height: 790px; } }
