/* Homepage-only sections. Shared chrome lives in theme.css. */

.hero-section { padding: 48px 0 56px; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
  background: var(--navy-deep);
  border-radius: 28px; padding: 56px 60px; position: relative; overflow: hidden;
}
.hero-grid .hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; display: block; pointer-events: none;
}
.hero-text { position: relative; z-index: 1; }
.eyebrow-tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.06em;
  background: rgba(247, 249, 251, 0.13); color: var(--bg);
  padding: 6px 13px; border-radius: 20px; margin-bottom: 22px;
}
.hero-text h1 {
  font-family: var(--font-serif); font-weight: 600; font-size: 48px; line-height: 1.14;
  margin: 0 0 18px; color: var(--white); max-width: 520px;
}
.hero-text h1 em { font-style: italic; font-weight: 500; color: var(--lime); }
.hero-text p {
  font-size: 16px; line-height: 1.6; color: rgba(247, 249, 251, 0.78);
  margin: 0 0 30px; max-width: 440px;
}
.hero-search {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg); border-radius: 14px; padding: 16px 18px; max-width: 460px;
}
.hero-search input {
  border: none; background: none; outline: none; flex: 1;
  font-family: var(--font-sans); font-size: 14.5px; color: var(--navy);
}
.hero-search .go {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy-deep); color: var(--bg); border-radius: 10px;
  padding: 10px 16px; font-size: 13.5px; font-weight: 700; flex-shrink: 0; border: 0;
}
.hero-visual { position: relative; z-index: 1; display: flex; justify-content: center; }
.hero-visual .ring {
  width: 340px; height: 340px; border-radius: 50%;
  border: 1.5px dashed rgba(247, 249, 251, 0.25);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.hero-visual .core {
  width: 230px; height: 230px; border-radius: 50%;
  background: rgba(247, 249, 251, 0.09);
  display: flex; align-items: center; justify-content: center;
}
.hero-visual .core svg { width: 110px; height: 110px; }
.hero-visual .float-pill {
  position: absolute; background: var(--bg); border-radius: 14px; padding: 10px 14px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 12px 24px rgba(21, 44, 70, 0.25);
}
.hero-visual .float-pill.p1 { top: 8px; left: -26px; }
.hero-visual .float-pill.p2 { bottom: 18px; right: -30px; }
.hero-visual .float-pill .swatch {
  width: 26px; height: 26px; border-radius: 8px; background: var(--lime-tint);
  display: flex; align-items: center; justify-content: center; color: var(--navy); flex-shrink: 0;
}
.hero-visual .float-pill .swatch svg { width: 15px; height: 15px; }
.hero-visual .float-pill .txt { font-size: 11.5px; line-height: 1.25; }
.hero-visual .float-pill .txt b { display: block; font-size: 12.5px; color: var(--navy); }
.hero-visual .float-pill .txt span { color: var(--muted); }

.trust-section { margin: 0 0 64px; }
.trust {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--white); border: 1px solid var(--line); border-radius: 18px;
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
  padding: 22px 26px; border-right: 1px solid var(--line);
}
.trust-item:last-child { border-right: none; }
.trust-item .ic { width: 34px; height: 34px; flex-shrink: 0; color: var(--lime); }
.trust-item .tt { font-size: 13.5px; font-weight: 700; color: var(--navy); }
.trust-item .ts { font-size: 12px; color: var(--muted); margin-top: 2px; }

.section { margin: 0 0 64px; }
.sec-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 26px; }
.sec-head h2 { font-family: var(--font-serif); font-weight: 600; font-size: 28px; margin: 0; color: var(--navy); }
.sec-head .sub { font-size: 13.5px; color: var(--muted); margin-top: 6px; }
.sec-head .see-all {
  font-size: 13px; font-weight: 700; color: var(--navy); white-space: nowrap;
  display: flex; align-items: center; gap: 6px;
}

