/* ==========================================================================
   Softdots Systems — Site Stylesheet
   Design tokens: Ink Navy / Indigo / Periwinkle / Signal Gold / Cloud / Slate
   Display: Space Grotesk · Body: Inter · Data: IBM Plex Mono
   Signature motif: connected "node" dots, drawn from the Softdots mark
   ========================================================================== */

:root{
  --ink:        #1B1B3A;
  --indigo:     #3E4095;
  --periwinkle: #5A5FC7;
  --gold:       #F5A623;
  --cloud:      #F7F7FB;
  --white:      #FFFFFF;
  --slate:      #333B4D;
  --slate-soft: #6B7280;
  --line:       #E4E4F0;
  --util-bg:    #14142B;

  --display: "Inter", "Segoe UI", sans-serif;
  --body:    "Inter", "Segoe UI", sans-serif;
  --mono:    "IBM Plex Mono", "Courier New", monospace;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --container: 1180px;
  --shadow-card: 0 1px 2px rgba(27,27,58,0.04), 0 12px 28px -14px rgba(27,27,58,0.18);
  --shadow-hover: 0 20px 40px -18px rgba(27,27,58,0.28);
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

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

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: var(--body);
  color: var(--slate);
  background: var(--cloud);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

h1, h2, h3, h4{
  font-family: var(--display);
  color: var(--ink);
  margin: 0 0 0.5em 0;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1{ font-size: clamp(2.2rem, 4vw, 3.6rem); font-weight: 800; letter-spacing: -0.02em; }
h2{ font-size: clamp(1.6rem, 2.6vw, 2.4rem); font-weight: 800; letter-spacing: -0.015em; }
h3{ font-size: 1.2rem; font-weight: 700; }

p{ margin: 0 0 1em 0; color: var(--slate); }

a{ color: var(--indigo); text-decoration: none; }
a:hover{ color: var(--periwinkle); }

img{ max-width: 100%; display: block; }

:focus-visible{
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--periwinkle);
  font-weight: 600;
  margin-bottom: 14px;
}
.eyebrow::before{
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}

/* ---------------------------------------------------------------------- */
/* UTILITY BAR (slim strip above main nav)                                 */
/* ---------------------------------------------------------------------- */
.utility-bar{
  background: var(--util-bg);
  color: rgba(255,255,255,0.82);
}
.utility-bar .container{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 0.8rem;
}
.utility-bar a{
  color: rgba(255,255,255,0.82);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.utility-bar a:hover{ color: var(--gold); }
.utility-bar .dot-sep{ opacity: 0.4; }

/* ---------------------------------------------------------------------- */
/* NAVIGATION                                                              */
/* ---------------------------------------------------------------------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.navbar{
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
}

.brand{
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
}
.brand img{ height: 34px; width: auto; }

.nav-toggle{ display: none; }
.nav-toggle-label{
  display: none;
  cursor: pointer;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: 8px;
}
.nav-toggle-label span, .nav-toggle-label span::before, .nav-toggle-label span::after{
  content: "";
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  position: relative;
  transition: transform .2s ease;
}
.nav-toggle-label span::before{ position: absolute; top: -6px; }
.nav-toggle-label span::after{ position: absolute; top: 6px; }

.nav-links{
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0; padding: 0;
  flex-shrink: 1;
  min-width: 0;
}
.nav-links a{
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate);
  padding: 6px 2px;
  position: relative;
  white-space: nowrap;
}
.nav-links a::after{
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--gold);
  transition: right .2s ease;
}
.nav-links a:hover{ color: var(--ink); }
.nav-links a:hover::after,
.nav-links a.active::after{ right: 0; }
.nav-links a.active{ color: var(--ink); font-weight: 600; }

.nav-cta{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* ---------------------------------------------------------------------- */
/* BUTTONS                                                                 */
/* ---------------------------------------------------------------------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-1px); }

.btn-primary{
  background: var(--indigo);
  color: var(--white);
  box-shadow: 0 10px 24px -10px rgba(62,64,149,0.55);
}
.btn-primary:hover{ background: var(--periwinkle); color: var(--white); }

.btn-gold{
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 10px 24px -10px rgba(245,166,35,0.55);
}
.btn-gold:hover{ background: #ffb946; color: var(--ink); }

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

.btn-ghost-light{
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.28);
  color: var(--white);
}
.btn-ghost-light:hover{ background: rgba(255,255,255,0.16); color: var(--white); }

/* ---------------------------------------------------------------------- */
/* HERO                                                                    */
/* ---------------------------------------------------------------------- */
.hero{
  position: relative;
  padding: 76px 0 64px;
  overflow: hidden;
}
.hero .container{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero-text h1 span{ color: var(--indigo); }
.hero-text p{
  font-size: 1.08rem;
  color: var(--slate-soft);
  max-width: 46ch;
  margin-bottom: 28px;
}
.btn-group{ display: flex; gap: 14px; flex-wrap: wrap; }

/* node graphic */
.node-graphic{
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 0.82;
  min-height: 320px;
}
.node-graphic svg{ width: 100%; height: 100%; }
.node-dot{ fill: var(--white); stroke: var(--indigo); stroke-width: 2; }
.node-dot.gold{ stroke: var(--gold); }
.node-line{ stroke: var(--line); stroke-width: 2; }
.node-label{
  font-family: var(--mono);
  font-size: 12px;
  fill: var(--ink);
  font-weight: 600;
}

/* ---------------------------------------------------------------------- */
/* STAT STRIP                                                              */
/* ---------------------------------------------------------------------- */
.stat-strip{
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.stat-strip .container{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat{
  padding: 28px 20px;
  text-align: left;
  border-left: 1px solid var(--line);
}
.stat:first-child{ border-left: none; }
.stat .num{
  font-family: var(--mono);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--indigo);
  display: block;
}
.stat .label{
  font-size: 0.82rem;
  color: var(--slate-soft);
  margin-top: 4px;
}

/* ---------------------------------------------------------------------- */
/* SECTIONS                                                                */
/* ---------------------------------------------------------------------- */
.section{ padding: 84px 0; }
.section-tight{ padding: 56px 0; }
.section-white{ background: var(--white); }
.section-cloud{ background: var(--cloud); }
.section-ink{ background: var(--ink); color: var(--white); }
.section-ink h2, .section-ink h3{ color: var(--white); }
.section-ink p{ color: rgba(255,255,255,0.72); }
.section-ink .eyebrow{ color: var(--gold); }
.section-ink .eyebrow::before{ background: var(--white); }

.section-head{
  max-width: 640px;
  margin: 0 0 44px 0;
}
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }
.section-head p{ color: var(--slate-soft); font-size: 1.03rem; }

/* ---------------------------------------------------------------------- */
/* GRID / CARDS                                                            */
/* ---------------------------------------------------------------------- */
.grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.grid.cols-2{ grid-template-columns: repeat(2, 1fr); }
.grid.cols-3{ grid-template-columns: repeat(3, 1fr); }

.card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  box-shadow: var(--shadow-card);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  position: relative;
}
.card:hover{ transform: translateY(-3px); box-shadow: var(--shadow-hover); border-color: var(--periwinkle); }

.card .node-icon{
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--cloud);
  border: 2px solid var(--indigo);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.card .node-icon.gold{ border-color: var(--gold); }
.card .node-icon i{ width: 10px; height: 10px; border-radius: 50%; background: var(--indigo); }
.card .node-icon.gold i{ background: var(--gold); }

.card h3{ margin-bottom: 8px; }
.card p{ font-size: 0.94rem; color: var(--slate-soft); margin: 0; }

.card-dark{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
}
.card-dark h3{ color: var(--white); }
.card-dark p{ color: rgba(255,255,255,0.68); }

/* bullet list with node dots */
.dot-list{ list-style: none; margin: 0; padding: 0; }
.dot-list li{
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 0.98rem;
  color: var(--slate);
}
.dot-list li::before{
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--indigo);
}
.section-ink .dot-list li{ color: rgba(255,255,255,0.82); }
.section-ink .dot-list li::before{ border-color: var(--gold); background: transparent; }

/* connector line between module cards (desktop only) */
.module-row{ position: relative; }
.module-row::before{
  content: "";
  position: absolute;
  top: 40px; left: 8%; right: 8%;
  height: 2px;
  background: var(--line);
  z-index: 0;
}
.module-row .card{ z-index: 1; }

/* ---------------------------------------------------------------------- */
/* TABLE (clients)                                                         */
/* ---------------------------------------------------------------------- */
.table-wrap{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
table.clients{ width: 100%; border-collapse: collapse; }
table.clients th{
  text-align: left;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--ink);
  padding: 14px 20px;
}
table.clients td{
  padding: 16px 20px;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  vertical-align: top;
}
table.clients tr:nth-child(even) td{ background: var(--cloud); }
table.clients td.client-name{ font-weight: 600; color: var(--ink); }
table.clients td.system-name{ color: var(--periwinkle); font-weight: 600; }

/* ---------------------------------------------------------------------- */
/* PAGE HEADER (interior pages)                                            */
/* ---------------------------------------------------------------------- */
.page-header{
  padding: 56px 0 44px;
  background: linear-gradient(180deg, var(--white) 0%, var(--cloud) 100%);
  border-bottom: 1px solid var(--line);
}
.page-header .eyebrow{ margin-bottom: 10px; }
.page-header p{ color: var(--slate-soft); max-width: 60ch; font-size: 1.05rem; }

/* ---------------------------------------------------------------------- */
/* CTA BAND                                                                */
/* ---------------------------------------------------------------------- */
.cta{
  background: var(--indigo);
  background-image: radial-gradient(circle at 15% 25%, rgba(255,255,255,0.10), transparent 40%),
                     radial-gradient(circle at 85% 75%, rgba(245,166,35,0.18), transparent 45%);
  color: var(--white);
  text-align: center;
  padding: 72px 24px;
  border-radius: var(--radius-lg);
  margin: 0 24px;
}
.cta h2{ color: var(--white); }
.cta p{ color: rgba(255,255,255,0.78); max-width: 50ch; margin: 0 auto 26px; }
.cta .btn-group{ justify-content: center; }
.cta-wrap{ max-width: var(--container); margin: 0 auto; }

/* ---------------------------------------------------------------------- */
/* FORM (contact page)                                                     */
/* ---------------------------------------------------------------------- */
.form-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-card);
}
.form-row{ margin-bottom: 18px; }
.form-row label{
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-row input[type=text],
.form-row input[type=email],
.form-row input[type=tel],
.form-row select,
.form-row textarea{
  width: 100%;
  font-family: var(--body);
  font-size: 0.95rem;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cloud);
  color: var(--slate);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus{
  outline: none;
  border-color: var(--periwinkle);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(90,95,199,0.15);
}
.form-row textarea{ min-height: 120px; resize: vertical; }

.field-error{
  display: block;
  color: #C0392B;
  font-size: 0.8rem;
  margin-top: 6px;
}

.contact-info-card{
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
}
.contact-info-card h3{ color: var(--white); }
.contact-info-card .dot-list li{ color: rgba(255,255,255,0.85); }
.contact-info-card .dot-list li::before{ border-color: var(--gold); }
.contact-info-card a{ color: var(--white); font-weight: 600; }
.contact-info-card a:hover{ color: var(--gold); }

.confirm-box{
  border: 1px solid #B7E4C7;
  background: #EAFBF0;
  color: #1E5631;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.92rem;
  margin-bottom: 18px;
}

/* ---------------------------------------------------------------------- */
/* FOOTER                                                                  */
/* ---------------------------------------------------------------------- */
.site-footer{
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 26px;
  margin-top: 90px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-brand{
  font-family: var(--display);
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.footer-brand .dot{ width: 9px; height: 9px; border-radius: 50%; background: var(--gold); }
.footer-col h4{
  color: var(--white);
  font-family: var(--body);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-col a{
  display: block;
  color: rgba(255,255,255,0.68);
  font-size: 0.92rem;
  margin-bottom: 10px;
}
.footer-col a:hover{ color: var(--gold); }
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

/* ---------------------------------------------------------------------- */
/* BENEFIT ROW (borderless icon + heading + text, AnyDesk "fits your      */
/* needs" pattern)                                                        */
/* ---------------------------------------------------------------------- */
.benefit-row{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}
.benefit{ text-align: left; }
.benefit .icon-circle{
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--indigo);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.benefit .icon-circle i{ width: 12px; height: 12px; border-radius: 50%; background: var(--gold); }
.benefit h3{ margin-bottom: 8px; }
.benefit p{ font-size: 0.94rem; color: var(--slate-soft); margin: 0; }

/* ---------------------------------------------------------------------- */
/* TRUST STRIP (client wordmarks, grayscale row)                          */
/* ---------------------------------------------------------------------- */
.trust-strip{ padding: 34px 0; }
.trust-strip .trust-label{
  text-align: center;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-soft);
  margin-bottom: 26px;
}
.trust-row{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px 40px;
}
.trust-row span{
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--slate-soft);
  letter-spacing: -0.01em;
  transition: color .2s ease;
}
.trust-row span:hover{ color: var(--indigo); }

/* ---------------------------------------------------------------------- */
/* MODULE PICKER (AnyDesk "what do you need it for" icon choice pattern)  */
/* ---------------------------------------------------------------------- */
.picker-band{
  background: var(--indigo);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  margin: 0 24px;
  color: var(--white);
}
.picker-band .picker-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}
.picker-band h2{ color: var(--white); margin: 0; }
.picker-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.picker-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-md);
  padding: 22px 14px;
  transition: background .15s ease, transform .15s ease;
}
.picker-item:hover{ background: rgba(255,255,255,0.14); transform: translateY(-2px); }
.picker-item .icon-circle{
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center;
}
.picker-item .icon-circle i{ width: 10px; height: 10px; border-radius: 50%; background: var(--gold); }
.picker-item span{ font-size: 0.88rem; font-weight: 600; color: var(--white); }

