/* Sammy - Selection Mini Menu marketing page
   Editorial, warm, black-pill CTAs, generous whitespace. */

:root {
  --ink: #17140f;
  --ink-soft: #4a463f;
  --cream: #faf6ee;
  --cream-2: #f1ead9;
  --line: rgba(23, 20, 15, 0.1);
  --accent: #cc5a2e;
  --accent-2: #0b57d0;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --wrap: 1160px;
}

/* Dark mode: the explicit .dark/.light classes set by the header toggle
   (script.js) win over the OS preference, which only applies when neither
   class is present. */
@media (prefers-color-scheme: dark) {
  :root:not(.light):not(.dark) {
    --ink: #f2ede2;
    --ink-soft: #c9c2b3;
    --cream: #14120e;
    --cream-2: #1c1913;
    --line: rgba(242, 237, 226, 0.12);
    --accent: #e28457;
  }
}

:root.dark {
  --ink: #f2ede2;
  --ink-soft: #c9c2b3;
  --cream: #14120e;
  --cream-2: #1c1913;
  --line: rgba(242, 237, 226, 0.12);
  --accent: #e28457;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* ------------------------------------------------------------ animations
   Hero elements fade/slide in on load (pure CSS, no JS dependency).
   .reveal elements fade/slide in on scroll, driven by IntersectionObserver
   in script.js, which adds .js-reveal to <html> first: if JS never runs,
   .reveal content is never hidden in the first place. Both respect
   prefers-reduced-motion by only existing inside the no-preference query. */

@media (prefers-reduced-motion: no-preference) {
  @keyframes hero-in {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: none; }
  }

  .hero-title, .hero-sub, .hero-ctas, .hero-floating-menu {
    animation: hero-in 0.8s cubic-bezier(0.16, 0.8, 0.24, 1) both;
  }
  .hero-title { animation-delay: 0.05s; }
  .hero-sub { animation-delay: 0.15s; }
  .hero-ctas { animation-delay: 0.25s; }
  .hero-floating-menu { animation-delay: 0.35s; }

  .js-reveal .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.16, 0.8, 0.24, 1),
      transform 0.7s cubic-bezier(0.16, 0.8, 0.24, 1);
  }
  .js-reveal .reveal.is-visible {
    opacity: 1;
    transform: none;
  }

  .feature-grid .reveal:nth-child(1) { transition-delay: 0ms; }
  .feature-grid .reveal:nth-child(2) { transition-delay: 60ms; }
  .feature-grid .reveal:nth-child(3) { transition-delay: 120ms; }
  .feature-grid .reveal:nth-child(4) { transition-delay: 180ms; }
  .feature-grid .reveal:nth-child(5) { transition-delay: 240ms; }
  .feature-grid .reveal:nth-child(6) { transition-delay: 300ms; }

  .faq-list .reveal:nth-child(1) { transition-delay: 0ms; }
  .faq-list .reveal:nth-child(2) { transition-delay: 80ms; }
  .faq-list .reveal:nth-child(3) { transition-delay: 160ms; }
  .faq-list .reveal:nth-child(4) { transition-delay: 240ms; }
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

#positioning, #features, #action, #privacy, #faq, #feedback, #install {
  scroll-margin-top: 96px;
}

.noise { display: none; }

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  background: var(--cream-2);
  padding: 0.1em 0.4em;
  border-radius: 5px;
  font-size: 0.92em;
}

/* --------------------------------------------------------------- buttons */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

.btn-pill { padding: 12px 22px; border-radius: 999px; }
.btn-lg { padding: 16px 30px; font-size: 16px; }

.btn-black {
  background: var(--ink);
  color: var(--cream);
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.btn-black:hover { transform: translateY(-1px); opacity: 0.92; }

.btn-ghost-light {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost-light:hover { background: rgba(23,20,15,0.05); }

/* ------------------------------------------------------------------- nav */

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark { width: 26px; height: 26px; border-radius: 7px; }

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
}

.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
}
.nav-links a:hover { color: var(--ink); }

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

