:root {
  --sky-blue: #20a8ff;
  --white-sand: #f7f4eb;
  --golden-orange: #f39a3d;
  --seafoam-green: #76d8b8;
  --bg: #f7f4eb;
  --bg-strong: #eef8ff;
  --panel: rgba(255, 255, 255, 0.82);
  --panel-strong: rgba(255, 255, 255, 0.92);
  --ink: #171d2a;
  --muted: #506072;
  --line: rgba(23, 29, 42, 0.1);
  --accent: #f39a3d;
  --accent-dark: #1386da;
  --nav-ink: #3c4655;
  --nav-shell: rgba(255, 255, 255, 0.74);
  --shadow: 0 24px 60px rgba(31, 55, 84, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top right, rgba(32, 168, 255, 0.24), transparent 30%),
    radial-gradient(circle at 15% 18%, rgba(243, 154, 61, 0.18), transparent 26%),
    radial-gradient(circle at 82% 32%, rgba(118, 216, 184, 0.22), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, var(--bg-strong) 24%, var(--bg) 72%, #fffdf8 100%);
}

a {
  color: inherit;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 48px;
}

.page-shell-essay {
  width: min(980px, calc(100% - 32px));
}

.site-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 12px;
  padding: 16px 24px;
  border-radius: 24px;
  background: var(--nav-shell);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 18px 40px rgba(18, 31, 47, 0.08);
  backdrop-filter: blur(16px);
}

.top-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.top-nav a {
  text-decoration: none;
  color: var(--nav-ink);
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  white-space: nowrap;
}

.top-nav a:hover,
.top-nav a:focus-visible {
  border-bottom-color: rgba(23, 29, 42, 0.24);
}

.apple-home {
  display: grid;
  gap: 72px;
  padding: 28px 0 10px;
}

.eyebrow,
.essay-deck {
  font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-dark);
}

.apple-hero,
.statement-band,
.product-band,
.story-band,
.about-band,
.closing-band,
.essay-article,
.site-footer {
  position: relative;
}

.apple-hero {
  padding: 24px 0 22px;
  display: grid;
  justify-items: center;
  text-align: center;
}

.hero-logo {
  width: clamp(220px, 34vw, 320px);
  height: auto;
  display: block;
  margin-bottom: 10px;
}

.apple-hero::before,
.product-band::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(32, 168, 255, 0.16), transparent 34%),
    radial-gradient(circle at left center, rgba(243, 154, 61, 0.1), transparent 28%),
    radial-gradient(circle at 72% 28%, rgba(118, 216, 184, 0.12), transparent 22%);
  z-index: -1;
}

.apple-hero h1,
.statement-copy h2,
.product-intro h2,
.story-band-copy h2,
.about-copy h2,
.closing-band h2,
.essay-article h1 {
  margin: 0;
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.apple-hero h1 {
  max-width: 9ch;
  font-size: clamp(3.8rem, 9vw, 6.6rem);
}

.hero-subhead {
  margin: 18px 0 0;
  max-width: 18ch;
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #273346;
}

.hero-body,
.statement-copy p,
.product-intro p,
.story-band-copy p,
.about-copy p,
.closing-band p,
.about-listing li,
.statement-side li,
.product-meta li,
.site-footer p {
  font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--muted);
  line-height: 1.7;
}

.hero-body {
  margin: 18px 0 0;
  max-width: 34rem;
  font-size: 1.08rem;
}

.hero-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 28px;
  justify-content: center;
}

.product-actions {
  display: grid;
  gap: 12px;
}

.product-band-heading {
  display: grid;
  gap: 8px;
  justify-items: center;
}

.product-band-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.product-jump {
  display: grid;
  gap: 8px;
  width: min(100%, 20rem);
  margin-top: 10px;
}

.product-jump span {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--nav-ink);
}