/* ---------------------------------------------------------------------- */
/* FEATURE-WITH-LINK GRID (icon + heading + text + Learn More)             */
/* ---------------------------------------------------------------------- */
.feature-link-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.feature-link{ text-align: left; }
.feature-link img, .feature-link .icon-circle{ margin-bottom: 16px; }
.feature-link .icon-circle{
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--indigo);
  display: flex; align-items: center; justify-content: center;
}
.feature-link .icon-circle i{ width: 10px; height: 10px; border-radius: 50%; background: var(--indigo); }
.feature-link h3{ margin-bottom: 8px; }
.feature-link p{ font-size: 0.94rem; color: var(--slate-soft); margin-bottom: 10px; }
.feature-link a.learn-more{ font-weight: 700; font-size: 0.88rem; }
.feature-link a.learn-more::after{ content: " \2192"; }

/* ---------------------------------------------------------------------- */
/* PRICING / MODULE-TIER CARDS (AnyDesk Solo/Standard/Advanced/Ultimate)  */
/* ---------------------------------------------------------------------- */
.tier-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}
.tier-card{
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.tier-card.featured{
  border-color: var(--indigo);
  box-shadow: var(--shadow-hover);
}
.tier-card .tier-flag{
  position: absolute;
  top: -13px; left: 24px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.tier-card h3{ margin-bottom: 6px; }
.tier-card .tier-sub{ font-size: 0.86rem; color: var(--slate-soft); margin-bottom: 18px; min-height: 40px; }
.tier-card .dot-list{ flex: 1; margin-bottom: 22px; }
.tier-card .dot-list li{ font-size: 0.88rem; margin-bottom: 10px; }
.tier-card .btn{ width: 100%; }

/* ---------------------------------------------------------------------- */
/* NEWSLETTER (footer signup row, AnyDesk-style)                          */
/* ---------------------------------------------------------------------- */
.newsletter{
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}
.newsletter h4{ color: var(--white); margin: 0; font-size: 1rem; }
.newsletter-form{ display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-form input[type=email]{
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  min-width: 240px;
  font-family: var(--body);
  font-size: 0.9rem;
}
.newsletter-form input[type=email]::placeholder{ color: rgba(255,255,255,0.5); }

/* ---------------------------------------------------------------------- */
/* RESPONSIVE                                                              */
/* ---------------------------------------------------------------------- */
@media (max-width: 1180px){
  .nav-links{ gap: 14px; }
  .nav-links a{ font-size: 0.86rem; }
  .nav-cta .btn-outline{ display: none; }
  .nav-cta .btn-primary{ padding: 11px 18px; font-size: 0.86rem; }
}

@media (max-width: 900px){
  .hero .container{ grid-template-columns: 1fr; }
  .node-graphic{ order: -1; min-height: 240px; }
  .grid{ grid-template-columns: repeat(2, 1fr); }
  .stat-strip .container{ grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3){ border-left: none; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .module-row::before{ display: none; }
  .benefit-row{ grid-template-columns: repeat(2, 1fr); }
  .picker-grid{ grid-template-columns: repeat(2, 1fr); }
  .feature-link-grid{ grid-template-columns: repeat(2, 1fr); }
  .tier-grid{ grid-template-columns: repeat(2, 1fr); }
  .utility-bar .container{ justify-content: center; }
}

@media (max-width: 680px){
  .nav-links{
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 14px 24px 20px;
    border-bottom: 1px solid var(--line);
    display: none;
  }
  .nav-links a{ padding: 10px 0; width: 100%; }
  .nav-toggle:checked ~ .nav-links{ display: flex; }
  .nav-toggle-label{ display: flex; }
  .nav-cta .btn-outline{ display: none; }
  .grid{ grid-template-columns: 1fr; }
  .grid.cols-2, .grid.cols-3{ grid-template-columns: 1fr; }
  .stat-strip .container{ grid-template-columns: 1fr 1fr; }
  .stat{ border-left: none; border-top: 1px solid var(--line); }
  .stat:first-child, .stat:nth-child(2){ border-top: none; }
  .footer-grid{ grid-template-columns: 1fr; }
  .cta{ margin: 0 14px; padding: 52px 20px; }
  .section{ padding: 60px 0; }
  .benefit-row{ grid-template-columns: 1fr; }
  .picker-grid{ grid-template-columns: 1fr; }
  .feature-link-grid{ grid-template-columns: 1fr; }
  .tier-grid{ grid-template-columns: 1fr; }
  .picker-band{ margin: 0 14px; padding: 34px 20px; }
  .newsletter{ flex-direction: column; align-items: flex-start; }
  .utility-bar .container{ font-size: 0.72rem; gap: 14px; }
}
