/* ==========================================================================
   Syncory — Landing page styles
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Brand colours */
  --green:        #032A22;   /* forest green — brand & display headings */
  --ink:          #12131B;   /* near-black navy — sub headings, labels   */
  --accent:       #0F8DB5;   /* teal blue — buttons, badge, links        */
  --accent-600:   #0C7B9F;   /* hover                                    */
  --teal-card:    #01516A;   /* dark teal collaboration card             */
  --lime:         #CBEC41;   /* lime CTA                                  */
  --footer:       #03212B;   /* footer background                        */
  --muted:        #5A6664;   /* body copy                                */
  --muted-2:      #6b7674;   /* lighter body copy                        */

  /* Feature card tints */
  --c-cyan:   #DEFFFD;
  --c-cyan-2: #DCF7FF;
  --c-pink:   #FFECEE;
  --c-yellow: #FFF7AE;
  --c-purple: #CECEFF;

  /* Neutrals */
  --bg:       #ffffff;
  --border:   #E4E7E9;
  --border-2: #DDE1E3;

  /* Layout */
  --container: 1240px;
  --gap: 32px;
  --radius: 18px;
  --radius-lg: 28px;

  --shadow-sm: 0 2px 10px rgba(3, 42, 34, .05);
  --shadow-card: 0 10px 30px rgba(3, 42, 34, .06);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: 0; background: none; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--green); color: #fff; padding: 10px 16px;
  border-radius: 8px; z-index: 200; transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-shadow: 3px 3px 0 rgba(4, 22, 18, .92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 500;
  font-size: .98rem;
  padding: 13px 22px;
  border-radius: 10px;
  line-height: 1;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
  white-space: nowrap;
}
.btn--sm { padding: 11px 18px; font-size: .92rem; }

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--btn-shadow);
}
.btn--primary:hover { background: var(--accent-600); transform: translate(1px, 1px); box-shadow: 2px 2px 0 rgba(4,22,18,.92); }
.btn--primary:active { transform: translate(3px, 3px); box-shadow: 0 0 0 rgba(4,22,18,.92); }

.btn--ghost {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid #cfd4d6;
}
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-1px); }

.btn--lime {
  background: var(--lime);
  color: var(--green);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 15px 24px;
  border-radius: 12px;
}
.btn--lime svg { width: 18px; height: 18px; }
.btn--lime:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(203,236,65,.4); }

.link-plain { font-weight: 500; }
.link-plain:hover { color: var(--accent); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.site-header.is-scrolled {
  box-shadow: 0 4px 20px rgba(3,42,34,.06);
  border-color: rgba(3,42,34,.06);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--green);
}
.brand__logo { height: 26px; width: auto; display: block; }
.brand--light { color: #fff; }

.nav { margin-inline: auto; }
.nav__list { display: flex; gap: 36px; }
.nav__list a {
  font-weight: 500;
  color: #33413d;
  position: relative;
  padding: 4px 0;
}
.nav__list a::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--accent);
  transition: width .25s var(--ease);
}
.nav__list a:hover { color: var(--green); }
.nav__list a:hover::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: 20px; }