.product-jump select {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(23, 29, 42, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font: inherit;
  box-shadow: 0 10px 24px rgba(31, 55, 84, 0.08);
}

.product-carousel {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 28rem;
  max-width: 42rem;
  align-items: start;
}

.product-slide {
  display: grid;
  grid-area: 1 / 1;
  gap: 32px;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.product-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.product-intro,
.product-meta {
  width: 100%;
}

.product-meta {
  max-width: 32rem;
  justify-items: center;
}

.product-meta ul {
  width: min(100%, 30rem);
  margin: 0;
  padding-left: 0;
  list-style: none;
  text-align: center;
  display: grid;
  gap: 14px;
  justify-items: center;
}

.product-meta li {
  max-width: 30rem;
}

.product-intro .eyebrow,
.product-intro h2,
.product-intro p,
.product-actions {
  text-align: center;
}

.product-actions {
  display: grid;
  gap: 18px;
  justify-items: center;
  margin-top: 8px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(23, 29, 42, 0.18);
  cursor: pointer;
}

.carousel-dot.is-active {
  background: var(--accent-dark);
  transform: scale(1.08);
}

.cta-primary,
.cta-secondary {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
  font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
}

.cta-primary {
  padding: 0 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--golden-orange), #ffb35b);
  color: #fffdfa;
  box-shadow: 0 16px 28px rgba(243, 154, 61, 0.24);
}

.cta-secondary {
  min-height: 32px;
  padding: 0 8px 4px;
  color: var(--ink);
  border-bottom: 1px solid rgba(23, 29, 42, 0.24);
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding: 10px 0 0;
}

.proof-item {
  padding-right: 18px;
  border-right: 1px solid rgba(23, 29, 42, 0.1);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item span,
.story-link {
  font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  color: var(--ink);
}

.proof-item p {
  margin: 8px 0 0;
  font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--muted);
  line-height: 1.6;
}

.statement-band,
.product-band,
.story-band,
.about-band {
  display: grid;
  gap: 32px;
}

.statement-copy h2,
.product-intro h2,
.story-band-copy h2,
.about-copy h2,
.closing-band h2 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
}

.statement-band,
.about-band,
.product-band,
.story-band,
.closing-band {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.product-intro {
  justify-self: center;
  max-width: 32rem;
}

.product-meta {
  justify-self: center;
  justify-items: center;
}

.product-actions {
  justify-items: center;
}

.statement-copy,
.about-copy,
.product-intro,
.story-band-copy,
.closing-band {
  max-width: 48rem;
}

.statement-copy p,
.about-copy p,
.closing-band p {
  max-width: 42rem;
  font-size: 1.08rem;
}

.statement-side,
.about-listing {
  padding-top: 0;
  max-width: 42rem;
}

.statement-side ul,
.about-listing ul,
.product-meta ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 14px;
  text-align: left;
}

.product-band,
.story-band {
  align-items: end;
  padding: 22px 0 6px;
}

.product-intro p {
  max-width: 40rem;
  font-size: 1.1rem;
}

.product-meta {
  display: grid;
  gap: 20px;
  justify-items: center;
}

.story-band {
  padding-top: 4px;
  border-top: 1px solid rgba(23, 29, 42, 0.1);
}

.story-band-copy p {
  max-width: 36rem;
}

.story-link {
  text-decoration: none;
  border-bottom: 1px solid rgba(23, 29, 42, 0.22);
  align-self: center;
}

.closing-band {
  padding-top: 8px;
  max-width: 62rem;
  margin-left: auto;
  margin-right: auto;
  justify-items: center;
  text-align: center;
}

.closing-band .eyebrow {
  width: 100%;
  text-align: center;
}

