/* HomeKit Simplified: complete site stylesheet, repair 2026-09-05. */
:root {
  --navy-950: #071a2f;
  --navy-900: #0b2747;
  --navy-800: #12375f;
  --blue-600: #087ff5;
  --blue-500: #2d95ff;
  --blue-100: #e8f3ff;
  --gold-500: #f2c657;
  --gold-200: #fae8ae;
  --green-500: #33b47b;
  --ink: #142338;
  --muted: #5c6979;
  --line: #dfe6ed;
  --soft: #f4f7fa;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(7, 26, 47, 0.12);
  --shadow-soft: 0 10px 30px rgba(7, 26, 47, 0.08);
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 172px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy-950);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(11, 39, 71, 0.09);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 148px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  width: 180px;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand img {
  width: 100%;
  height: 136px;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.primary-nav a {
  position: relative;
  color: var(--navy-950);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.primary-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  background: var(--blue-600);
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after { transform: scaleX(1); }

.nav-cta {
  padding: 11px 17px;
  border-radius: 9px;
  color: var(--white) !important;
  background: var(--blue-600);
  box-shadow: 0 8px 18px rgba(8, 127, 245, 0.23);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: var(--navy-900);
}

.announcement {
  color: var(--navy-950);
  background: var(--gold-500);
}

.announcement-inner {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.9rem;
}

.announcement a { font-weight: 800; text-decoration: none; }

.hero {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(118deg, rgba(7, 26, 47, 0.99) 0%, rgba(11, 39, 71, 0.98) 58%, rgba(18, 55, 95, 0.95) 100%);
}

.hero::after {
  position: absolute;
  right: -12%;
  bottom: -210px;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: rgba(45, 149, 255, 0.08);
  content: "";
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(242, 198, 87, 0.28);
  border-radius: 50%;
}

.orbit-one { top: -220px; right: -90px; width: 540px; height: 540px; }
.orbit-two { top: -125px; right: 5px; width: 340px; height: 340px; }

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 700px;
  padding-block: 88px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  align-items: center;
  gap: 78px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-500);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow-dark { color: #9b7115; }

.hero h1 {
  margin: 0;
  font-size: clamp(3.6rem, 7vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 span { color: var(--blue-500); }

.hero-lead {
  max-width: 690px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.17rem;
  line-height: 1.75;
}

.button-row {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 50px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--navy-950); background: var(--gold-500); box-shadow: 0 10px 25px rgba(242, 198, 87, 0.19); }
.button-secondary { border-color: rgba(255, 255, 255, 0.5); color: var(--white); background: transparent; }
.button-secondary:hover { background: rgba(255, 255, 255, 0.08); }
.button-outline { border-color: #b9c8d7; color: var(--navy-900); background: var(--white); }
.button-outline:hover { border-color: var(--blue-600); box-shadow: 0 10px 24px rgba(7, 26, 47, 0.08); }

.hero-note {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.9rem;
}

.hero-card {
  padding: 38px 38px 34px;
  border-top: 4px solid var(--gold-500);
  border-radius: var(--radius-lg);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 24px 75px rgba(0, 0, 0, 0.27);
}

.card-kicker {
  margin: 0 0 10px;
  color: #9b7115;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-card h2,
.starter-card h3 {
  margin: 0;
  color: var(--navy-950);
  font-size: 1.65rem;
  line-height: 1.3;
}

.hero-card > p:not(.card-kicker) { margin: 16px 0 20px; color: var(--muted); }

.check-list {
  padding: 0;
  margin: 0;
  display: grid;
  gap: 13px;
  list-style: none;
}

.check-list li { position: relative; padding-left: 28px; font-size: 0.94rem; font-weight: 600; }
.check-list li::before { position: absolute; left: 0; color: #9b7115; font-weight: 800; content: "✓"; }

.section { padding: 100px 0; }
.section-soft { background: var(--soft); }
.section-navy { color: var(--white); background: var(--navy-900); }

.section-heading { margin-bottom: 42px; }
.section-heading h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(2.15rem, 4vw, 3.2rem);
  letter-spacing: -0.035em;
  line-height: 1.16;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 60px;
}

.split-heading > p { margin: 0 0 6px; color: var(--muted); }
.light-heading h2 { color: var(--white); }
.light-heading > p { color: rgba(255, 255, 255, 0.67); }

.setup-diagram { margin: 0; }

.setup-diagram-link {
  padding: clamp(8px, 1.5vw, 18px);
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
  text-decoration: none;
}

.setup-diagram-link img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-lg) - 8px);
}

.setup-diagram figcaption {
  max-width: 900px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

.diagram-actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.diagram-actions .text-link { padding: 12px 8px; }

.guide-grid,
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.guide-card {
  min-height: 320px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.guide-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.guide-card h3 { margin: 26px 0 12px; color: var(--navy-950); font-size: 1.25rem; line-height: 1.35; }
.guide-card p { margin: 0; color: var(--muted); }
.guide-card a { margin-top: auto; padding-top: 24px; color: var(--blue-600); font-weight: 800; text-decoration: none; }

.pill {
  width: fit-content;
  padding: 5px 10px;
  border-radius: 99px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pill-blue { color: #075cae; background: var(--blue-100); }
.pill-gold { color: #845c05; background: #fff4ce; }
.pill-green { color: #176f4a; background: #e7f7ef; }

.product-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(310px, 0.55fr);
  align-items: end;
  gap: 54px;
}

.section-intro { max-width: 740px; margin: 17px 0 0; color: var(--muted); font-size: 1.05rem; }

.affiliate-note {
  max-width: 390px;
  margin: 0;
  padding: 0;
  justify-self: end;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.filter-bar { margin: 0 0 30px; display: flex; flex-wrap: wrap; gap: 10px; }

.filter-button {
  padding: 9px 14px;
  border: 1px solid #cfd9e3;
  border-radius: 99px;
  color: var(--navy-800);
  background: var(--white);
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
}

.filter-button:hover,
.filter-button.is-active { border-color: var(--navy-900); color: var(--white); background: var(--navy-900); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.product-card {
  min-height: 330px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-top: 3px solid var(--blue-500);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 8px 25px rgba(7, 26, 47, 0.055);
}

.product-topline { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.product-label { color: #9b7115; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.product-category { color: #708093; font-size: 0.68rem; font-weight: 700; text-transform: capitalize; }
.product-card h3 { margin: 24px 0 10px; color: var(--navy-950); font-size: 1.12rem; line-height: 1.35; }
.product-card > p { margin: 0; color: var(--muted); font-size: 0.88rem; }

.compatibility {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #3f596f;
  font-size: 0.76rem;
  font-weight: 700;
}

.compatibility span { color: var(--green-500); }

.product-action {
  margin-top: 16px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  color: var(--blue-600);
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
}

.product-action.is-disabled { color: #8b98a7; }
.noscript-note { padding: 16px; border-left: 4px solid var(--gold-500); background: var(--white); }

.setup-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.55fr);
  align-items: center;
  gap: 80px;
}

.setup-grid h2 { margin: 0; color: var(--navy-950); font-size: clamp(2.2rem, 4.5vw, 3.6rem); letter-spacing: -0.045em; line-height: 1.12; }
.setup-list { margin-top: 42px; display: grid; gap: 0; }

.setup-list article {
  padding: 22px 0;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  border-top: 1px solid var(--line);
}

.setup-list article:last-child { border-bottom: 1px solid var(--line); }
.setup-number { color: var(--blue-600); font-weight: 800; }
.setup-list h3 { margin: 0 0 5px; color: var(--navy-950); font-size: 1rem; }
.setup-list p { margin: 0; color: var(--muted); }

.starter-card {
  padding: 36px;
  border-top: 4px solid var(--gold-500);
  border-radius: var(--radius-lg);
  background: var(--soft);
  box-shadow: var(--shadow-soft);
}

.starter-card ol { padding: 0; margin: 30px 0; display: grid; gap: 0; list-style: none; counter-reset: starter; }
.starter-card li {
  padding: 15px 0 15px 44px;
  position: relative;
  display: grid;
  border-top: 1px solid var(--line);
  counter-increment: starter;
}
.starter-card li:last-child { border-bottom: 1px solid var(--line); }
.starter-card li::before {
  position: absolute;
  top: 15px;
  left: 0;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy-900);
  font-size: 0.72rem;
  font-weight: 800;
  content: counter(starter);
}
.starter-card li strong { color: var(--navy-950); font-size: 0.9rem; }
.starter-card li span { color: var(--muted); font-size: 0.78rem; }
.text-link { color: var(--blue-600); font-size: 0.86rem; font-weight: 800; text-decoration: none; }

.automation-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.13);
}

.automation-grid article { min-height: 270px; padding: 28px 24px; background: var(--navy-900); }
.automation-grid article > span { color: var(--gold-500); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.1em; }
.automation-grid h3 { margin: 32px 0 12px; color: var(--white); font-size: 1rem; line-height: 1.4; }
.automation-grid p { margin: 0; color: rgba(255, 255, 255, 0.64); font-size: 0.84rem; }

.video-card { padding-bottom: 25px; border-bottom: 1px solid var(--line); }
.video-placeholder {
  aspect-ratio: 16 / 9;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  overflow: hidden;
  border-radius: var(--radius-md);
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-950), var(--blue-600));
}
.video-placeholder span { padding: 4px 8px; border: 1px solid rgba(255, 255, 255, 0.4); border-radius: 99px; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; }
.video-placeholder strong { align-self: center; color: rgba(255, 255, 255, 0.15); font-size: 5.5rem; line-height: 1; }
.video-card h3 { margin: 22px 0 8px; color: var(--navy-950); font-size: 1.1rem; }
.video-card p { margin: 0; color: var(--muted); font-size: 0.9rem; }

.newsletter { padding: 88px 0; color: var(--white); background: linear-gradient(115deg, var(--navy-950), var(--navy-800)); }
.newsletter-grid { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(390px, 1fr); align-items: center; gap: 80px; }
.newsletter h2 { margin: 0; font-size: clamp(2.2rem, 4vw, 3.2rem); letter-spacing: -0.04em; line-height: 1.15; }
.newsletter-grid > div > p:last-child { margin: 20px 0 0; color: rgba(255, 255, 255, 0.7); }

.signup-form { padding: 28px; border: 1px solid rgba(255, 255, 255, 0.15); border-radius: var(--radius-md); background: rgba(255, 255, 255, 0.08); }
.signup-form > label:first-child { display: block; margin-bottom: 7px; font-size: 0.8rem; font-weight: 700; }
.form-row { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.form-row input {
  min-width: 0;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
}
.form-row button {
  min-height: 50px;
  padding: 12px 17px;
  border: 0;
  border-radius: 8px;
  color: var(--navy-950);
  background: var(--gold-500);
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.download-links {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.download-links a {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 7px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.download-links a:hover,
.download-links a:focus-visible { background: rgba(255, 255, 255, 0.18); }
.form-row button:disabled { opacity: 0.6; cursor: wait; }

.consent-row { margin-top: 14px; display: flex; align-items: flex-start; gap: 9px; color: rgba(255, 255, 255, 0.78); font-size: 0.75rem; line-height: 1.5; }
.consent-row input { margin-top: 3px; accent-color: var(--gold-500); }
.form-note { margin: 11px 0 0; color: rgba(255, 255, 255, 0.58); font-size: 0.7rem; }
.form-note a { color: var(--white); }
.form-status { min-height: 22px; margin: 12px 0 0; font-size: 0.78rem; font-weight: 700; }
.form-status.is-success { color: #8af0c0; }
.form-status.is-error { color: #ffb3b3; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }

.site-footer { padding: 44px 0 22px; color: rgba(255, 255, 255, 0.72); background: var(--navy-950); }
.footer-grid { padding-bottom: 32px; display: flex; align-items: center; justify-content: space-between; gap: 32px; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-brand img { width: 92px; height: 82px; padding: 4px; object-fit: contain; border-radius: 10px; background: var(--white); }
.footer-brand div { display: grid; }
.footer-brand strong { color: var(--white); }
.footer-brand span { font-size: 0.75rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-links a { color: var(--white); font-size: 0.76rem; font-weight: 700; text-decoration: none; }
.footer-bottom { padding-top: 20px; display: flex; align-items: flex-start; justify-content: space-between; gap: 34px; color: rgba(255, 255, 255, 0.48); font-size: 0.65rem; line-height: 1.55; }
.footer-bottom span:last-child { max-width: 520px; text-align: right; }

.policy-main { min-height: 70vh; padding: 90px 0; background: var(--soft); }
.policy-wrap { max-width: 880px; }
.policy-wrap > h1 { margin: 0; color: var(--navy-950); font-size: clamp(2.8rem, 6vw, 4.5rem); letter-spacing: -0.05em; line-height: 1.05; }
.policy-updated { margin: 16px 0 52px; color: var(--muted); }
.policy-wrap section { padding: 26px 0; border-top: 1px solid var(--line); }
.policy-wrap section h2 { margin: 0 0 10px; color: var(--navy-950); font-size: 1.2rem; }
.policy-wrap section p { margin: 0; color: var(--muted); }
.policy-button { margin-top: 32px; color: var(--white); background: var(--blue-600); }
.privacy-nav { margin-left: auto; }
.compact-footer { padding-top: 22px; }
.compact-footer .footer-bottom { justify-content: center; }
.footer-bottom a { color: inherit; }

.landing-header { min-height: 116px; }
.landing-header .brand { width: 150px; }
.landing-header .brand img { height: 104px; }
.starter-landing-hero {
  padding: 92px 0;
  color: var(--white);
  background: linear-gradient(118deg, var(--navy-950), var(--navy-800));
}
.starter-landing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.68fr);
  align-items: center;
  gap: 76px;
}
.starter-landing h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.25rem);
  letter-spacing: -0.055em;
  line-height: 1.02;
}
.landing-lead {
  max-width: 720px;
  margin: 28px 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
}
.landing-checks { gap: 10px; }
.landing-form-card {
  padding: 36px;
  border-top: 4px solid var(--gold-500);
  border-radius: var(--radius-lg);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 24px 75px rgba(0, 0, 0, 0.25);
}
.landing-form-card h2 { margin: 0; color: var(--navy-950); font-size: 1.7rem; line-height: 1.25; }
.landing-form-card > p:not(.card-kicker) { margin: 12px 0 22px; color: var(--muted); }
.landing-form-card .signup-form { padding: 0; border: 0; color: var(--ink); background: transparent; }
.landing-form-card .signup-form > label:first-child { color: var(--navy-950); }
.landing-form-card .signup-form > input[type="email"],
.unsubscribe-form input {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #bdcbd8;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
}
.landing-form-card .signup-form > button,
.unsubscribe-form button {
  width: 100%;
  min-height: 50px;
  margin-top: 12px;
  padding: 12px 17px;
  border: 0;
  border-radius: 8px;
  color: var(--navy-950);
  background: var(--gold-500);
  font-weight: 800;
  cursor: pointer;
}
.landing-form-card .consent-row { color: var(--muted); }
.landing-form-card .form-note { color: var(--muted); }
.landing-form-card .form-note a { color: var(--blue-600); }
.landing-form-card .form-status.is-success,
.unsubscribe-wrap .form-status.is-success { color: #176f4a; }
.landing-form-card .form-status.is-error,
.unsubscribe-wrap .form-status.is-error { color: #a02727; }
.landing-form-card .download-links a { border-color: #aac4df; color: var(--navy-900); background: var(--blue-100); }
.landing-proof { padding: 34px 0; background: var(--soft); }
.landing-proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.landing-proof-grid div { display: grid; gap: 3px; }
.landing-proof-grid strong { color: var(--navy-950); }
.landing-proof-grid span { color: var(--muted); font-size: 0.84rem; }
.unsubscribe-wrap { max-width: 620px; }
.unsubscribe-wrap > p:not(.eyebrow):not(.form-status) { color: var(--muted); }
.unsubscribe-form { margin-top: 28px; }
.unsubscribe-form label { display: block; margin-bottom: 7px; color: var(--navy-950); font-size: 0.82rem; font-weight: 700; }
.contact-wrap { max-width: 760px; }
.contact-lead { margin: 28px 0 8px; color: var(--muted); }
.contact-email { margin: 0; font-size: clamp(1.2rem, 3vw, 1.65rem); font-weight: 800; }
.contact-email a { color: var(--blue-600); }
.contact-note { max-width: 620px; margin: 28px 0 0; color: var(--muted); font-size: 0.86rem; }

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

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr) 380px; gap: 46px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .automation-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .menu-toggle { display: block; }
  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    padding: 18px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { padding: 10px 8px; }
  .nav-cta { margin-top: 6px; text-align: center; }
  .privacy-nav { position: static; padding: 0; display: flex; border: 0; box-shadow: none; }

  .hero,
  .hero-grid { min-height: auto; }
  .hero-grid { padding-block: 72px; grid-template-columns: 1fr; gap: 50px; }
  .hero h1 { font-size: clamp(3.5rem, 12vw, 5.4rem); }
  .hero-card { max-width: 580px; }

  .split-heading,
  .product-heading,
  .setup-grid,
  .newsletter-grid { grid-template-columns: 1fr; gap: 30px; }
  .affiliate-note { justify-self: start; }
  .guide-grid,
  .video-grid { grid-template-columns: 1fr; }
  .guide-card { min-height: 260px; }
  .automation-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .automation-grid article { min-height: 230px; }
  .setup-grid { gap: 55px; }
  .newsletter-grid { gap: 42px; }
  .starter-landing-grid { grid-template-columns: 1fr; gap: 44px; }
  .landing-form-card { max-width: 620px; }
}

@media (max-width: 600px) {
  html { scroll-padding-top: 126px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .header-inner { min-height: 108px; }
  .brand { width: 132px; }
  .brand img { height: 98px; }
  .announcement-inner { padding-block: 11px; align-items: flex-start; flex-direction: column; gap: 2px; line-height: 1.45; }
  .announcement a { font-size: 0.78rem; }
  .hero-grid { padding-block: 60px; }
  .hero h1 { font-size: clamp(3.2rem, 16vw, 4.4rem); }
  .hero-lead { font-size: 1rem; }
  .button-row { flex-direction: column; }
  .button { width: 100%; }
  .hero-card { padding: 28px 24px; }
  .section { padding: 76px 0; }
  .section-heading h2 { font-size: 2.25rem; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card { min-height: 290px; }
  .filter-bar { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 8px; }
  .filter-button { flex: 0 0 auto; }
  .starter-card { padding: 28px 22px; }
  .automation-grid { grid-template-columns: 1fr; }
  .automation-grid article { min-height: auto; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid,
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-bottom span:last-child { text-align: left; }
  .footer-links { display: grid; grid-template-columns: repeat(2, auto); }
  .policy-main { padding: 65px 0; }
  .starter-landing-hero { padding: 64px 0; }
  .starter-landing h1 { font-size: clamp(2.8rem, 14vw, 4.1rem); }
  .landing-form-card { padding: 28px 22px; }
  .landing-proof-grid { grid-template-columns: 1fr; gap: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}

/* YouTube video library */
.youtube-section { background: #f4f8fc; }

.youtube-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.youtube-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.youtube-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.youtube-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--navy-950);
}

.youtube-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.youtube-card-body {
  padding: 26px 28px 28px;
}

.video-kicker {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 99px;
  color: #075cae;
  background: var(--blue-100);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.youtube-card h3 {
  margin: 17px 0 10px;
  color: var(--navy-950);
  font-size: 1.28rem;
  line-height: 1.35;
}

.youtube-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.video-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--blue-600);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

.video-link:hover { text-decoration: underline; }

.youtube-channel-cta {
  margin-top: 34px;
  padding: 28px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-radius: var(--radius-md);
  color: var(--white);
  background: linear-gradient(115deg, var(--navy-950), var(--navy-800));
}

.youtube-channel-cta div {
  display: grid;
  gap: 5px;
}

.youtube-channel-cta strong { font-size: 1.05rem; }
.youtube-channel-cta span { color: rgba(255,255,255,0.7); font-size: 0.88rem; }
.youtube-channel-cta .button { flex: 0 0 auto; }

@media (max-width: 800px) {
  .youtube-grid { grid-template-columns: 1fr; }
  .youtube-channel-cta { align-items: flex-start; flex-direction: column; }
}


/* Gear I Use & Recommend */
.section-cta-row { margin-top: 34px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.section-cta-row span { color: var(--muted); font-size: .88rem; }
.gear-hero { position: relative; overflow: hidden; color: var(--white); background: radial-gradient(circle at 80% 20%, rgba(24,121,232,.34), transparent 34%), linear-gradient(125deg,var(--navy-950),#0b3765 68%,#0d4d86); }
.gear-hero-grid { min-height: 650px; padding-block: 88px; display: grid; grid-template-columns: minmax(0,1.2fr) minmax(340px,.72fr); align-items: center; gap: 70px; }
.gear-hero h1 { margin: 12px 0 22px; font-size: clamp(3.7rem,7vw,6.7rem); letter-spacing: -.055em; line-height: .94; }
.gear-hero h1 span { color: #63b9ff; }
.gear-hero-lead { max-width: 760px; color: rgba(255,255,255,.77); font-size: 1.08rem; line-height: 1.8; }
.gear-trust-card { padding: 36px; border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-lg); background: rgba(4,25,50,.72); box-shadow: 0 28px 80px rgba(0,0,0,.25); }
.gear-trust-card h2 { margin: 18px 0 14px; font-size: 1.72rem; }
.gear-trust-card p { color: rgba(255,255,255,.7); }
.gear-legend { margin-top: 24px; display: grid; gap: 11px; color: rgba(255,255,255,.86); font-size: .9rem; }
.gear-legend b { color: #73c3ff; }
.gear-jump-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.gear-jump-grid a { min-height: 145px; padding: 28px; display: grid; align-content: center; gap: 8px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); color: var(--navy-950); text-decoration: none; box-shadow: var(--shadow-soft); transition: transform 180ms ease, box-shadow 180ms ease; }
.gear-jump-grid a:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.gear-jump-grid strong { font-size: 1.08rem; }
.gear-jump-grid span { color: var(--muted); font-size: .84rem; }
.gear-filter-row { margin-bottom: 26px; display: flex; gap: 10px; flex-wrap: wrap; }
.gear-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 24px; }
.gear-card { min-height: 330px; padding: 27px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-soft); content-visibility: auto; contain-intrinsic-size: auto 330px; }
.gear-card-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.gear-status { display: inline-flex; width: fit-content; padding: 6px 10px; border-radius: 99px; color: #075cae; background: #e7f3ff; font-size: .68rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.gear-status-other { color: #6f5314; background: #fff1c7; }
.gear-status-premium { color: #5c3b91; background: #eee6ff; }
.brand picture { display: block; width: 100%; }
.footer-brand picture { display: block; flex: 0 0 auto; }
.gear-brand { color: var(--muted); font-size: .72rem; font-weight: 800; text-transform: uppercase; }
.gear-card h3 { margin: 20px 0 11px; color: var(--navy-950); font-size: 1.22rem; line-height: 1.35; }
.gear-card-details { margin: -2px 0 12px; display: flex; align-items: center; justify-content: space-between; gap: 12px; color: #62778c; font-size: .69rem; font-weight: 700; letter-spacing: .02em; }
.gear-card-details span:last-child { flex: 0 0 auto; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.gear-card p { margin: 0; color: var(--muted); font-size: .9rem; }
.gear-compat { margin: auto 0 18px; padding-top: 22px; display: flex; align-items: center; gap: 8px; color: #27664e; font-size: .78rem; font-weight: 700; }
.gear-shop { display: inline-flex; width: fit-content; color: var(--blue-600); font-size: .85rem; font-weight: 800; text-decoration: none; }
.gear-shop:hover { text-decoration: underline; }
.gear-shop-pending { color: #8a6c2c; cursor: default; }
.browse-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.browse-card { padding: 25px; display: grid; gap: 7px; text-align: left; border: 1px solid var(--line); border-radius: var(--radius-md); color: var(--navy-950); background: var(--white); box-shadow: var(--shadow-soft); cursor: pointer; }
.browse-card:hover { border-color: #a9cdec; }
.browse-card strong { font-size: 1rem; }
.browse-card span { color: var(--muted); font-size: .8rem; }
.brand-grid { display: flex; gap: 12px; flex-wrap: wrap; }
.brand-chip { padding: 11px 15px; border: 1px solid #aac8e3; border-radius: 99px; color: var(--navy-900); background: var(--white); font-weight: 800; cursor: pointer; }
.brand-chip:hover { border-color: var(--blue-600); background: var(--blue-100); }
.brand-chip span { margin-left: 5px; color: var(--muted); font-size: .7rem; font-weight: 700; }
.custom-setup-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 24px; }
.custom-setup-card { padding: 34px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg); background: rgba(255,255,255,.065); }
.custom-setup-card .card-kicker { color: #8fd0ff; }
.custom-setup-card h3 { margin: 8px 0 13px; font-size: 1.45rem; }
.custom-setup-card > p:not(.card-kicker) { color: rgba(255,255,255,.72); line-height: 1.7; }
.custom-icon { font-size: 2rem; }
.setup-flow { margin: 24px 0; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.setup-flow span { padding: 9px 12px; border-radius: 99px; color: var(--white); background: rgba(93,184,255,.18); font-size: .78rem; font-weight: 800; }
.setup-flow b { color: #7ec8ff; }
.custom-setup-card small { display: block; color: rgba(255,255,255,.56); line-height: 1.55; }
.gear-next { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.gear-next h2 { margin: 0 0 10px; color: var(--navy-950); font-size: clamp(2rem,4vw,3rem); }
.gear-next p:not(.eyebrow) { max-width: 760px; color: var(--muted); }
@media (max-width:1080px) { .gear-grid { grid-template-columns: repeat(2,minmax(0,1fr)); } .browse-grid { grid-template-columns: repeat(2,minmax(0,1fr)); } }
@media (max-width:860px) { .gear-hero-grid { grid-template-columns: 1fr; min-height: auto; } .gear-jump-grid,.custom-setup-grid { grid-template-columns:1fr; } .gear-next { align-items:flex-start; flex-direction:column; } }
@media (max-width:600px) { .gear-hero-grid { padding-block:60px; } .gear-hero h1 { font-size: clamp(3.2rem,15vw,4.5rem); } .gear-grid,.browse-grid { grid-template-columns:1fr; } .custom-setup-card { padding:26px 22px; } }


/* September 5, 2026 — scoped additions; original branding and diagram styles stay intact. */
.automation-context { max-width: 920px; margin: -12px 0 28px; color: rgba(255,255,255,.78); font-size: .91rem; }
.automation-stories { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; border: 0; border-radius: 0; background: transparent; overflow: visible; }
.automation-stories .automation-story { display: flex; flex-direction: column; min-width: 0; min-height: 0; padding: 28px; border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-md); background: rgba(255,255,255,.045); }
.automation-stories h3 { margin: 14px 0 12px; font-size: 1.18rem; line-height: 1.35; }
.automation-stories p { margin: 0 0 16px; color: rgba(255,255,255,.84); font-size: .9rem; line-height: 1.78; }
.automation-stories .automation-timing { align-self: flex-start; padding: 7px 10px; margin-bottom: 20px; border: 1px solid rgba(143,208,255,.22); border-radius: 7px; color: #c4e5ff; background: rgba(8,127,245,.09); font-size: .74rem; font-weight: 800; line-height: 1.5; }
.automation-stories .automation-personal { padding-left: 13px; border-left: 2px solid var(--gold-500); color: var(--gold-200); font-style: italic; }
.automation-gear-links { display: flex; flex-wrap: wrap; gap: 9px 15px; margin-top: auto; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.14); }
.automation-gear-links a { color: #b8deff; font-size: .78rem; font-weight: 700; text-underline-offset: 4px; }
.automation-section-actions { margin-top: 30px; }
.special-automation-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 24px; }
.special-automation-card { display: flex; flex-direction: column; min-width: 0; padding: 32px; border: 1px solid var(--line); border-top: 3px solid var(--gold-500); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-soft); }
.special-automation-icon { font-size: 2rem; margin-bottom: 10px; }
.special-automation-card h3 { margin: 0 0 15px; font-size: 1.45rem; line-height: 1.4; }
.special-automation-card > p:not(.card-kicker) { margin: 0 0 18px; color: var(--muted); }
.special-automation-card .special-hardware { font-size: .79rem; font-weight: 800; }
.special-automation-card .text-link { margin-top: auto; }
.special-gear-link { display: inline-block; color: #b8deff; font-size: .86rem; font-weight: 800; text-underline-offset: 4px; }
.custom-setup-card .setup-pending { padding: 12px 0 0; border-top: 1px solid rgba(255,255,255,.16); font-size: .84rem; }
.custom-setup-card small { color: rgba(255,255,255,.75); }
.gear-feature-links { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 22px; }
.gear-feature-links a { padding: 9px 13px; border: 1px solid #bfd3e4; border-radius: 9px; background: var(--white); color: var(--navy-900); font-size: .82rem; font-weight: 800; text-decoration: none; }
.gear-feature-links a:hover { border-color: var(--blue-600); }
.gear-search-row { display: flex; align-items: flex-end; gap: 14px; margin: 0 0 12px; }
.gear-search-field { flex: 1; max-width: 710px; min-width: 0; }
.gear-search-field label { display: block; margin-bottom: 6px; font-size: .83rem; font-weight: 800; }
.gear-search-field input { width: 100%; min-height: 49px; padding: 10px 13px; border: 1px solid #a4b9cd; border-radius: 8px; background: var(--white); color: var(--ink); font-size: .91rem; }
.gear-reset { min-height: 49px; padding: 10px 16px; border: 1px solid #a4b9cd; border-radius: 8px; color: var(--navy-900); background: var(--white); font-size: .85rem; font-weight: 800; cursor: pointer; }
.gear-results-summary { margin: 14px 0 8px; color: var(--muted); font-size: .84rem; }
.gear-thumbnail-note { margin: 0 0 24px; max-width: 850px; color: var(--muted); font-size: .76rem; }
.gear-card-intro,.product-card-intro { display: grid; grid-template-columns: 96px minmax(0,1fr); align-items: start; gap: 17px; margin: 20px 0 16px; }
.gear-thumbnail { position: relative; flex: 0 0 96px; width: 96px; height: 96px; margin: 0; overflow: hidden; border: 1px solid #dbe5ef; border-radius: 12px; background: #f1f6fb; }
.thumbnail-placeholder { display: flex; height: 100%; align-items: center; justify-content: center; flex-direction: column; gap: 4px; }
.thumbnail-placeholder[hidden] { display: none; }
.thumbnail-symbol { display: block; font-family: 'Apple Color Emoji','Segoe UI Emoji','Noto Color Emoji',sans-serif; font-size: 35px; line-height: 1.25; }
.thumbnail-caption { color: #49657e; font-size: 9px; font-weight: 800; line-height: 1.3; text-transform: uppercase; letter-spacing: .045em; }
.gear-thumbnail img { position: absolute; inset: 0; width: 100%; height: 100%; padding: 5px; object-fit: contain; opacity: 0; background: var(--white); }
.gear-thumbnail.has-product-photo img { opacity: 1; }
.gear-card-copy,.product-card-copy { min-width: 0; }
.gear-card .gear-card-copy h3,.product-card .product-card-copy h3 { margin: 0 0 10px; overflow-wrap: anywhere; }
.gear-card-copy p,.product-card-copy p { margin: 12px 0 0; color: var(--muted); font-size: .87rem; line-height: 1.75; }
.gear-card-copy .gear-card-details { margin: 0; display: grid; gap: 5px; }
.gear-card-copy .gear-card-details span { overflow-wrap: anywhere; }
.gear-card { min-width: 0; }
.gear-card-top { flex-wrap: wrap; }
.gear-brand { overflow-wrap: anywhere; }
.gear-routine-link { display: inline-block; margin: 0 0 15px; color: #0966b8; font-size: .81rem; font-weight: 800; text-underline-offset: 3px; }
.gear-compat-note,.gear-compat-note span { color: #765817; }
.gear-empty { grid-column: 1/-1; padding: 25px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); }
.gear-legend > span { display: block; }
.gear-legend [data-gear-count] { display: inline; }
.brand-chip[aria-pressed="true"],.browse-card[aria-pressed="true"] { border-color: var(--blue-600); background: var(--blue-100); }
.gear-reset:focus-visible,.gear-search-field input:focus-visible,.gear-feature-links a:focus-visible,.gear-routine-link:focus-visible,.special-gear-link:focus-visible { outline: 3px solid #087ff5; outline-offset: 3px; }
.product-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
@media (min-width:1081px) { .gear-grid { grid-template-columns: repeat(2,minmax(0,1fr)); } }
@media (max-width:1000px) { .automation-stories { grid-template-columns: repeat(2,minmax(0,1fr)); } .product-grid { grid-template-columns: repeat(2,minmax(0,1fr)); } }
@media (max-width:760px) { .special-automation-grid { grid-template-columns: 1fr; } }
@media (max-width:600px) {
  .automation-stories,.product-grid { grid-template-columns: 1fr; }
  .automation-stories .automation-story { padding: 24px 22px; }
  .special-automation-card { padding: 26px 22px; }
  .gear-card-intro,.product-card-intro { grid-template-columns: 72px minmax(0,1fr); gap: 13px; }
  .gear-thumbnail { width: 72px; height: 72px; flex-basis: 72px; border-radius: 10px; }
  .thumbnail-symbol { font-size: 29px; }
  .thumbnail-caption { font-size: 8px; letter-spacing: 0; }
  .gear-search-row { align-items: stretch; flex-direction: column; gap: 10px; }
  .gear-reset { align-self: flex-start; }
}
@media (prefers-reduced-motion:reduce) { html { scroll-behavior: auto; } }

/* 2026-09-06 — Amazon Associates Product Link image slots */
.gear-card-intro,.product-card-intro { grid-template-columns: 118px minmax(0,1fr); gap: 19px; }
.gear-thumbnail { width: 118px; height: 118px; flex-basis: 118px; border-radius: 14px; background: linear-gradient(145deg,#f7fafc,#edf4f9); }
.gear-thumbnail-link { position: absolute; inset: 0; display: block; color: inherit; text-decoration: none; }
.gear-thumbnail-link:focus-visible { outline: 3px solid #087ff5; outline-offset: -4px; border-radius: 12px; }
.thumbnail-placeholder { padding: 9px; text-align: center; }
.thumbnail-symbol { font-size: 39px; }
.thumbnail-caption { max-width: 92px; color: #45647e; font-size: 8.5px; line-height: 1.2; letter-spacing: .025em; }
.gear-thumbnail img.amazon-product-image,.gear-thumbnail img.owner-product-image { position: absolute; inset: 0; width: 100%; height: 100%; padding: 7px; object-fit: contain; opacity: 0; background: var(--white); }
.gear-thumbnail.has-product-photo img.amazon-product-image,.gear-thumbnail.has-product-photo img.owner-product-image { opacity: 1; }
.amazon-product-link-frame { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; border: 0; background: var(--white); }
.amazon-tracking-pixel { position: absolute !important; width: 1px !important; height: 1px !important; inset: auto 0 0 auto !important; padding: 0 !important; opacity: 0 !important; pointer-events: none !important; }
.gear-thumbnail.has-product-photo { background: var(--white); }
@media (max-width:600px) {
  .gear-card-intro,.product-card-intro { grid-template-columns: 88px minmax(0,1fr); gap: 14px; }
  .gear-thumbnail { width: 88px; height: 88px; flex-basis: 88px; border-radius: 11px; }
  .thumbnail-symbol { font-size: 32px; }
  .thumbnail-caption { max-width: 72px; font-size: 7.5px; }
}