.nav-toggle { display: none; width: 42px; height: 42px; flex-direction: column; justify-content: center; gap: 5px; padding: 0 9px; border-radius: 10px; }
.nav-toggle span { height: 2.4px; width: 100%; background: var(--green); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

.mobile-menu {
  border-top: 1px solid var(--border);
  background: #fff;
  padding: 12px 24px 24px;
}
.mobile-menu ul { display: flex; flex-direction: column; }
.mobile-menu li a { display: block; padding: 14px 4px; font-weight: 500; border-bottom: 1px solid var(--border); }
.mobile-menu__actions { display: flex; flex-direction: column; gap: 12px; margin-top: 18px; }
.mobile-menu__actions .btn { width: 100%; }
.mobile-menu__actions .link-plain { text-align: center; padding: 10px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { padding-top: clamp(48px, 8vw, 96px); text-align: center; }

.hero__title {
  font-weight: 700;
  color: var(--green);
  font-size: clamp(2.4rem, 5.6vw, 4.15rem);
  line-height: 1.06;
  letter-spacing: -.015em;
  margin-inline: auto;
}
.hero__title .hl {
  display: inline-block;
  position: relative;
  color: #fff;
  background: var(--accent);
  padding: .04em .34em .12em;
  margin-top: .18em;
  box-shadow: 9px 9px 0 rgba(6, 26, 22, .92);
}

.hero__sub {
  margin: clamp(22px, 3vw, 32px) auto 0;
  max-width: 56ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  font-weight: 400;
}

.hero__cta {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__mockup {
  margin: clamp(44px, 6vw, 78px) auto 0;
  max-width: 1150px;
  filter: drop-shadow(0 34px 60px rgba(3, 42, 34, .12));
}
.hero__mockup img { width: 100%; }

/* ==========================================================================
   Trusted by
   ========================================================================== */
.trusted { padding: clamp(56px, 8vw, 96px) 0 clamp(20px, 3vw, 40px); }
.trusted__text {
  text-align: center;
  max-width: 60ch;
  margin-inline: auto;
  color: var(--ink);
  font-size: clamp(.98rem, 1.2vw, 1.08rem);
}

/* ==========================================================================
   "new" ribbon
   ========================================================================== */
.ribbon {
  margin: clamp(30px, 5vw, 70px) 0 clamp(-40px, -4vw, -60px);
  pointer-events: none;
  overflow: hidden;
}
.ribbon img { width: 100%; min-width: 1100px; }

/* ==========================================================================
   Collaboration
   ========================================================================== */
.collab { padding: clamp(60px, 7vw, 90px) 0 clamp(50px, 6vw, 80px); }

.collab__top {
  display: grid;
  grid-template-columns: 1.62fr 1fr;
  gap: var(--gap);
  margin-bottom: var(--gap);
}

.collab__hero {
  position: relative;
  background: var(--teal-card);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(30px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: 8px 10px 0 rgba(2, 30, 24, .9);
}
.collab__spark {
  width: 26px; position: absolute;
  top: 26px; left: clamp(30px, 4vw, 48px);
}
.collab__title {
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  font-weight: 700;
  line-height: 1.1;
  max-width: 14ch;
  margin: 30px 0 auto;
}
.collab__hero .btn--lime { align-self: flex-start; margin-top: clamp(24px, 3vw, 40px); }

/* generic outline card */
.card--outline {
  background: #fff;
  border: 1.5px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3vw, 38px);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.card--outline:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: #cfd6d4;
}
.card .feat-icon { height: clamp(44px, 4vw, 56px); width: auto; margin-bottom: clamp(22px, 3vw, 40px); }
.card h3 {
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}
.card p { color: var(--muted); font-size: clamp(.92rem, 1.1vw, 1rem); font-weight: 400; }

.collab__ai { display: flex; flex-direction: column; align-items: flex-start; }
.collab__ai h3 { margin-top: auto; }

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

/* ==========================================================================
   Split sections (Professional Quality / Flexible Delivery)
   ========================================================================== */
.split { padding: clamp(50px, 6vw, 80px) 0; }
.split__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(32px, 6vw, 96px);
}
.split--right .split__media { order: -1; }

.split__media { position: relative; display: flex; justify-content: center; }
.split__media .phone {
  width: clamp(230px, 26vw, 330px);
  filter: drop-shadow(0 24px 40px rgba(3, 42, 34, .16));
}

.section-title {
  font-size: clamp(2rem, 3.4vw, 2.85rem);
  font-weight: 700;
  color: var(--green);
  line-height: 1.08;
  letter-spacing: -.01em;
}
.split__body .lead {
  margin-top: 20px;
  color: var(--muted);
  font-weight: 400;
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  max-width: 44ch;
}
.split__sub { margin-top: clamp(28px, 3vw, 40px); max-width: 40ch; }
.split__sub h3 { color: var(--ink); font-size: 1.06rem; font-weight: 600; margin-bottom: 10px; }
.split__sub p { color: var(--muted-2); font-size: .92rem; font-weight: 400; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testi { padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 8vw, 110px); }
.testi__title {
  text-align: center;
  font-size: clamp(1.9rem, 3.4vw, 2.85rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: clamp(40px, 5vw, 70px);
}
.testi__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(40px, 6vw, 90px);
}

.testi__media { position: relative; display: flex; justify-content: center; }
.testi__photo {
  width: 100%;
  max-width: 500px;
  filter: drop-shadow(0 20px 34px rgba(3, 42, 34, .12));
}

.testi__content { position: relative; max-width: 30rem; }
.testi__quote-mark { width: 46px; height: auto; margin-bottom: 22px; }
.testi__quote p { color: var(--ink); font-size: clamp(.98rem, 1.2vw, 1.08rem); font-weight: 400; line-height: 1.6; }
.testi__quote p + p { margin-top: 18px; }
.testi__author { margin-top: 28px; }
.testi__name { font-weight: 600; color: var(--ink); font-size: .98rem; }
.testi__role { color: var(--muted-2); font-size: .9rem; font-weight: 400; }

.testi__dots { display: flex; gap: 8px; margin-top: 26px; }
.dot { width: 12px; height: 12px; border-radius: 99px; background: #d7dbdd; transition: width .3s var(--ease), background .3s var(--ease); }
.dot.is-active { width: 34px; background: var(--ink); }

/* ==========================================================================
   Everything you need — feature grid
   ========================================================================== */
.everything { padding: clamp(50px, 6vw, 80px) 0 clamp(60px, 8vw, 100px); }
.everything__title {
  text-align: center;
  font-size: clamp(1.9rem, 3.4vw, 2.85rem);
  font-weight: 700;
  color: var(--green);
  line-height: 1.14;
  margin-bottom: clamp(46px, 6vw, 84px);
}

/* Desktop: exact masonry via absolute positioning inside an aspect-ratio box */
.feature-grid {
  position: relative;
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  aspect-ratio: 1391 / 676;
}
.fcard {
  position: absolute;
  display: block;
  border-radius: 22px;
  transition: transform .28s var(--ease), filter .28s var(--ease);
}
.fcard img { width: 100%; height: 100%; object-fit: fill; }
.fcard:hover { transform: translateY(-5px); filter: drop-shadow(0 14px 22px rgba(3,42,34,.12)); }

/* positions (percentages derived from the source layout) */
.fcard--branded      { left: 0;      top: 0;      width: 23.29%; height: 30.18%; }
.fcard--brandkit     { left: 25.59%; top: 0;      width: 14.59%; height: 29.88%; }
.fcard--qa           { left: 42.63%; top: 0;      width: 14.52%; height: 29.73%; }
.fcard--polls        { left: 59.74%; top: 0;      width: 14.52%; height: 47.49%; }
.fcard--reminders    { left: 76.85%; top: 0;      width: 23.15%; height: 29.73%; }
.fcard--crm          { left: 0;      top: 35.06%; width: 14.59%; height: 47.78%; }
.fcard--viewer       { left: 16.97%; top: 34.91%; width: 14.59%; height: 30.03%; }
.fcard--registration { left: 34.15%; top: 34.91%; width: 23.15%; height: 30.03%; }
.fcard--ondemand     { left: 76.85%; top: 35.06%; width: 14.52%; height: 30.03%; }
.fcard--analytics    { left: 59.74%; top: 52.51%; width: 14.52%; height: 47.63%; }
.fcard--streaming    { left: 16.97%; top: 70.12%; width: 23.22%; height: 29.88%; }
.fcard--channel      { left: 42.56%; top: 70.12%; width: 14.59%; height: 29.88%; }
.fcard--all          { left: 76.85%; top: 70.12%; width: 23.15%; height: 29.88%; }

/* ==========================================================================
   Closing CTA
   ========================================================================== */
.closing { padding: clamp(30px, 4vw, 60px) 0 clamp(60px, 8vw, 110px); }
.closing__box {
  position: relative;
  border: 2px solid var(--green);
  border-radius: clamp(22px, 3vw, 40px);
  box-shadow: 8px 10px 0 rgba(3, 42, 34, .9);
  text-align: center;
  padding: clamp(54px, 8vw, 96px) 24px;
}
.closing__box h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  font-weight: 700;
  color: var(--green);
  line-height: 1.12;
}
.closing__box p { margin: 18px auto 0; color: var(--muted); font-weight: 400; font-size: clamp(1rem, 1.2vw, 1.08rem); }
.closing__cta { margin-top: 34px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--footer);
  color: #cfd8dc;
  border-radius: clamp(28px, 4vw, 48px) clamp(28px, 4vw, 48px) 0 0;
  padding: clamp(56px, 7vw, 88px) 0 clamp(60px, 8vw, 96px);
  margin-top: 12px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(30px, 4vw, 56px);
}
.footer__tag { margin-top: 26px; color: #b8c4c8; font-weight: 400; font-size: .96rem; line-height: 1.55; }

.socials { display: flex; gap: 20px; margin-top: 30px; }
.socials a { color: #cfd8dc; display: inline-flex; transition: color .2s var(--ease), transform .2s var(--ease); }
.socials svg { width: 18px; height: 18px; }
.socials a:hover { color: #fff; transform: translateY(-2px); }

.footer__col h3 { color: #fff; font-size: 1.02rem; font-weight: 600; margin-bottom: 22px; }
.footer__col ul { display: flex; flex-direction: column; gap: 16px; }
.footer__col a { color: #b3c0c4; font-weight: 400; font-size: .96rem; transition: color .2s var(--ease); }
.footer__col a:hover { color: #fff; }
.footer__spacer { margin-top: 8px; }

/* ==========================================================================
   Animations
   ========================================================================== */

/* --- Scroll reveal (with directional + pop variants) --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
  will-change: opacity, transform;
}
.reveal--left  { transform: translateX(-40px); }
.reveal--right { transform: translateX(40px); }
.reveal--pop   { transform: translateY(20px) scale(.9); transition-duration: .6s; }
.reveal.is-visible { opacity: 1; transform: none; }

/* --- Continuous keyframes --- */
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
@keyframes floaty-sm {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-9px) rotate(-.6deg); }
}
@keyframes twinkle {
  0%, 100% { opacity: .55; transform: scale(.82) rotate(0deg); }
  50%      { opacity: 1;   transform: scale(1.12) rotate(15deg); }
}
@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}
@keyframes shimmer {
  0%   { transform: translateX(-140%) skewX(-18deg); }
  60%, 100% { transform: translateX(260%) skewX(-18deg); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 9px 9px 0 rgba(6,26,22,.92), 0 0 0 0 rgba(15,141,181,.0); }
  50%      { box-shadow: 9px 9px 0 rgba(6,26,22,.92), 0 0 34px 4px rgba(15,141,181,.28); }
}
@keyframes bob-in {
  0%   { opacity: 0; transform: translateY(40px) scale(.96); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* --- Hero: gentle float on the mockup, breathing badge --- */
.hero__mockup img { animation: floaty 7s ease-in-out infinite; }
.hero__title .hl {
  animation: badge-float 5s ease-in-out infinite, pulse-glow 5s ease-in-out infinite;
}

/* --- Device mockups float (offset so they don't move in unison) --- */
.split--right .split__media .phone { animation: floaty 8s ease-in-out infinite; }
.split--left  .split__media .phone { animation: floaty 8s ease-in-out infinite .8s; }
.testi__photo { animation: floaty-sm 9s ease-in-out infinite; }

/* --- Sparkle twinkles on the collaboration card --- */
.collab__spark { animation: twinkle 3.4s ease-in-out infinite; transform-origin: center; }

/* --- Lime button sheen --- */
.btn--lime { position: relative; overflow: hidden; isolation: isolate; }
.btn--lime::after {
  content: "";
  position: absolute; top: 0; bottom: 0; left: 0; width: 45%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.65), transparent);
  transform: translateX(-140%) skewX(-18deg);
  animation: shimmer 4.2s ease-in-out infinite;
  z-index: -1;
}

/* --- Feature card image gets a soft zoom on hover --- */
.fcard { overflow: hidden; }
.fcard img { transition: transform .5s var(--ease); }
.fcard:hover img { transform: scale(1.06); }

/* --- Primary buttons: arrow-less sheen on hover already handled; add lift on ghost --- */
.btn--primary { position: relative; overflow: hidden; }
.btn--primary::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, transparent 30%, rgba(255,255,255,.28) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .6s var(--ease);
}
.btn--primary:hover::before { transform: translateX(120%); }

/* --- Brand logo subtle grow on hover --- */
.brand__logo { transition: transform .35s var(--ease); }
.brand:hover .brand__logo { transform: scale(1.05); }

/* --- Nav pill hover already; add card outline sheen --- */
.card--outline { position: relative; overflow: hidden; }
.card--outline::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(15,141,181,.07), transparent 55%);
  opacity: 0; transition: opacity .4s var(--ease); pointer-events: none;
}
.card--outline:hover::after { opacity: 1; }

/* --- Testimonial dots pulse when active --- */
.dot.is-active { position: relative; }

/* --- Trusted logos marquee --- */
.trusted__marquee {
  margin-top: clamp(34px, 4vw, 52px);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.trusted__logos {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  align-items: center;
  gap: clamp(38px, 6vw, 84px);
  margin-top: 0;
  animation: marquee 34s linear infinite;
}
.trusted__marquee:hover .trusted__logos { animation-play-state: paused; }
.trusted__logos img {
  height: clamp(24px, 2.4vw, 34px);
  width: auto;
  opacity: .6;
  filter: grayscale(1);
  transition: opacity .3s var(--ease), filter .3s var(--ease), transform .3s var(--ease);
}
.trusted__logos li:hover img { opacity: 1; filter: grayscale(0); transform: scale(1.08); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .nav, .header__actions { display: none; }
  .nav-toggle { display: flex; }
  .header__inner { justify-content: space-between; }
  .brand { margin-right: auto; }

  .collab__top { grid-template-columns: 1fr; }
  .collab__hero { min-height: 300px; }
}

@media (max-width: 860px) {
  :root { --gap: 20px; }

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

  .split__inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .split--right .split__media { order: 0; }
  .split--left .split__media { order: -1; }
  .split__body { display: flex; flex-direction: column; align-items: center; }
  .split__body .lead, .split__sub { margin-inline: auto !important; }

  .testi__inner { grid-template-columns: 1fr; gap: 48px; }
  .testi__content { margin-inline: auto; text-align: left; }
  .testi__media { max-width: 420px; margin-inline: auto; }

  /* Feature grid -> responsive flex layout */
  .feature-grid {
    position: static;
    aspect-ratio: auto;
    max-width: 640px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .fcard { position: static; width: auto !important; height: auto !important; }
  .fcard img { height: auto; object-fit: contain; }
  .fcard--branded, .fcard--reminders, .fcard--registration,
  .fcard--streaming, .fcard--all { grid-column: span 2; }

  .footer__inner { grid-template-columns: 1fr 1fr; row-gap: 44px; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
  .container { padding-inline: 18px; }
  .hero__title .hl { box-shadow: 6px 6px 0 rgba(6,26,22,.92); }
  .hero__cta .btn, .closing__cta .btn { flex: 1 1 auto; }

  .feature-grid { grid-template-columns: 1fr; max-width: 380px; }
  .fcard--branded, .fcard--reminders, .fcard--registration,
  .fcard--streaming, .fcard--all { grid-column: span 1; }

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

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition-delay: 0ms !important; }
  .trusted__logos { animation: none !important; flex-wrap: wrap; justify-content: center; width: auto; }
  .hero__mockup img, .split__media .phone, .testi__photo, .collab__spark,
  .hero__title .hl, .btn--lime::after, .btn--primary::before { animation: none !important; }
}

/* ==========================================================================
   Custom cursor
   ========================================================================== */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  translate: -50% -50%;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.cursor-dot {
  width: 7px; height: 7px;
  background: var(--accent);
}
.cursor-ring {
  width: 34px; height: 34px;
  border: 1.6px solid rgba(15, 141, 181, .55);
  transition: width .28s var(--ease), height .28s var(--ease),
              background .28s var(--ease), border-color .28s var(--ease), opacity .3s var(--ease);
}
.cursor-ring.is-hover {
  width: 58px; height: 58px;
  background: rgba(15, 141, 181, .10);
  border-color: var(--accent);
}
.cursor-ring.is-down { width: 26px; height: 26px; background: rgba(15,141,181,.2); }
.cursor-dot.is-visible, .cursor-ring.is-visible { opacity: 1; }
html.has-cursor, html.has-cursor * { cursor: none !important; }
html.has-cursor :is(input, textarea, select) { cursor: auto !important; }

/* ==========================================================================
   Forms
   ========================================================================== */
.form { display: grid; gap: 20px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field > label {
  font-size: .9rem; font-weight: 600; color: var(--ink);
}
.field .req { color: var(--accent); }
.field input, .field textarea, .field select {
  font: inherit; font-size: .98rem;
  padding: 13px 16px;
  border: 1.5px solid var(--border-2);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input::placeholder, .field textarea::placeholder { color: #9aa5a3; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(15, 141, 181, .12);
}
.field--error input, .field--error textarea, .field--error select { border-color: #e0526b; }
.field--error input:focus, .field--error textarea:focus { box-shadow: 0 0 0 4px rgba(224, 82, 107, .12); }
.field__error {
  font-size: .82rem; color: #d63a55; min-height: 1em;
  opacity: 0; transform: translateY(-3px);
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.field--error .field__error { opacity: 1; transform: none; }
.form__actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.form .btn[data-loading="true"] { pointer-events: none; opacity: .8; }
.form .btn .btn__spinner {
  width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.4); border-top-color: #fff;
  animation: spin .7s linear infinite; display: none;
}
.form .btn[data-loading="true"] .btn__spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }
.form__status {
  font-size: .95rem; font-weight: 500; border-radius: 12px;
  padding: 0; max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease), padding .4s var(--ease), margin .4s var(--ease);
}
.form__status.is-shown { max-height: 200px; padding: 14px 18px; }
.form__status--ok { background: #e6f7ef; color: #0b7a4f; border: 1px solid #b7ead2; }
.form__status--err { background: #fdecef; color: #c22c47; border: 1px solid #f6c9d2; }
.form-note { font-size: .85rem; color: var(--muted-2); }

/* Success screen replacing the form */
.form-success {
  text-align: center; padding: 20px 0;
  display: none;
}
.form-success.is-shown { display: block; animation: bob-in .5s var(--ease) both; }
.form-success__icon {
  width: 64px; height: 64px; margin: 0 auto 20px;
  border-radius: 50%; background: #e6f7ef; color: #0b9c63;
  display: grid; place-items: center;
}
.form-success__icon svg { width: 30px; height: 30px; }
.form-success h3 { font-size: 1.5rem; color: var(--green); margin-bottom: 10px; }
.form-success p { color: var(--muted); }

/* ==========================================================================
   Subpage shared components
   ========================================================================== */
.page-hero { position: relative; padding: clamp(48px, 7vw, 96px) 0 clamp(30px, 4vw, 52px); text-align: center; overflow: hidden; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--green); margin-bottom: 20px;
  background: var(--lime); padding: 8px 16px 8px 12px; border-radius: 99px;
  border: 1.5px solid var(--green);
  transform: rotate(-2deg);
}
.eyebrow__spark { width: 14px; height: 14px; animation: twinkle 3s ease-in-out infinite; }
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; color: var(--green);
  line-height: 1.06; letter-spacing: -.015em; max-width: 16ch; margin-inline: auto;
}
.page-hero .lead {
  margin: 22px auto 0; max-width: 58ch; color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
}

/* Decorative floating accents reused across every page-hero for a consistent, lively brand touch */
.deco { position: absolute; z-index: 0; pointer-events: none; }
.deco--dots { width: 96px; top: 12%; right: 6%; opacity: .8; animation: floaty-sm 7s ease-in-out infinite; }
.deco--dots .dc-a { fill: var(--accent); opacity: .3; }
.deco--dots .dc-l { fill: var(--lime); opacity: .8; }
.deco--ring {
  width: 64px; height: 64px; left: 7%; bottom: 10%;
  border: 3px solid var(--lime); border-radius: 50%;
  animation: floaty 8.5s ease-in-out infinite;
}
.deco--square {
  width: 30px; height: 30px; left: 16%; top: 22%;
  background: var(--accent); border-radius: 9px; opacity: .16;
  transform: rotate(20deg);
  animation: floaty-sm 6.5s ease-in-out infinite .6s;
}
.deco--plus { right: 14%; bottom: 16%; width: 34px; height: 34px; opacity: .5; animation: twinkle 5s ease-in-out infinite 1s; }
.deco--plus path { stroke: var(--accent); }

.section { padding: clamp(40px, 6vw, 76px) 0; }
.section-head { text-align: center; max-width: 60ch; margin: 0 auto clamp(38px, 5vw, 60px); }
.section-head h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 700; color: var(--green); line-height: 1.1; }
.section-head p { margin-top: 16px; color: var(--muted); font-size: clamp(1rem, 1.2vw, 1.1rem); }

/* --- Shared "sticker" card treatment: thick ink border + offset shadow that grows on hover --- */
.sticker-card {
  background: #fff; border: 2px solid var(--ink); border-radius: var(--radius-lg);
  box-shadow: 5px 5px 0 rgba(3, 42, 34, .14);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.sticker-card:hover {
  transform: translate(-3px, -5px);
  box-shadow: 9px 11px 0 rgba(3, 42, 34, .85);
  border-color: var(--green);
}

/* Pricing */
.billing-toggle {
  display: inline-flex; align-items: center; gap: 14px;
  margin: 0 auto clamp(40px, 5vw, 56px); justify-content: center; width: 100%;
}
.billing-toggle span { font-weight: 600; color: var(--muted); font-size: .96rem; }
.billing-toggle span.is-active { color: var(--green); }
.switch { position: relative; width: 56px; height: 30px; }
.switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.switch .track {
  position: absolute; inset: 0; background: var(--accent); border-radius: 99px;
  transition: background .25s var(--ease);
}
.switch .thumb {
  position: absolute; top: 3px; left: 3px; width: 24px; height: 24px; border-radius: 50%;
  background: #fff; transition: transform .28s var(--ease); box-shadow: 0 2px 6px rgba(0,0,0,.2);
}
.switch input:checked ~ .thumb { transform: translateX(26px); }
.save-badge {
  font-size: .74rem; font-weight: 700; color: var(--green); background: var(--lime);
  padding: 4px 10px; border-radius: 99px; border: 1.5px solid var(--green); transform: rotate(-3deg);
  animation: badge-float 4s ease-in-out infinite;
}

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card {
  background: #fff; border: 2px solid var(--border-2); border-radius: var(--radius-lg);
  box-shadow: 4px 4px 0 rgba(3,42,34,.06);
  padding: clamp(28px, 3vw, 40px); display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.price-card:hover { transform: translate(-3px, -5px); box-shadow: 8px 10px 0 rgba(3,42,34,.5); border-color: var(--ink); }
.price-card--featured {
  border-color: var(--green); box-shadow: 8px 10px 0 rgba(3,42,34,.9);
  position: relative;
}
.price-card--featured:hover { transform: translate(-3px, -5px); box-shadow: 11px 15px 0 rgba(3,42,34,.9); }
.price-card__tag {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%) rotate(-2deg);
  background: var(--accent); color: #fff; font-size: .74rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase; padding: 7px 16px; border-radius: 99px;
  border: 1.5px solid var(--green);
}
.price-card h3 { font-size: 1.3rem; color: var(--ink); font-weight: 700; }
.price-card .price-desc { color: var(--muted); font-size: .94rem; margin-top: 8px; min-height: 42px; }
.price-card .price {
  margin: 22px 0 6px; font-size: clamp(2.4rem, 4vw, 3rem); font-weight: 800; color: var(--green);
  line-height: 1;
}
.price-card .price small { font-size: 1rem; font-weight: 500; color: var(--muted); }
.price-card .price-cycle { font-size: .86rem; color: var(--muted-2); min-height: 20px; }
.price-card .btn { margin-top: 26px; width: 100%; }
.price-card ul { margin-top: 28px; display: grid; gap: 14px; }
.price-card li { display: flex; gap: 10px; align-items: flex-start; font-size: .94rem; color: #37433f; }
.price-card li svg { flex: none; width: 20px; height: 20px; color: var(--accent); margin-top: 1px; }
.price-card li.muted { color: #a7afad; }
.price-card li.muted svg { color: #cbd2d0; }

/* FAQ */
.faq { max-width: 780px; margin-inline: auto; display: grid; gap: 14px; }
.faq details {
  border: 1.5px solid var(--border-2); border-radius: 16px; background: #fff;
  padding: 4px 22px; transition: border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease);
}
.faq details[open] { border-color: var(--accent); box-shadow: 4px 4px 0 rgba(15,141,181,.12); }
.faq summary {
  list-style: none; cursor: pointer; padding: 18px 0; font-weight: 600; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 12px; height: 12px;
  border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: rotate(45deg); transition: transform .25s var(--ease); margin-top: -4px;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: 2px; }
.faq details p { padding: 0 0 20px; color: var(--muted); font-size: .96rem; line-height: 1.6; }

/* Videos */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px 26px; }
.video-card {
  border-radius: 20px; overflow: visible; background: transparent;
  display: flex; flex-direction: column;
}
.video-card__stack { position: relative; }
.video-card__stack::before {
  content: "";
  position: absolute; inset: 10px -10px -10px 10px;
  background: var(--lime); border: 2px solid var(--ink); border-radius: 18px;
  transform: rotate(-3deg); z-index: 0;
  transition: transform .3s var(--ease);
}
.video-card:hover .video-card__stack::before { transform: rotate(-5deg) scale(1.02); }
.video-card__thumb {
  position: relative; z-index: 1;
  aspect-ratio: 16/10; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--g1, #0f8db5), var(--g2, #01516a));
  border: 2px solid var(--ink); border-radius: 18px; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.video-card:hover .video-card__thumb { transform: translate(-3px, -4px); box-shadow: 6px 8px 0 rgba(3,42,34,.35); }
.video-card__thumb::after {
  content: ""; position: absolute; inset: 0; opacity: .12;
  background-image: radial-gradient(#fff 1.5px, transparent 1.5px);
  background-size: 16px 16px;
}
.video-card__thumb .play {
  position: relative; z-index: 1;
  width: 60px; height: 60px; border-radius: 50%; background: #fff;
  border: 2px solid var(--ink);
  display: grid; place-items: center; transition: transform .3s var(--ease);
}
.video-card:hover .play { transform: scale(1.12) rotate(-6deg); }
.video-card__thumb .play svg { width: 22px; height: 22px; color: var(--green); margin-left: 3px; }
.video-card__thumb .dur {
  position: relative; z-index: 1;
  position: absolute; bottom: 12px; right: 12px; background: var(--ink); color: #fff;
  font-size: .76rem; font-weight: 600; padding: 4px 9px; border-radius: 7px;
}
.video-card__body { padding: 20px 6px 0; }
.video-card__cat {
  display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--green); background: var(--c-cyan); padding: 4px 10px; border-radius: 99px;
  border: 1.2px solid var(--green);
}
.video-card__body h3 { font-size: 1.1rem; color: var(--ink); margin-top: 10px; line-height: 1.3; }

/* Learn / articles */
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.article-card { display: flex; flex-direction: column; overflow: hidden; }
.article-card__banner {
  position: relative; aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--g1,#defffd), var(--g2,#dcf7ff));
  border-bottom: 2px solid var(--ink);
}
.article-card__banner::after {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.5) 0, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(3,42,34,.06) 0, transparent 45%);
}
.article-card__body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.article-card__meta { display: flex; gap: 10px; align-items: center; font-size: .78rem; color: var(--muted-2); font-weight: 500; }
.article-card__meta .tag {
  color: var(--green); font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  background: var(--lime); padding: 3px 10px; border-radius: 99px; border: 1.2px solid var(--green);
  transform: rotate(-2deg);
}
.article-card h3 { font-size: 1.15rem; color: var(--ink); line-height: 1.3; }
.article-card p { color: var(--muted); font-size: .93rem; flex: 1; }
.article-card .read { font-weight: 600; color: var(--accent); font-size: .9rem; margin-top: auto; display: inline-flex; align-items: center; gap: 6px; }
.article-card .read svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.article-card:hover .read svg { transform: translateX(4px); }

/* Tools */
.tool-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tool-card {
  padding: 32px; display: flex; flex-direction: column; gap: 12px;
}
.tool-card__icon {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: var(--tint, #defffd); border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 rgba(3,42,34,.18);
  margin-bottom: 8px;
  transition: transform .3s var(--ease);
}
.tool-card:hover .tool-card__icon { transform: rotate(-6deg) scale(1.06); }
.tool-card__icon svg { width: 26px; height: 26px; color: var(--green); }
.tool-card h3 { font-size: 1.15rem; color: var(--ink); }
.tool-card p { color: var(--muted); font-size: .93rem; flex: 1; }
.tool-card .link-arrow { font-weight: 600; color: var(--accent); font-size: .92rem; display: inline-flex; align-items: center; gap: 6px; }
.tool-card .link-arrow svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.tool-card:hover .link-arrow svg { transform: translateX(4px); }

/* About */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat {
  padding: 28px 16px; border-radius: 20px; background: #fff;
  border: 2px solid var(--border-2);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.stat:hover { transform: translate(-2px, -4px); box-shadow: 6px 8px 0 rgba(3,42,34,.7); border-color: var(--ink); }
.stat b { display: block; font-size: clamp(2rem, 3.4vw, 2.8rem); font-weight: 800; color: var(--green); line-height: 1; }
.stat span { color: var(--muted); font-size: .92rem; margin-top: 8px; display: block; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value {
  padding: 32px; border-radius: 22px; background: var(--tint, #f6f9f8);
  border: 2px solid transparent;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.value:hover { transform: translateY(-5px); border-color: var(--green); }
.value h3 { font-size: 1.2rem; color: var(--ink); margin-bottom: 10px; }
.value p { color: var(--muted); font-size: .95rem; }

/* Meet the team */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card {
  padding: clamp(26px, 3vw, 34px) 22px; text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.team-card__avatar {
  width: 78px; height: 78px; border-radius: 50%;
  background: var(--tint, #defffd); border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 rgba(3, 42, 34, .18);
  display: grid; place-items: center;
  font-family: inherit; font-weight: 800; font-size: 1.3rem; color: var(--green);
  margin-bottom: 16px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.team-card:hover .team-card__avatar {
  transform: rotate(-8deg) scale(1.08);
  box-shadow: 5px 5px 0 rgba(3, 42, 34, .3);
}
.team-card__avatar--lead {
  background: var(--lime);
  width: 88px; height: 88px; font-size: 1.5rem;
}
.team-card h3 { font-size: 1.02rem; color: var(--ink); font-weight: 700; line-height: 1.3; }
.team-card .role {
  font-size: .84rem; color: var(--accent); font-weight: 600; margin-top: 4px; line-height: 1.4;
}
.team-card .loc {
  margin-top: 12px; display: inline-flex; align-items: center; gap: 5px;
  font-size: .78rem; color: var(--muted-2); font-weight: 500;
}
.team-card .loc svg { width: 13px; height: 13px; color: var(--accent); flex: none; }
.team-card__badge {
  position: absolute; top: -12px; right: 18px;
  background: var(--green); color: #fff; font-size: .66rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase; padding: 4px 10px; border-radius: 99px;
  border: 1.5px solid var(--ink); transform: rotate(3deg);
}
.team-card { position: relative; }

/* Contact layout */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
.contact-info h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); color: var(--green); font-weight: 700; line-height: 1.12; }
.contact-info > p { margin-top: 16px; color: var(--muted); }
.contact-info ul { margin-top: 32px; display: grid; gap: 22px; }
.contact-info li { display: flex; gap: 14px; align-items: flex-start; }
.contact-info li .ci-icon {
  width: 44px; height: 44px; flex: none; border-radius: 12px;
  background: var(--c-cyan); border: 1.5px solid var(--green);
  display: grid; place-items: center; color: var(--green);
  transition: transform .3s var(--ease);
}
.contact-info li:hover .ci-icon { transform: rotate(-8deg) scale(1.08); }
.contact-info li .ci-icon svg { width: 20px; height: 20px; }
.contact-info li b { display: block; color: var(--ink); font-size: .98rem; }
.contact-info li span { color: var(--muted); font-size: .92rem; }
.form-card {
  background: #fff; border: 2px solid var(--ink); border-radius: var(--radius-lg);
  padding: clamp(28px, 3.5vw, 44px); box-shadow: 7px 8px 0 rgba(3,42,34,.14);
}

/* Auth (signup/login) */
.auth-wrap { position: relative; min-height: calc(100vh - 74px); display: grid; place-items: center; padding: clamp(40px, 6vw, 80px) 0; overflow: hidden; }
.auth-card {
  position: relative; z-index: 1;
  width: 100%; max-width: 460px; margin-inline: auto;
  background: #fff; border: 2px solid var(--ink); border-radius: var(--radius-lg);
  padding: clamp(30px, 4vw, 46px); box-shadow: 7px 8px 0 rgba(3,42,34,.16);
}
.auth-card .brand { justify-content: center; margin-bottom: 24px; }
.auth-card h1 { font-size: 1.7rem; color: var(--green); text-align: center; font-weight: 700; }
.auth-card > p { text-align: center; color: var(--muted); margin-top: 8px; margin-bottom: 28px; font-size: .95rem; }
.auth-alt { text-align: center; margin-top: 22px; font-size: .92rem; color: var(--muted); }
.auth-alt a { color: var(--accent); font-weight: 600; }
.oauth-row { display: grid; gap: 12px; margin-bottom: 22px; }
.oauth-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px; border: 1.5px solid var(--border-2); border-radius: 12px; background: #fff;
  font-weight: 500; color: var(--ink); transition: border-color .2s var(--ease), background .2s var(--ease);
}
.oauth-btn:hover { border-color: #b9c0be; background: #fafbfb; }
.oauth-btn svg { width: 18px; height: 18px; }
.divider { display: flex; align-items: center; gap: 14px; color: var(--muted-2); font-size: .82rem; margin-bottom: 22px; }
.divider::before, .divider::after { content: ""; flex: 1; height: 1px; background: var(--border-2); }

/* Small CTA strip reused on subpages */
.cta-strip { padding: clamp(40px, 5vw, 70px) 0 clamp(60px, 8vw, 100px); }
.cta-strip__box {
  background: var(--teal-card); color: #fff; border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 72px); text-align: center; box-shadow: 8px 10px 0 rgba(2,30,24,.9);
}
.cta-strip__box h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; line-height: 1.12; }
.cta-strip__box p { margin: 14px auto 0; max-width: 50ch; color: rgba(255,255,255,.8); }
.cta-strip__box .cta-actions { margin-top: 30px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-strip__box .btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.cta-strip__box .btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }

/* Subpage responsive */
@media (max-width: 900px) {
  .pricing-grid, .video-grid, .article-grid, .tool-grid, .values, .team-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .price-card--featured { order: -1; }
}
@media (max-width: 620px) {
  .pricing-grid, .video-grid, .article-grid, .tool-grid, .values, .stats, .team-grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
}

/* Active nav link */
.nav__list a.is-current { color: var(--green); }
.nav__list a.is-current::after { width: 100%; }