.closing-band h2 {
  max-width: 11ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.closing-band p {
  max-width: 42rem;
  font-size: 1.02rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.essay-layout {
  display: grid;
  gap: 20px;
}

.essay-topbar {
  display: flex;
  justify-content: flex-start;
}

.essay-back-link {
  margin-top: 0;
}

.essay-article {
  padding: 44px 40px 52px;
  background:
    radial-gradient(circle at top right, rgba(32, 168, 255, 0.14), transparent 32%),
    radial-gradient(circle at left top, rgba(243, 154, 61, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 244, 235, 0.94));
}

.essay-brand {
  display: grid;
  justify-items: center;
  margin-bottom: 18px;
}

.essay-brand-logo {
  width: clamp(220px, 28vw, 320px);
  height: auto;
  display: block;
}

.essay-hero {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 18px;
}

.essay-hero-image {
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(32, 168, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(240, 247, 255, 0.95), rgba(255, 255, 255, 0.88));
  border: 1px solid var(--line);
  box-shadow: 0 20px 44px rgba(31, 55, 84, 0.12);
}

.essay-hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) contrast(1.05);
}

.essay-hero-copy {
  display: grid;
  gap: 10px;
}

.essay-article h1 {
  font-size: clamp(2.9rem, 6vw, 4.6rem);
  text-align: left;
}

.essay-deck {
  margin: 0;
  text-align: left;
}

