/* ===========================================================
   Knitify Landing — page-specific
   =========================================================== */

/* ---- HERO ---- */
.hero {
  position: relative;
  padding: 40px 0 60px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -100px 0 0 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 10%, rgba(232, 165, 58, 0.18), transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 30%, rgba(192, 89, 58, 0.14), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 60px 32px 80px;
}
.hero-copy { max-width: 600px; }
.hero-title {
  font-size: clamp(48px, 6.6vw, 92px);
  margin: 22px 0 26px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-trust .stars { display: inline-flex; gap: 2px; }
.hero-trust .stars svg { width: 16px; height: 16px; fill: var(--amber); }
.hero-trust-text { display: flex; flex-direction: column; line-height: 1.3; }
.hero-trust-text strong { font-size: 14px; color: var(--plum); }
.hero-trust-text span { font-size: 13px; color: var(--ink-3); }

/* Hero visual */
.hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  min-height: 480px;
}
.hero-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-card--photo { transform: rotate(-2.5deg); }
.hero-card--grid  { transform: rotate(2deg); }

.hero-card-tab {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 6px;
  background: var(--cream);
  align-self: flex-start;
}
.photo-frame {
  aspect-ratio: 1 / 1;
  border-radius: var(--r-md);
  background:
    linear-gradient(180deg, #2A1F2D 0%, #4A2D3E 28%, #9C4126 50%, #C0593A 65%, #E8A53A 78%, #F2C672 88%, #8FB8D6 100%);
  position: relative;
  overflow: hidden;
}
.photo-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 35%, rgba(255, 220, 160, 0.6), transparent 35%),
    radial-gradient(ellipse at 70% 60%, rgba(192, 89, 58, 0.5), transparent 50%);
  mix-blend-mode: screen;
}
.photo-frame::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 30%;
  background: linear-gradient(180deg, transparent, rgba(143, 184, 214, 0.45));
}
.hero-card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 4px;
}
.hero-card-meta .dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 1.5px solid var(--paper);
  box-shadow: 0 0 0 1px var(--line);
}
.dot--terra { background: var(--terracotta); }
.dot--amber { background: var(--amber); }
.dot--plum  { background: var(--plum); }
.dot--sky   { background: var(--sky); }
.dot--gold  { background: var(--amber-soft); }
.meta-spacer { flex: 1; }
.meta-text {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}
.badge-tiny {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--terracotta);
  color: var(--paper);
  padding: 4px 8px;
  border-radius: 999px;
  font-weight: 500;
}

#heroGrid {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-md);
  background: var(--cream);
}

.hero-arrow {
  width: 64px;
  height: 64px;
  align-self: center;
  animation: pulse-arrow 2.4s ease-in-out infinite;
}
@keyframes pulse-arrow {
  0%, 100% { transform: translateX(0); opacity: 0.7; }
  50%      { transform: translateX(4px); opacity: 1; }
}

/* Floating chips */
.float-chip {
  position: absolute;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  font-size: 13px;
}
.float-chip .chip-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
}
.float-chip .chip-value {
  color: var(--plum);
  font-weight: 600;
  font-size: 13px;
}
.float-chip .chip-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(232, 165, 58, 0.2);
}
.chip-swatches { display: inline-flex; }
.chip-swatches i {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 2px solid var(--paper);
  margin-left: -6px;
}
.chip-swatches i:first-child { margin-left: 0; }
.float-chip--gauge { top: 10%; left: -28px; transform: rotate(-3deg); animation: float 6s ease-in-out infinite; }
.float-chip--yarn  { bottom: 8%; right: -20px; transform: rotate(3deg); animation: float 6s ease-in-out infinite -3s; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--r, -3deg)); }
  50%      { transform: translateY(-6px) rotate(var(--r, -3deg)); }
}
.float-chip--yarn { --r: 3deg; }
.float-chip--gauge { --r: -3deg; }

/* Marquee */
.marquee {
  margin-top: 30px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream-deep);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: scroll-x 28s linear infinite;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--plum);
  letter-spacing: -0.01em;
}
.marquee-track .m-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
}
@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- SECTION HEADS ---- */
.section-head {
  text-align: center;
  margin-bottom: 64px;
}
.section-head .eyebrow { justify-content: center; }
.section-head .eyebrow::before { display: none; }
.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 5.6vw, 76px);
  letter-spacing: -0.02em;
  line-height: 1.0;
  color: var(--plum);
  margin: 16px 0 0;
  text-wrap: balance;
}
.section-title em {
  font-style: normal;
  color: var(--terracotta);
}