.nav-cta { flex-shrink: 0; }

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
}
.theme-toggle:hover { background: rgba(23, 20, 15, 0.05); }

.theme-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-icon-moon { display: none; }
:root.dark .theme-icon-sun { display: none; }
:root.dark .theme-icon-moon { display: block; }

@media (max-width: 760px) {
  .nav-links { display: none; }
}

/* ------------------------------------------------------------------ hero */

.hero {
  position: relative;
  padding-top: 88px;
  padding-bottom: 16px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 100% at 15% 0%, #f4c98b 0%, transparent 55%),
    radial-gradient(90% 90% at 90% 10%, #e3866b 0%, transparent 60%),
    linear-gradient(160deg, #3a2c22 0%, #6b4630 38%, #c07a45 70%, #e9b26c 100%);
  opacity: 0.16;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 45%, transparent 85%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 45%, transparent 85%);
}

@media (prefers-color-scheme: dark) {
  :root:not(.light):not(.dark) .hero-gradient { opacity: 0.3; }
}
:root.dark .hero-gradient { opacity: 0.3; }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-bottom: 90px;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(48px, 9vw, 104px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}

.hero-sub {
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-floating-menu {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin: -60px auto 0;
  padding: 0 20px;
}

.mock-selection-line {
  background: color-mix(in srgb, var(--accent-2) 22%, transparent);
  color: var(--ink);
  display: inline-block;
  padding: 3px 2px;
  border-radius: 3px;
  font-size: 15px;
  margin-bottom: 10px;
}

.scroll-cue {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 56px auto 0;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.scroll-cue:hover { color: var(--ink); }

.scroll-cue-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: inherit;
}

@media (prefers-reduced-motion: no-preference) {
  .scroll-cue-icon {
    animation: scroll-cue-bounce 2s ease-in-out infinite;
  }
}

@keyframes scroll-cue-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ------------------------------------------------------------- demo pill
   Mirrors the real content-style.css: white pill, subtle border + shadow. */

.demo-pill {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 5px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16), 0 2px 6px rgba(0, 0, 0, 0.1);
}

.demo-pill--floating {
  animation: demo-float 4s ease-in-out infinite;
}

@keyframes demo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.demo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: #444746;
  cursor: default;
}

.demo-btn.is-open { background: rgba(11, 87, 208, 0.12); color: var(--accent-2); }

.demo-sep {
  display: block;
  width: 1px;
  height: 18px;
  margin: 0 3px;
  background: rgba(0, 0, 0, 0.12);
}

.demo-icon {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.demo-icon.sammy-icon-bold { stroke-width: 2.6; }

/* ------------------------------------------------------------ positioning */

.positioning { padding: 120px 0 100px; text-align: center; }

.positioning-tags {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
}

.tag-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #2e9e5b;
  display: inline-block;
}

.positioning-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(34px, 5.5vw, 58px);
  line-height: 1.12;
  margin: 0;
}

.highlight-text {
  background: color-mix(in srgb, var(--accent-2) 24%, transparent);
  padding: 0 10px;
  border-radius: 8px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.dotted-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 40px auto 90px;
  max-width: 220px;
}

.dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.dot-hollow { border: 2px solid var(--accent-2); background: var(--cream); }
.dot-solid { background: var(--accent-2); box-shadow: 0 0 0 5px color-mix(in srgb, var(--accent-2) 18%, transparent); }
.dot-line {
  flex: 1;
  height: 1px;
  background-image: linear-gradient(to right, var(--accent-2) 40%, transparent 0%);
  background-size: 8px 1px;
  background-repeat: repeat-x;
}

.positioning-grid {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}

.positioning-copy h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 38px);
  line-height: 1.15;
  margin: 0 0 16px;
}

.positioning-copy p {
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0 0 28px;
  max-width: 420px;
}

/* --------------------------------------------------------------- section
   generic heading block reused by features/action/faq */