.essay-article h2 {
  margin: 46px 0 16px;
  font-size: clamp(1.95rem, 3vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.essay-article p {
  margin: 0 0 18px;
  font-size: 1.1rem;
}

.essay-article > :not(.essay-hero) {
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
}

.essay-article .lead {
  font-size: 1.18rem;
  color: var(--ink);
  text-align: center;
}

.essay-article .break {
  height: 1px;
  margin: 34px 0 10px;
  background: linear-gradient(90deg, transparent, rgba(31, 28, 24, 0.16), transparent);
}

.essay-callout {
  margin: 30px 0 8px;
  padding: 24px 24px 8px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.essay-article h2,
.essay-article p,
.essay-final-line,
.essay-bottom-link {
  text-align: center;
}

.essay-final-line {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(31, 28, 24, 0.12);
  font-size: 1.18rem;
}

.essay-bottom-link {
  margin-top: 26px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 24px;
}

.hero-copy,
.hero-card,
.story-card,
.product-card,
.principle,
.site-footer {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 36px;
}

.eyebrow,
.section-kicker,
.hero-card-label {
  margin: 0 0 12px;
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: var(--accent-dark);
}

.hero-copy h1,
.section-heading h2,
.story-card h2 {
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero-text,
.story-card p,
.product-card p,
.principle p,
.site-footer p {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.7;
  color: var(--muted);
}

.hero-text {
  margin: 20px 0 0;
  max-width: 60ch;
  font-size: 17px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-card {
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 249, 242, 0.96), rgba(239, 226, 213, 0.86));
}

.signal-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
  font-family: Arial, Helvetica, sans-serif;
}

.signal-list li {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.section-grid,
.about-section,
.product-section,
.principles-section {
  margin-top: 24px;
}

.front-story {
  width: min(900px, 100%);
  margin: 32px auto 0;
}

.front-story-card {
  background: #f7f1e6;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 50px 48px;
}

.front-story-card h1 {
  margin: 0 0 18px;
  color: #000;
  font-size: clamp(2.8rem, 7vw, 4rem);
  text-align: center;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.front-story-card h2 {
  margin: 40px 0 18px;
  color: #000;
  font-size: clamp(2rem, 4vw, 2.5rem);
  line-height: 1.15;
}

.front-story-card p {
  margin: 0 0 18px;
  color: #000;
  font-size: 18px;
  line-height: 1.8;
}

.front-story-deck {
  text-align: center;
  margin-bottom: 36px;
}

.front-story-emphasis {
  font-weight: 700;
}

.front-story-close {
  font-size: 20px;
}

.front-story-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.section-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 20px;
}

.story-card,
.about-card,
.product-card,
.principle {
  padding: 28px;
}

.story-card-wide {
  background: var(--panel-strong);
}

.story-card h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-bottom: 12px;
}

.story-card h3,
.about-card h2,
.product-card h3,
.principle h3 {
  margin: 0 0 8px;
  font-size: 1.5rem;
}

.about-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 251, 246, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.about-card h2 {
  font-size: clamp(2rem, 4.8vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.about-card p {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.8;
  color: var(--muted);
  font-size: 18px;
  max-width: 900px;
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.section-heading h2 {
  font-size: clamp(2rem, 5.4vw, 3.6rem);
}

.product-grid,
.principle-grid {
  display: grid;
  gap: 20px;
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card a,
.product-card span {
  display: inline-flex;
  margin-top: 16px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--accent-dark);
  text-decoration: none;
}

.principle-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.site-footer {
  margin-top: 28px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.76);
  display: grid;
  justify-items: center;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.fallback-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  gap: 12px;
  font-family: Arial, Helvetica, sans-serif;
}

@media (max-width: 960px) {
  .hero,
  .section-grid,
  .product-grid,
  .principle-grid,
  .proof-band,
  .statement-band,
  .about-band,
  .product-band,
  .story-band {
    grid-template-columns: 1fr;
  }

  .site-header {
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    margin-bottom: 4px;
    padding: 12px 14px;
  }

  .top-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    justify-content: initial;
    font-size: 13px;
  }

  .essay-hero {
    grid-template-columns: 1fr;
  }

  .page-shell-essay .top-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .statement-side,
  .about-listing {
    padding-top: 0;
  }

  .proof-item {
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(23, 29, 42, 0.1);
    padding-bottom: 18px;
  }

  .proof-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .front-story-card {
    padding: 34px 22px;
  }

  .front-story-card p,
  .front-story-close {
    font-size: 17px;
  }

  .apple-hero,
  .statement-band,
  .product-band,
  .story-band,
  .about-band,
  .closing-band,
  .essay-article {
    padding: 28px 22px;
  }

  .apple-home {
    gap: 48px;
    padding-top: 12px;
  }

  .product-carousel {
    min-height: 31rem;
  }

  .hero-logo {
    width: min(198px, 48vw);
    margin-bottom: 2px;
  }

  .essay-brand {
    margin-bottom: 10px;
  }

  .essay-brand-logo {
    width: min(210px, 54vw);
  }

  .apple-hero h1 {
    max-width: 8ch;
    font-size: clamp(3rem, 15vw, 4.2rem);
  }

  .hero-subhead {
    margin-top: 10px;
    font-size: 1.15rem;
  }

  .hero-body {
    margin-top: 12px;
    font-size: 1rem;
  }
}

/* SayIt marketing visual refresh */
html body.sayit-install {
  --sayitm-ink: #182136;
  --sayitm-copy: #526176;
  --sayitm-soft: #7f8ea4;
  --sayitm-brand: #1ca5ff;
  --sayitm-brand-deep: #1176d3;
  --sayitm-brand-wash: rgba(28, 165, 255, 0.12);
  --sayitm-warm: #ffb26e;
  --sayitm-warm-wash: rgba(255, 178, 110, 0.12);
  --sayitm-border: rgba(24, 33, 54, 0.09);
  --sayitm-card: rgba(255, 255, 255, 0.78);
  --sayitm-card-strong: rgba(255, 255, 255, 0.92);
  --sayitm-shadow: 0 26px 84px rgba(24, 62, 105, 0.14);
  --sayitm-shadow-soft: 0 14px 42px rgba(24, 62, 105, 0.08);
  --sayitm-radius: 28px;
  margin: 0;
  min-height: 100%;
  color: var(--sayitm-ink);
  font-family:
    "Avenir Next",
    "SF Pro Display",
    "Segoe UI",
    "Helvetica Neue",
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  background-color: #f8fbff;
  background-image:
    radial-gradient(1200px 760px at 0% 0%, rgba(28, 165, 255, 0.16), transparent 62%),
    radial-gradient(900px 540px at 100% 14%, rgba(255, 178, 110, 0.2), transparent 56%),
    linear-gradient(180deg, #f7fbff 0%, #f1f8ff 34%, #fbf6ef 100%);
  background-attachment: fixed;
}

html body.sayit-install,
html body.sayit-install main,
html body.sayit-install section,
html body.sayit-install div,
html body.sayit-install nav,
html body.sayit-install a,
html body.sayit-install p,
html body.sayit-install h1,
html body.sayit-install h2,
html body.sayit-install h3,
html body.sayit-install ul,
html body.sayit-install li,
html body.sayit-install footer {
  box-sizing: border-box;
}

html body.sayit-install img {
  display: block;
  max-width: 100%;
  height: auto;
}

html body.sayit-install a {
  color: inherit;
}

html body.sayit-install .skip {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

html body.sayit-install .skip:focus {
  left: 18px;
  top: 18px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--sayitm-ink);
  border: 1px solid rgba(17, 118, 211, 0.18);
  box-shadow: var(--sayitm-shadow-soft);
  z-index: 1000;
}

html body.sayit-install .sayit-wrap {
  width: min(1120px, calc(100vw - 36px));
  margin: 0 auto;
}

html body.sayit-install .sayit-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(248, 252, 255, 0.68);
  border-bottom: 1px solid rgba(24, 33, 54, 0.04);
}

html body.sayit-install .sayit-header .sayit-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

html body.sayit-install .brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

html body.sayit-install .brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(17, 118, 211, 0.14);
}

html body.sayit-install .brand-copy {
  display: grid;
  gap: 2px;
}

html body.sayit-install .brand-name {
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

html body.sayit-install .brand-tag {
  color: var(--sayitm-copy);
  font-size: 0.84rem;
}

html body.sayit-install .sayit-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

html body.sayit-install .nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--sayitm-copy);
  font-size: 0.95rem;
  font-weight: 600;
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

html body.sayit-install .nav-link:hover,
html body.sayit-install .nav-link:focus-visible {
  color: var(--sayitm-ink);
  background: rgba(255, 255, 255, 0.74);
  transform: translateY(-1px);
}

html body.sayit-install main#main {
  position: relative;
}

html body.sayit-install .hero,
html body.sayit-install .section,
html body.sayit-install .final-cta {
  scroll-margin-top: 92px;
}

html body.sayit-install .hero {
  padding: 58px 0 42px;
}

html body.sayit-install .hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(24px, 4vw, 42px);
  align-items: center;
  justify-items: stretch;
  max-width: none;
  margin: 0;
}