/* ---- HOW IT WORKS ---- */
.how { padding: 100px 0; }
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 28px 28px 36px;
  position: relative;
}
.step-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--terracotta-d);
}
.step-art {
  aspect-ratio: 4 / 3;
  margin: 16px 0 22px;
  border-radius: var(--r-md);
  background: var(--cream);
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px dashed var(--line);
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.015em;
  color: var(--plum);
  margin: 0 0 10px;
}
.step p {
  color: var(--ink-2);
  font-size: 15px;
  margin: 0;
  text-wrap: pretty;
}

.art-photo svg { width: 60%; height: auto; }
.art-sliders { width: 80%; display: flex; flex-direction: column; gap: 14px; }
.art-slider {
  position: relative;
  height: 8px;
  border-radius: 999px;
  background: var(--cream-deep);
  overflow: visible;
}
.art-slider i {
  display: block;
  height: 100%;
  width: var(--w);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--amber), var(--terracotta));
  position: relative;
}
.art-slider i::after {
  content: "";
  position: absolute;
  right: -8px; top: 50%;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--terracotta);
  transform: translateY(-50%);
  box-shadow: var(--shadow-sm);
}
.art-slider span {
  position: absolute;
  left: 0; top: -16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  text-transform: uppercase;
}
.art-pdf {
  width: 60%;
  background: var(--paper);
  border-radius: 8px;
  padding: 16px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.art-pdf-line {
  height: 4px;
  width: var(--w);
  background: var(--cream-deep);
  border-radius: 2px;
  margin-bottom: 8px;
}
.art-pdf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: 10px;
}
.art-pdf-grid span {
  aspect-ratio: 1;
  border-radius: 2px;
  background: var(--terracotta);
}
.art-pdf-grid span:nth-child(2),
.art-pdf-grid span:nth-child(7) { background: var(--amber); }
.art-pdf-grid span:nth-child(3),
.art-pdf-grid span:nth-child(10) { background: var(--plum); }
.art-pdf-grid span:nth-child(5),
.art-pdf-grid span:nth-child(12) { background: var(--sky); }
.art-pdf-tag {
  position: absolute;
  top: -8px; right: -8px;
  background: var(--terracotta);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  padding: 4px 8px;
  border-radius: 999px;
  font-weight: 500;
}

/* ---- FEATURES ---- */
.features { padding: 60px 0 100px; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.f-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 28px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.f-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--line-soft);
}
.f-card--lg { grid-column: span 4; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 28px; padding: 36px; }
.f-card--sm { grid-column: span 2; }
.f-card--terra {
  background: linear-gradient(135deg, #FBF6EC 0%, #F2D9B6 100%);
}
.f-card--cream {
  background: var(--cream);
}
.f-card-art {
  border-radius: var(--r-lg);
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.f-card-body h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 30px;
  letter-spacing: -0.015em;
  color: var(--plum);
  margin: 0 0 12px;
  line-height: 1.05;
}
.f-card-body p {
  color: var(--ink-2);
  font-size: 16px;
  margin: 0;
  text-wrap: pretty;
}
.f-tile-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--cream-deep);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.f-tile-icon svg { width: 32px; height: 32px; }
.f-card--sm h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--plum);
  margin: 0 0 8px;
  line-height: 1.15;
}
.f-card--sm p {
  color: var(--ink-2);
  font-size: 15px;
  margin: 0;
  text-wrap: pretty;
}

/* Yarn skeins */
.f-card-art--yarns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  align-items: stretch;
  justify-content: center;
}
.yarn-skein {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px 8px 8px;
  background: var(--paper);
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 500;
  color: var(--plum);
  position: relative;
}
.yarn-skein::before {
  content: "";
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--c);
  flex: none;
  box-shadow: inset 0 -2px 4px rgba(0,0,0,0.2), inset 0 2px 4px rgba(255,255,255,0.15);
}
.yarn-skein:nth-child(1) { transform: translateX(-12px); }
.yarn-skein:nth-child(2) { transform: translateX(8px); }
.yarn-skein:nth-child(3) { transform: translateX(-4px); }
.yarn-skein:nth-child(4) { transform: translateX(14px); }
.yarn-skein:nth-child(5) { transform: translateX(-8px); }