.chip-row { display: grid; grid-template-columns: repeat(8, 1fr); gap: 16px; }
.chip {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  background: var(--white); border: 1px solid var(--line); border-radius: 16px;
  padding: 24px 12px; transition: border-color 0.15s;
}
.chip:hover { border-color: var(--lime-line); }
.chip .circle {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--lime-tint); border: 1px solid var(--lime-line);
  display: flex; align-items: center; justify-content: center; color: var(--navy);
  overflow: hidden;
}
.chip .circle svg { width: 26px; height: 26px; }
.chip .circle img { width: 100%; height: 100%; object-fit: cover; display: block; }
.chip span { font-size: 12.5px; text-align: center; font-weight: 600; color: var(--navy); line-height: 1.3; }

.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cat-card {
  border-radius: 18px; padding: 0; aspect-ratio: 3 / 2;
  display: block; position: relative; overflow: hidden;
  background: var(--white); border: 1px solid var(--line);
}
.cat-card img { width: 100%; height: 100%; object-fit: cover; display: block; }

.story-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  background: var(--white); border: 1px solid var(--line); border-radius: 24px; padding: 50px 56px;
}
.story-split .eyebrow-tag { background: var(--lime-tint); color: var(--navy); margin-bottom: 18px; }
.story-split h3 {
  font-family: var(--font-serif); font-size: 30px; font-weight: 600;
  margin: 0 0 16px; line-height: 1.28; color: var(--navy);
}
.story-split p { font-size: 14.5px; color: var(--muted); line-height: 1.65; margin: 0 0 24px; max-width: 460px; }
.story-split .link { font-size: 13.5px; font-weight: 700; color: var(--navy); display: inline-flex; align-items: center; gap: 6px; }
.story-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.story-visual .cell {
  border-radius: 16px; background: var(--lime-tint);
  display: flex; align-items: center; justify-content: center; height: 140px;
}
.story-visual .cell.dark { background: var(--navy-deep); }
.story-visual .cell svg { width: 46px; height: 46px; color: var(--navy); }
.story-visual .cell.dark svg { color: var(--lime-tint); }
.story-visual .cell.tall { grid-row: span 2; height: 294px; }

.cta-strip {
  background: var(--navy-deep); border-radius: 24px; padding: 52px 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px; color: var(--bg);
}
.cta-strip .txt h3 {
  font-family: var(--font-serif); font-weight: 600; font-size: 26px;
  margin: 0 0 10px; color: var(--white);
}
.cta-strip .txt p {
  font-size: 14px; color: rgba(247, 249, 251, 0.7); margin: 0; max-width: 440px; line-height: 1.55;
}
.cta-strip .btn {
  display: inline-block; background: var(--lime); color: var(--navy-deep);
  font-weight: 700; font-size: 14px; padding: 14px 26px; border-radius: 12px; white-space: nowrap;
}