html body.sayit-install .hero-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: 0;
  text-align: left;
}

html body.sayit-install .pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  margin: 0 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(28, 165, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.68)),
    var(--sayitm-brand-wash);
  color: #0c66af;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 24px rgba(17, 118, 211, 0.08);
}

html body.sayit-install .hero-logo {
  width: min(260px, 56vw);
  margin: 0 0 18px;
  filter: drop-shadow(0 20px 38px rgba(17, 118, 211, 0.12));
}

html body.sayit-install .hero-title {
  margin: 0;
  max-width: 10.4ch;
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 0.94;
  letter-spacing: -0.072em;
  text-wrap: balance;
}

html body.sayit-install .hero-sub {
  max-width: 37rem;
  margin: 22px 0 0;
  color: var(--sayitm-copy);
  font-size: 1.13rem;
  line-height: 1.7;
}

html body.sayit-install .cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

html body.sayit-install .btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 18px;
  border: 1px solid rgba(24, 33, 54, 0.1);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition:
    transform 0.16s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

html body.sayit-install .btn:hover,
html body.sayit-install .btn:focus-visible {
  transform: translateY(-1px);
}

html body.sayit-install .btn-primary {
  color: #fefefe;
  background: linear-gradient(180deg, #2ab0ff 0%, #1074d1 100%);
  box-shadow: 0 18px 34px rgba(17, 118, 211, 0.24);
}

html body.sayit-install .btn-ghost {
  color: var(--sayitm-ink);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 28px rgba(24, 62, 105, 0.08);
}

html body.sayit-install .download-note {
  max-width: 40rem;
  margin-top: 16px;
  color: var(--sayitm-copy);
  font-size: 0.98rem;
  line-height: 1.65;
  text-align: left;
}

html body.sayit-install .trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

html body.sayit-install .trust-item,
html body.sayit-install .tile,
html body.sayit-install .review,
html body.sayit-install .hero-card,
html body.sayit-install .how-card,
html body.sayit-install .install-simple-card,
html body.sayit-install .final-cta-inner {
  border: 1px solid var(--sayitm-border);
  border-radius: var(--sayitm-radius);
  background: var(--sayitm-card);
  box-shadow: var(--sayitm-shadow-soft);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

html body.sayit-install .trust-item {
  padding: 20px 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.68)),
    linear-gradient(135deg, var(--sayitm-brand-wash), transparent 54%);
}