/* Complexity demo */
.f-card-art--demo {
  padding: 24px;
  flex-direction: column;
  display: flex;
  gap: 16px;
}
#complexityDemo {
  width: 100%;
  flex: 1;
  border-radius: var(--r-md);
  background: var(--cream);
  border: 1px solid var(--line);
}
.demo-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}
.demo-controls label {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
}
.demo-controls input[type="range"] {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: var(--cream-deep);
  border-radius: 999px;
  outline: none;
}
.demo-controls input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--terracotta);
  border: 2px solid var(--paper);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.demo-controls input[type="range"]::-moz-range-thumb {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--terracotta);
  border: 2px solid var(--paper);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.demo-readout {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--plum);
  font-weight: 600;
  background: var(--paper);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
}

/* ---- SHOWCASE ---- */
.showcase {
  padding: 100px 0;
  background:
    radial-gradient(ellipse 60% 60% at 100% 0%, rgba(232, 165, 58, 0.14), transparent 60%),
    var(--cream-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.showcase-copy .section-title {
  text-align: left;
  font-size: clamp(36px, 4.4vw, 60px);
  margin-top: 18px;
}
.showcase-copy .lede { margin-top: 24px; }
.showcase-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.showcase-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 16px;
  color: var(--ink-2);
}
.showcase-list span {
  color: var(--terracotta);
  font-size: 14px;
  margin-top: 2px;
}

.showcase-visual {
  position: relative;
  display: grid;
  place-items: center;
}
.phone-frame {
  width: min(360px, 90%);
  background: var(--plum);
  border-radius: 44px;
  padding: 12px 12px 14px;
  box-shadow:
    0 50px 100px rgba(42, 31, 45, 0.25),
    0 20px 40px rgba(42, 31, 45, 0.15),
    inset 0 0 0 2px rgba(247, 240, 228, 0.04);
  position: relative;
}
.phone-notch {
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 26px;
  background: var(--ink);
  border-radius: 999px;
  z-index: 2;
}
.phone-frame img {
  border-radius: 32px;
  display: block;
  width: 100%;
}
.showcase-tag {
  position: absolute;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  z-index: 5;
}
.showcase-tag strong { color: var(--plum); font-size: 14px; }
.showcase-tag span { color: var(--ink-3); font-size: 12px; font-family: var(--font-mono); letter-spacing: 0.04em; }
.showcase-tag--1 { top: 18%; left: -8px; transform: rotate(-4deg); }
.showcase-tag--2 { bottom: 14%; right: -8px; transform: rotate(3deg); }

/* ---- TESTIMONIALS ---- */
.testimonials { padding: 100px 0; }
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.quote {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 32px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.quote blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--plum);
  text-wrap: pretty;
}
.quote blockquote em { font-style: normal; color: var(--terracotta); }
.quote figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--paper);
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 18px;
}
.quote figcaption strong { display: block; color: var(--plum); font-size: 14px; }
.quote figcaption span { color: var(--ink-3); font-size: 13px; }