/* Mobile homepage */
.phone .hero {
  margin: 12px 16px 14px; background: var(--navy-deep); border-radius: 22px;
  padding: 20px 18px 18px; color: var(--bg); position: relative; overflow: hidden;
  min-height: 200px; display: flex; flex-direction: column; justify-content: flex-end;
}
.phone .hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; display: block; pointer-events: none;
}
.phone .hero-copy { position: relative; z-index: 1; }
.phone .eyebrow-tag {
  font-size: 10.5px; padding: 5px 10px; margin-bottom: 10px; gap: 6px;
}
.phone .hero h1 {
  font-family: var(--font-serif); font-weight: 600; font-size: 24px; line-height: 1.18;
  margin: 0 0 8px; color: var(--white);
}
.phone .hero h1 em { font-style: italic; font-weight: 500; color: var(--lime); }
.phone .hero p {
  font-size: 13px; line-height: 1.45; color: rgba(247, 249, 251, 0.78);
  margin: 0; max-width: 280px;
}
.phone .trust {
  display: flex; justify-content: space-between;
  margin: 0 16px 26px; padding: 16px 10px; grid-template-columns: none;
}
.phone .trust-item {
  flex: 1; text-align: center; padding: 0 4px;
  display: block; border-right: 1px solid var(--line);
}
.phone .trust-item .ic { width: 26px; height: 26px; margin: 0 auto 6px; }
.phone .trust-item span { display: block; font-size: 10.5px; line-height: 1.3; color: var(--muted); font-weight: 600; }
.phone .section { margin: 0 0 20px; }
.phone .sec-head { padding: 0 16px; margin-bottom: 10px; }
.phone .sec-head h2 { font-size: 19px; }
.phone .sec-head .see-all { font-size: 12px; display: inline; }
.phone .chip-row {
  display: flex; grid-template-columns: none; gap: 9px;
  overflow-x: auto; padding: 0 16px 4px; scrollbar-width: none;
}
.phone .chip-row::-webkit-scrollbar { display: none; }
.phone .chip {
  flex-shrink: 0; width: 74px; padding: 0; background: none; border: 0; gap: 8px;
}
.phone .chip .circle { width: 52px; height: 52px; }
.phone .chip span { font-size: 11px; }
.phone .prod-row {
  display: flex; gap: 12px; overflow-x: auto; padding: 0 16px 6px; scrollbar-width: none;
}
.phone .prod-row::-webkit-scrollbar { display: none; }
.phone .prod-row .pcard { flex-shrink: 0; width: 172px; }
.phone .prod-row .pcard .thumb { height: 118px; }
.phone .prod-row .pcard .info { padding: 10px 12px 12px; }
.phone .prod-row .pcard .name { font-size: 12px; min-height: 32px; }
.phone .prod-row .pcard .buy-now { font-size: 11.5px; padding: 8px 8px; margin-top: 8px; }
.phone .prod-row .pcard .meta { margin-bottom: 6px; }
.phone .prod-row .pcard .pill { font-size: 10px; padding: 4px 8px; }
.phone .cat-grid { grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 16px; }
.phone .cat-card { border-radius: 16px; }
.phone .story {
  margin: 0 16px 30px; background: var(--white); border: 1px solid var(--line);
  border-radius: 18px; padding: 22px 20px;
}
.phone .story .eyebrow-tag { background: var(--lime-tint); color: var(--navy); margin-bottom: 12px; }
.phone .story h3 {
  font-family: var(--font-serif); font-size: 18px; font-weight: 600;
  margin: 0 0 8px; line-height: 1.3; color: var(--navy);
}
.phone .story p { font-size: 12.5px; color: var(--muted); line-height: 1.55; margin: 0 0 14px; }
.phone .story .link { font-size: 12.5px; font-weight: 700; color: var(--navy); display: inline-flex; align-items: center; gap: 5px; }
.phone .cta-strip {
  margin: 0 16px 20px;
  padding: 22px 20px;
  border-radius: 18px;
  background: var(--navy-deep);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
[data-guest-only][hidden] {
  display: none !important;
}
.phone .cta-strip h3 {
  font-family: var(--font-serif); font-weight: 600; font-size: 18px;
  margin: 0 0 8px; line-height: 1.25; color: var(--white);
}
.phone .cta-strip p {
  font-size: 12.5px; color: rgba(247, 249, 251, 0.78);
  margin: 0 0 16px; line-height: 1.5; max-width: none;
}
.phone .cta-strip .btn {
  display: block; width: 100%; text-align: center; box-sizing: border-box;
  font-size: 13px; font-weight: 700; padding: 12px 18px; border-radius: 12px;
  background: var(--lime); color: var(--navy-deep); white-space: normal;
}

@media (max-width: 1180px) {
  .hero-grid { padding: 40px 36px; gap: 32px; }
  .chip-row { grid-template-columns: repeat(4, 1fr); }
  .story-split, .cta-strip { padding: 36px 32px; }
}