html body.sayit-install .trust-title {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

html body.sayit-install .trust-text,
html body.sayit-install .tile p,
html body.sayit-install .review p,
html body.sayit-install .install-simple-row span {
  margin: 0;
  color: var(--sayitm-copy);
  line-height: 1.68;
}

html body.sayit-install .hero-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.84)),
    linear-gradient(135deg, rgba(28, 165, 255, 0.12), rgba(255, 178, 110, 0.08));
  box-shadow: var(--sayitm-shadow);
}

html body.sayit-install .hero-card::before {
  content: "";
  position: absolute;
  inset: -40% auto auto 62%;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(28, 165, 255, 0.16), transparent 68%);
  pointer-events: none;
}

html body.sayit-install .card-title {
  position: relative;
  margin: 0 0 18px;
  font-size: 1.48rem;
  letter-spacing: -0.03em;
}

html body.sayit-install .clean-list {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

html body.sayit-install .clean-list li {
  position: relative;
  padding-left: 26px;
  color: var(--sayitm-copy);
  line-height: 1.7;
}

html body.sayit-install .clean-list li + li {
  margin-top: 12px;
}

html body.sayit-install .clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2ab0ff 0%, #1176d3 100%);
  box-shadow: 0 0 0 5px rgba(28, 165, 255, 0.1);
}

html body.sayit-install .note {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(24, 33, 54, 0.08);
  color: var(--sayitm-copy);
  font-size: 0.95rem;
  line-height: 1.65;
  text-align: left;
}

html body.sayit-install .section {
  padding: 34px 0;
}

html body.sayit-install .section-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  text-align: center;
  text-wrap: balance;
}

html body.sayit-install .section-sub {
  max-width: 43rem;
  margin: 14px auto 0;
  color: var(--sayitm-copy);
  font-size: 1.04rem;
  line-height: 1.72;
  text-align: center;
}

html body.sayit-install .grid3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

html body.sayit-install .tile {
  padding: 22px 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7)),
    linear-gradient(135deg, rgba(255, 178, 110, 0.1), transparent 58%);
}

html body.sayit-install .tile h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

html body.sayit-install .how-story {
  display: grid;
  gap: 22px;
}

html body.sayit-install .how-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 28px;
}

html body.sayit-install .how-card p {
  margin: 0;
  color: var(--sayitm-copy);
  font-size: 1.08rem;
  line-height: 1.8;
}

html body.sayit-install .how-card p + p {
  margin-top: 18px;
}

html body.sayit-install .install-simple {
  max-width: 860px;
  margin: 28px auto 0;
}

html body.sayit-install .install-simple-card {
  overflow: hidden;
}