.section-head { max-width: 620px; margin: 0 auto 56px; text-align: center; }
.section-head h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(32px, 4.5vw, 46px);
  margin: 0 0 14px;
}
.section-sub { color: var(--ink-soft); line-height: 1.6; margin: 0; }

/* ----------------------------------------------------------------- features */

.features { padding: 20px 0 110px; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 24px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature-icon .demo-icon { width: 20px; height: 20px; }

.feature-card h3 { margin: 0 0 8px; font-size: 17px; }
.feature-card p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.6; }

@media (max-width: 860px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .feature-grid { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------------------- action */

.action { padding: 20px 0 120px; }

.layout-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}

.layout-tab {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
}

.layout-tab.is-active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.browser-mock {
  max-width: 780px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px rgba(0,0,0,0.12);
  background: #fff;
}

@media (prefers-color-scheme: dark) {
  :root:not(.light):not(.dark) .browser-mock { background: #1c1913; }
}
:root.dark .browser-mock { background: #1c1913; }

.browser-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--cream-2);
  border-bottom: 1px solid var(--line);
}

.chrome-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(23,20,15,0.18);
}

.chrome-address {
  margin-left: 12px;
  font-size: 12px;
  color: var(--ink-soft);
  background: var(--cream);
  border-radius: 999px;
  padding: 5px 14px;
  flex: 1;
  max-width: 320px;
}

.browser-page {
  position: relative;
  padding: 44px 48px 90px;
  min-height: 340px;
}

.page-heading-block {
  width: 55%;
  height: 20px;
  border-radius: 6px;
  background: var(--cream-2);
  margin-bottom: 22px;
}

.page-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 0 16px;
}
.page-text--secondary { opacity: 0.6; }

.fake-selection {
  background: color-mix(in srgb, var(--accent-2) 24%, transparent);
  color: var(--ink);
  border-radius: 3px;
  padding: 1px 2px;
}

.demo-anchor {
  position: absolute;
  display: none;
}
.demo-anchor.is-active { display: block; }

.demo-anchor--h { top: 128px; left: 48px; }
.demo-anchor--v { top: 118px; left: 48px; }

/* vertical list demo, mirrors real .sammy-vlist */

.demo-vlist {
  display: flex;
  flex-direction: column;
  min-width: 230px;
  padding: 6px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16), 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
}

.demo-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 9px 12px;
  border-radius: 9px;
  border: none;
  background: transparent;
  color: #1f1f1f;
  font-family: var(--sans);
  font-size: 13.5px;
  cursor: default;
  text-align: left;
}

.demo-item span { flex: 1; }
.demo-item .demo-icon { color: #444746; flex-shrink: 0; }
.demo-item.is-open { background: rgba(11, 87, 208, 0.08); }
.demo-item .demo-icon:last-child { flex-shrink: 0; }

.demo-flyout {
  position: absolute;
  top: 0;
  left: calc(100% + 8px);
  min-width: 200px;
  padding: 6px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.16), 0 2px 8px rgba(0,0,0,0.1);
}

@media (max-width: 640px) {
  .browser-page { padding: 32px 20px 260px; }
  .demo-anchor--h, .demo-anchor--v { left: 20px; }
  .demo-flyout { left: 0; top: calc(100% + 8px); }
}

/* -------------------------------------------------------------------- options */

.options { padding: 20px 0 120px; }

.options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.options-copy h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(30px, 4vw, 42px);
  margin: 0 0 18px;
  line-height: 1.15;
}

.options-copy p {
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0 0 22px;
  max-width: 440px;
}

.options-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.options-list li {
  font-size: 14px;
  color: var(--ink);
  padding-left: 22px;
  position: relative;
}
.options-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
}

.options-window {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 10px;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}

.options-window-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 14px;
  font-size: 14px;
  border-bottom: 1px solid var(--line);
}
.options-window-row:last-child { border-bottom: none; }
.options-window-row--stack { flex-wrap: wrap; gap: 8px; }