/* ---- PRICING ---- */
.pricing { padding: 80px 0 100px; }
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.plan-grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 860px;
  margin: 0 auto;
}
.pricing-lede {
  margin: 22px auto 0;
  text-align: center;
  max-width: 64ch;
}
.plan-tag {
  margin: 0 0 4px;
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.45;
  font-style: italic;
  min-height: 42px;
  display: flex;
  align-items: center;
}
.plan--featured .plan-tag { color: rgba(247, 240, 228, 0.7); }
.plan-list strong { color: var(--plum); font-weight: 600; }
.plan--featured .plan-list strong { color: var(--paper); }
.plan {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.plan--featured {
  background: var(--plum);
  border-color: var(--plum);
  color: var(--paper);
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}
.plan-flag {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--terracotta);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 500;
}
.plan-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.plan-head h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--plum);
}
.plan--featured .plan-head h3 { color: var(--paper); }
.plan-pill {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--cream-deep);
  color: var(--ink-2);
  padding: 5px 10px;
  border-radius: 999px;
}
.plan--featured .plan-pill { background: rgba(247, 240, 228, 0.1); color: var(--paper); }
.plan-pill--gold { background: var(--amber); color: var(--plum); }
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  min-height: 64px;
}
.plan-price--store { align-items: center; }
.plan-price-store-label {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 240, 228, 0.65);
  border: 1px solid rgba(247, 240, 228, 0.2);
  padding: 8px 16px;
  border-radius: var(--r-pill);
}
.plan-price-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--plum);
  line-height: 1;
}
.plan--featured .plan-price-num { color: var(--paper); }
.plan-price-unit { color: var(--ink-3); font-size: 14px; }
.plan--featured .plan-price-unit { color: rgba(247, 240, 228, 0.6); }
.plan-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.plan-list li {
  font-size: 15px;
  color: var(--ink-2);
  position: relative;
  padding-left: 24px;
}
.plan--featured .plan-list li { color: rgba(247, 240, 228, 0.85); }
.plan-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--terracotta);
  font-weight: 700;
}
.plan--featured .plan-list li::before { color: var(--amber-soft); }
.plan-cta { width: 100%; margin-top: auto; }
.plan--featured .plan-cta { background: var(--terracotta); color: var(--paper); }
.plan--featured .plan-cta:hover { background: var(--terracotta-d); }
.plan-foot {
  text-align: center;
  font-size: 13px;
  color: rgba(247, 240, 228, 0.6);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  margin: -8px 0 0;
}

/* ---- FAQ ---- */
.faq { padding: 100px 0; background: var(--cream-deep); border-top: 1px solid var(--line); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
}
.faq-head .section-title {
  text-align: left;
  font-size: clamp(40px, 5vw, 64px);
  margin-top: 18px;
}
.faq-head .lede { margin-top: 24px; }
.faq-head a { color: var(--terracotta-d); text-decoration: underline; text-underline-offset: 3px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-list details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px 26px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-list details[open] {
  border-color: var(--terracotta);
  box-shadow: var(--shadow-md);
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.005em;
  color: var(--plum);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 300;
  color: var(--terracotta);
  transition: transform .2s ease;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list p {
  margin: 14px 0 0;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.6;
  text-wrap: pretty;
}

/* ---- CTA ---- */
.cta-logo {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}
.cta-logo img {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 12px 36px rgba(0,0,0,0.35);
}

.cta { padding: 60px 0; }
.cta-card {
  position: relative;
  background:
    radial-gradient(ellipse 80% 80% at 80% 0%, rgba(232, 165, 58, 0.32), transparent 60%),
    radial-gradient(ellipse 60% 60% at 0% 100%, rgba(192, 89, 58, 0.42), transparent 60%),
    var(--plum);
  color: var(--paper);
  border-radius: var(--r-xl);
  padding: 88px 48px;
  text-align: center;
  overflow: hidden;
}
.cta-grain {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(247, 240, 228, 0.08) 1px, transparent 0);
  background-size: 16px 16px;
  opacity: 0.6;
  pointer-events: none;
}
.cta .eyebrow { color: var(--amber-soft) !important; }
.cta-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(44px, 6vw, 80px);
  letter-spacing: -0.02em;
  line-height: 1.0;
  color: var(--paper);
  margin: 18px 0 36px;
}
.cta-title em { color: var(--amber); font-style: normal; }
.cta .hero-actions { justify-content: center; }
.cta-btn { background: var(--paper); color: var(--plum); }
.cta-btn:hover { background: var(--cream); transform: translateY(-1px); }
.cta-foot {
  margin: 28px 0 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 240, 228, 0.65);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; padding: 40px 32px 60px; }
  .hero-visual { min-height: auto; margin-top: 32px; }
  .feature-grid { grid-template-columns: repeat(4, 1fr); }
  .f-card--lg { grid-column: span 4; }
  .f-card--sm { grid-column: span 2; }
  .showcase-grid { grid-template-columns: 1fr; gap: 60px; }
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .quote-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .hero-visual { grid-template-columns: 1fr; gap: 24px; }
  .hero-arrow { transform: rotate(90deg); width: 48px; height: 48px; justify-self: center; }
  .float-chip--gauge, .float-chip--yarn { display: none; }
  .how-steps { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .f-card--lg, .f-card--sm { grid-column: span 1; }
  .f-card--lg { grid-template-columns: 1fr; }
  .plan-grid { grid-template-columns: 1fr; }
  .plan--featured { transform: none; }
  .cta-card { padding: 56px 24px; }
}