html body.sayit-install .install-simple-row {
  display: grid;
  grid-template-columns: minmax(160px, 200px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 20px 22px;
}

html body.sayit-install .install-simple-row + .install-simple-row {
  border-top: 1px solid rgba(24, 33, 54, 0.08);
}

html body.sayit-install .install-simple-row strong {
  font-size: 1rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

html body.sayit-install .small-note {
  margin-top: 14px;
  color: var(--sayitm-copy);
  font-size: 0.92rem;
  line-height: 1.65;
  text-align: center;
}

html body.sayit-install .reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

html body.sayit-install .review {
  padding: 22px 20px;
}

html body.sayit-install .review p {
  color: var(--sayitm-ink);
  font-size: 1rem;
}

html body.sayit-install .review span {
  display: block;
  margin-top: 14px;
  color: var(--sayitm-soft);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

html body.sayit-install .final-cta {
  padding: 40px 0 56px;
}

html body.sayit-install .final-cta-inner {
  padding: 30px 28px;
  text-align: center;
  color: #f8fbff;
  background:
    radial-gradient(circle at top, rgba(42, 176, 255, 0.3), transparent 48%),
    linear-gradient(145deg, #12233a 0%, #173f69 54%, #0b79cf 100%);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 90px rgba(11, 121, 207, 0.26);
}

html body.sayit-install .final-cta-inner h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

html body.sayit-install .final-cta-inner p,
html body.sayit-install .privacy-line {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  color: rgba(248, 251, 255, 0.82);
  line-height: 1.7;
}

html body.sayit-install .final-cta-inner p {
  margin-top: 14px;
  margin-bottom: 0;
}

html body.sayit-install .final-cta-inner .cta-row {
  justify-content: center;
  margin-top: 22px;
}

html body.sayit-install .final-cta-inner .btn-ghost {
  color: #f8fbff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

html body.sayit-install .privacy-line {
  margin-top: 16px;
  font-size: 0.9rem;
}

html body.sayit-install .sayit-footer {
  padding: 0 0 42px;
}

html body.sayit-install .footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid rgba(24, 33, 54, 0.08);
  color: var(--sayitm-copy);
  font-size: 0.9rem;
}

html body.sayit-install .footer-right {
  text-align: right;
}

@media (max-width: 1080px) {
  html body.sayit-install .hero-grid {
    grid-template-columns: 1fr;
  }

  html body.sayit-install .hero-card {
    max-width: 760px;
  }

  html body.sayit-install .trust-row,
  html body.sayit-install .grid3,
  html body.sayit-install .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  html body.sayit-install .section,
  html body.sayit-install .final-cta {
    scroll-margin-top: 172px;
  }

  html body.sayit-install .sayit-wrap {
    width: min(100vw - 22px, 1120px);
  }

  html body.sayit-install .sayit-header .sayit-wrap,
  html body.sayit-install .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  html body.sayit-install .sayit-nav {
    width: 100%;
    justify-content: space-between;
    gap: 6px;
  }

  html body.sayit-install .nav-link {
    padding: 0 10px;
    min-height: 36px;
    font-size: 0.9rem;
  }

  html body.sayit-install #install .section-title {
    margin-bottom: 12px;
  }

  html body.sayit-install #install .section-sub {
    margin-top: 0;
  }

  html body.sayit-install #install .how-card {
    margin-top: 18px;
  }

  html body.sayit-install .hero {
    padding: 34px 0 28px;
  }

  html body.sayit-install .hero-logo {
    width: min(220px, 62vw);
    margin: 0 auto 18px;
  }

  html body.sayit-install .hero-title {
    max-width: 8.6ch;
    font-size: clamp(2.9rem, 13vw, 4.5rem);
  }

  html body.sayit-install .hero-sub {
    font-size: 1.02rem;
  }

  html body.sayit-install .hero-copy,
  html body.sayit-install .download-note {
    text-align: center;
  }

  html body.sayit-install .pill {
    margin: 0 auto 18px;
  }

  html body.sayit-install .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  html body.sayit-install .btn {
    width: 100%;
  }

  html body.sayit-install .trust-row,
  html body.sayit-install .grid3,
  html body.sayit-install .reviews-grid {
    grid-template-columns: 1fr;
  }

  html body.sayit-install .hero-card,
  html body.sayit-install .how-card,
  html body.sayit-install .final-cta-inner {
    padding: 22px;
  }

  html body.sayit-install .install-simple-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  html body.sayit-install .footer-right {
    text-align: left;
  }
}