.fake-toggle {
  width: 38px; height: 22px;
  border-radius: 999px;
  background: var(--line);
  position: relative;
  display: inline-block;
}
.fake-toggle::after {
  content: "";
  position: absolute;
  top: 2px; left: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.25);
}
.fake-toggle.is-on { background: #2e9e5b; }
.fake-toggle.is-on::after { left: auto; right: 2px; }

.fake-select {
  font-size: 13px;
  color: var(--ink-soft);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 5px 10px;
}

.fake-chip {
  font-size: 12px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 12px;
  color: var(--ink-soft);
}

@media (max-width: 860px) {
  .options-grid { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------------------- privacy */

.privacy {
  background: #17140f;
  color: #faf6ee;
  padding: 100px 0;
}

.privacy-inner { text-align: center; max-width: 640px; margin: 0 auto; }

.privacy h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(30px, 4.5vw, 44px);
  margin: 0 0 20px;
  line-height: 1.15;
}

.privacy p {
  color: rgba(250, 246, 238, 0.72);
  line-height: 1.7;
  margin: 0 0 36px;
}
.privacy code { background: rgba(250,246,238,0.12); color: #faf6ee; }

.privacy-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(250, 246, 238, 0.22);
}

.badge-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ------------------------------------------------------------------------ faq */

.faq { padding: 110px 0; }

.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  background: var(--cream-2);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 15.5px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--accent-2);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

/* No-JS fallback: chevron follows the native open state, answer shows
   normally (the collapsing CSS below is gated behind .js-faq). */
html:not(.js-faq) .faq-item[open] .faq-chevron { transform: rotate(180deg); }

/* Collapsible answer. Animating a grid row from 0fr to 1fr transitions the
   answer's natural height with no measuring and no end-of-animation snap,
   which is what makes it read as smooth. */
.js-faq .faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}
.js-faq .faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.js-faq .faq-item.is-open .faq-chevron { transform: rotate(180deg); }

.faq-answer-inner {
  min-height: 0;
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .js-faq .faq-answer,
  .faq-chevron {
    transition: none;
  }
}

.faq-answer p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.65;
}

/* -------------------------------------------------------------------- feedback */

.feedback { padding: 20px 0 120px; }

.feedback-form {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Honeypot: present in the DOM for bots, invisible and unreachable for
   real visitors (off-screen rather than display:none, which some bots
   skip filling in). */
.feedback-hp {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.feedback-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.feedback-row label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.feedback-optional {
  font-weight: 400;
  color: var(--ink-soft);
}

.feedback-row input,
.feedback-row textarea {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  resize: vertical;
}
.feedback-row input:focus,
.feedback-row textarea:focus {
  outline: 2px solid var(--accent-2);
  outline-offset: 1px;
}

.feedback-submit { align-self: flex-start; }
.feedback-submit:disabled { opacity: 0.6; cursor: default; }

.feedback-status {
  margin: -8px 0 0;
  font-size: 13.5px;
  color: #b3261e;
}

.feedback-success {
  max-width: 560px;
  margin: 28px auto 0;
  text-align: center;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px 28px;
}
.feedback-success h3 {
  font-family: var(--serif);
  font-size: 22px;
  margin: 0 0 8px;
}
.feedback-success p {
  color: var(--ink-soft);
  margin: 0;
}

/* --------------------------------------------------------------------- install */

.install { padding: 40px 0 120px; text-align: center; }

.install-inner h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(36px, 6vw, 62px);
  line-height: 1.08;
  margin: 0 0 32px;
}

.install-note {
  margin: 16px 0 0;
  font-size: 13px;
  color: var(--ink-soft);
}

/* -------------------------------------------------------------------- footer */

.footer {
  border-top: 1px solid var(--line);
  padding: 36px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 22px;
  font-size: 13.5px;
}
.footer-links a { color: var(--ink-soft); text-decoration: none; }
.footer-links a:hover { color: var(--ink); }

.footer-copy {
  width: 100%;
  margin: 0;
  font-size: 12px;
  color: var(--ink-soft);
  opacity: 0.7;
}
