/* ============================================================
   HASPER — Quiet Edition
   High-contrast paper/ink system, photographic hero,
   glass pill nav, blur focus-in reveals.
   ============================================================ */

:root {
  --paper:      #FAFAF7;
  --paper-2:    #F1F0EC;
  --ink:        #141210;
  --ink-soft:   #1D1A17;
  --text:       #16130F;
  --text-2:     #6E6862;
  --text-3:     #98918A;
  --line:       rgba(20, 18, 16, 0.10);
  --line-soft:  rgba(20, 18, 16, 0.06);
  --ok:         #3F8F6B;

  --r-tile:     20px;
  --r-panel:    36px;

  --font: 'Instrument Sans', 'PingFang SC', 'Hiragino Sans GB', 'Source Han Sans SC', 'Microsoft YaHei', system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);

  --h2: clamp(2rem, 4.4vw, 3.4rem);
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  background: var(--paper);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.55;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; color: inherit; }
img { display: block; max-width: 100%; }
ul, li { list-style: none; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ─── Type ─── */
h1, h2, h3 { font-weight: 600; letter-spacing: -0.02em; text-wrap: balance; }

.h2 {
  font-size: var(--h2);
  line-height: 1.08;
  max-width: 18ch;
}

.h2.center { margin-left: auto; margin-right: auto; text-align: center; }

.lede {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.65;
  max-width: 46ch;
  margin-top: 18px;
}

.lede.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ─── Buttons: pill pair (solid ink / frosted glass) ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.3s var(--ease), color 0.3s, transform 0.2s, opacity 0.3s;
}

.btn:active { transform: scale(0.97); }

.btn-ink   { background: var(--ink); color: #fff; }
.btn-ink:hover { background: #2A2622; }

.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { background: rgba(255,255,255,0.88); }

.btn-glass {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn-glass:hover { background: rgba(255,255,255,0.25); color: #fff; }

.btn-line {
  border: 1px solid var(--line);
  color: var(--text);
  background: transparent;
}
.btn-line:hover { background: var(--paper-2); }

/* ─── Nav: floating glass capsule over the photo ─── */
#nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  padding: 14px 16px 0;
  pointer-events: none;
}

.nav-pill {
  pointer-events: auto;
  max-width: 880px;
  margin: 0 auto;
  height: 54px;
  padding: 0 8px 0 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
  transition: background 0.4s, color 0.4s, border-color 0.4s, box-shadow 0.4s;
}

.nav-logo { display: flex; align-items: center; gap: 9px; font-weight: 700; letter-spacing: 0.1em; font-size: 14px; }
.nav-logo svg { display: block; }

.nav-links { display: flex; gap: 2px; margin-left: auto; }

.nav-links a {
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0.82;
  transition: background 0.3s, opacity 0.3s;
}

.nav-links a:hover { background: rgba(255,255,255,0.15); opacity: 1; }

.nav-cta { height: 38px; padding: 0 18px; font-size: 0.85rem; }

/* Once past the hero: light glass, ink text */
#nav.solid .nav-pill {
  background: rgba(250, 250, 247, 0.82);
  border-color: var(--line);
  color: var(--text);
  box-shadow: 0 10px 32px rgba(20, 18, 16, 0.10);
}

#nav.solid .nav-links a:hover { background: rgba(20,18,16,0.06); }
#nav.solid .nav-cta { background: var(--ink); color: #fff; }

.nav-burger { display: none; margin-left: auto; width: 40px; height: 40px; border-radius: 999px; }
.nav-burger span { display: block; width: 18px; height: 1.6px; background: currentColor; margin: 2.5px auto; border-radius: 2px; transition: transform 0.3s; }
.nav-burger.open span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-burger.open span:last-child  { transform: translateY(-2.6px) rotate(-45deg); }

/* Mobile sheet */
.nav-sheet {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(20, 18, 16, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.nav-sheet.open { opacity: 1; pointer-events: auto; }
.nav-sheet a { color: rgba(255,255,255,0.9); font-size: 1.5rem; font-weight: 600; }

/* ─── Hero: full-bleed photograph ─── */
#hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  color: #fff;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0.08) 30%, rgba(0,0,0,0.10) 62%, rgba(0,0,0,0.62) 100%);
}

.hero-stack {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px calc(9vh + 12px);
  max-width: 780px;
}

.hero-h1 {
  font-size: clamp(2.6rem, 6.4vw, 4.8rem);
  line-height: 1.03;
  letter-spacing: -0.025em;
}

.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(255,255,255,0.82);
  max-width: 42ch;
  margin: 18px auto 30px;
  line-height: 1.6;
}

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

/* Load-in: rise out of blur */
.hero-in {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(12px);
  animation: focusIn 0.9s var(--ease) forwards;
}
.hero-in.d1 { animation-delay: 0.15s; }
.hero-in.d2 { animation-delay: 0.3s; }
.hero-in.d3 { animation-delay: 0.45s; }

@keyframes focusIn {
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* ─── Scroll reveals: focus-in ─── */
.rv {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(10px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease), filter 0.7s var(--ease);
}
.rv.on { opacity: 1; transform: translateY(0); filter: blur(0); }

@media (prefers-reduced-motion: reduce) {
  .rv, .hero-in { opacity: 1; transform: none; filter: none; transition: none; animation: none; }
}

/* ─── Sections ─── */
section { position: relative; }

.sect { padding: clamp(96px, 12vw, 160px) 0; }

/* Problem statement: type only, lots of air */
#promise { text-align: center; }

#promise .h2 { max-width: 22ch; }

/* ─── How it works: 3 numbered tiles ─── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 64px;
}

.step-tile { text-align: left; }

.step-img {
  aspect-ratio: 4 / 5;
  border-radius: var(--r-tile);
  overflow: hidden;
  background: var(--paper-2);
  margin-bottom: 20px;
}

.step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.step-tile:hover .step-img img { transform: scale(1.04); }

.step-n {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-3);
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}

.step-tile h3 { font-size: 1.15rem; margin-bottom: 6px; }
.step-tile p  { font-size: 0.95rem; color: var(--text-2); max-width: 30ch; }

/* ─── Product split ─── */
#product { background: var(--paper-2); }

.prod-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}

.prod-visual {
  border-radius: var(--r-panel);
  background: linear-gradient(180deg, #E9E6E0, #F5F3EF);
  padding: clamp(28px, 4vw, 56px);
  display: flex;
  justify-content: center;
}

.prod-visual img {
  width: min(360px, 88%);
  filter: drop-shadow(0 30px 50px rgba(20, 18, 16, 0.22));
}

.prod-points { margin-top: 36px; display: grid; gap: 0; }

.prod-point {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding: 15px 0;
}

.prod-point + .prod-point { border-top: 1px solid var(--line-soft); }

.prod-point strong { font-size: 0.95rem; font-weight: 600; white-space: nowrap; }
.prod-point span   { font-size: 0.9rem; color: var(--text-2); text-align: right; }

.prod-cta { margin-top: 36px; display: flex; align-items: center; gap: 18px; }
.prod-eta { font-size: 0.85rem; color: var(--text-3); }

/* ─── Privacy: dark ink panel ─── */
#privacy .panel {
  background: var(--ink);
  border-radius: var(--r-panel);
  color: var(--paper);
  padding: clamp(64px, 8vw, 110px) clamp(24px, 5vw, 72px);
  text-align: center;
  overflow: hidden;
}

#privacy .h2 { margin: 0 auto; }
#privacy .lede { color: rgba(250, 250, 247, 0.6); }

.privacy-points {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  text-align: left;
}

.privacy-point {
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  border-radius: var(--r-tile);
  padding: 26px 24px;
}

.privacy-point h3 { font-size: 1.05rem; margin-bottom: 8px; color: rgba(250,250,247,0.95); }
.privacy-point p  { font-size: 0.9rem; color: rgba(250,250,247,0.55); line-height: 1.7; }

.phone-hold { margin-top: 64px; display: flex; justify-content: center; position: relative; }

.phone-hold svg { width: 250px; filter: drop-shadow(0 30px 70px rgba(0, 0, 0, 0.55)); }

.app-pills {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.app-pills span {
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(250,250,247,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ─── Craft: transparent product cutout on a soft panel ─── */
#craft { padding: 0 24px; }

.craft-media {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  border-radius: var(--r-panel);
  overflow: hidden;
  background: linear-gradient(180deg, #EDEBE6, var(--paper-2));
  padding: clamp(48px, 6vw, 80px) 24px clamp(56px, 7vw, 88px);
  text-align: center;
}

.craft-lamp {
  width: min(480px, 74%);
  margin: 0 auto;
  filter: drop-shadow(0 32px 52px rgba(20, 18, 16, 0.22));
}

.craft-copy {
  margin-top: 40px;
  color: var(--text);
  padding: 0 24px;
}

.craft-copy .h2 { margin: 0 auto; }
.craft-copy p { color: var(--text-2); max-width: 44ch; margin: 14px auto 0; font-size: 1rem; }

/* ─── Roadmap: spine timeline with pulsing active node ─── */
:root {
  --gold:       #6B3A22;
  --gold-glow:  rgba(164, 123, 92, 0.5);
}

.timeline {
  position: relative;
  max-width: 760px;
  margin: 56px auto 0;
  padding-left: 40px;
}

.tl-spine {
  position: absolute;
  left: 0; top: 12px; bottom: 12px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), rgba(164, 123, 92, 0.08));
  transform: scaleY(0);
  transform-origin: top;
}

.tl-spine.drawn {
  transition: transform 1.2s var(--ease);
  transform: scaleY(1);
}

@media (prefers-reduced-motion: reduce) {
  .tl-spine { transform: scaleY(1); }
}

.tl-item { position: relative; padding: 0 0 56px 48px; }
.tl-item:last-child { padding-bottom: 0; }

.tl-node {
  position: absolute;
  left: -19px; top: 4px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-3);
  box-shadow: 0 2px 12px rgba(20, 18, 16, 0.07);
}

.tl-done .tl-node   { border-color: rgba(107,58,34,0.35); background: rgba(107,58,34,0.06); color: var(--gold); }
.tl-active .tl-node { border-color: rgba(164,123,92,0.5);  background: rgba(164,123,92,0.08); }

.tl-pulse {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 var(--gold-glow);
  animation: tlPulse 2s ease-out infinite;
}

@keyframes tlPulse {
  0%   { box-shadow: 0 0 0 0 var(--gold-glow); }
  70%  { box-shadow: 0 0 0 10px rgba(164, 123, 92, 0); }
  100% { box-shadow: 0 0 0 0 rgba(164, 123, 92, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .tl-pulse { animation: none; }
}

.tl-year {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 10px;
}

.tl-body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.tl-body p  { font-size: 0.93rem; color: var(--text-2); line-height: 1.7; margin-bottom: 16px; max-width: 52ch; }

.tl-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 999px;
}

.tl-badge.done     { background: rgba(107,58,34,0.07); color: var(--gold);   border: 1px solid rgba(107,58,34,0.22); }
.tl-badge.active   { background: var(--gold);          color: #fff;          border: 1px solid var(--gold); }
.tl-badge.upcoming { background: transparent;          color: var(--text-2); border: 1px solid var(--line); }
.tl-badge.future   { background: transparent;          color: var(--text-3); border: 1px solid var(--line-soft); }

/* ─── Presale / contact ─── */
#presale .panel {
  background: var(--paper-2);
  border-radius: var(--r-panel);
  padding: clamp(64px, 9vw, 120px) 24px;
  text-align: center;
}

.wl-form {
  max-width: 440px;
  margin: 36px auto 0;
}

.wl-row {
  display: flex;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 5px 5px 20px;
  transition: box-shadow 0.3s, border-color 0.3s;
}

.wl-row:focus-within { border-color: rgba(20,18,16,0.3); box-shadow: 0 8px 28px rgba(20,18,16,0.08); }

.wl-row input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: none;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text);
}

.wl-row input::placeholder { color: var(--text-3); }

.wl-note { font-size: 0.8rem; color: var(--text-3); margin-top: 14px; }

/* ─── FAQ ─── */
#faq .wrap { max-width: 760px; }

.faq-list { margin-top: 48px; border-top: 1px solid var(--line); }

.faq-item { border-bottom: 1px solid var(--line-soft); }

.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-3);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
  padding: 0 40px 20px 0;
  font-size: 0.95rem;
  color: var(--text-2);
  max-width: 62ch;
}

/* ─── Footer (original brand-column layout) ─── */
#footer {
  padding: 88px 0 44px;
  background: var(--ink);
  color: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  margin-bottom: 64px;
}

.footer-brand .logo { display: flex; align-items: center; gap: 10px; }

.footer-brand .logo-text {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(245, 241, 234, 0.92);
}

.footer-tagline { font-size: 0.9rem; color: rgba(245,241,234,0.5); margin: 14px 0 10px; }
.footer-desc    { font-size: 0.85rem; color: rgba(245,241,234,0.35); line-height: 1.7; max-width: 280px; }

.footer-links-group { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }

.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,241,234,0.35);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(245,241,234,0.5);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: rgba(245,241,234,0.9); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(245,241,234,0.08);
}

.footer-bottom p { font-size: 13px; color: rgba(245,241,234,0.3); }

.footer-domain { font-size: 13px; color: rgba(245,241,234,0.3); transition: color 0.2s; }
.footer-domain:hover { color: rgba(245,241,234,0.8); }

/* ─── Modal ─── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(15, 13, 11, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.modal.open { opacity: 1; visibility: visible; }

.modal-card {
  background: var(--paper);
  border-radius: 28px;
  padding: 44px 40px;
  width: 100%;
  max-width: 400px;
  position: relative;
  transform: translateY(18px) scale(0.98);
  transition: transform 0.4s var(--ease);
}

.modal.open .modal-card { transform: none; }

.modal-x {
  position: absolute;
  top: 16px; right: 16px;
  width: 34px; height: 34px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  transition: background 0.2s, color 0.2s;
}
.modal-x:hover { background: var(--paper-2); color: var(--text); }

.modal-card h3 { font-size: 1.35rem; margin-bottom: 8px; }
.modal-card > p { font-size: 0.9rem; color: var(--text-2); margin-bottom: 24px; }

.modal-card input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 13px 16px;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  margin-bottom: 10px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.modal-card input:focus { border-color: rgba(20,18,16,0.35); box-shadow: 0 0 0 3px rgba(20,18,16,0.06); }

.modal-card .btn { width: 100%; justify-content: center; margin-top: 6px; }

.modal-note { font-size: 0.78rem; color: var(--text-3); text-align: center; margin-top: 14px; }

.modal-done { display: none; text-align: center; padding: 12px 0 4px; }
.modal-done.show { display: block; }
.modal-done .ok-ring { color: var(--ok); margin-bottom: 14px; }
.modal-done h3 { margin-bottom: 6px; }
.modal-done p { font-size: 0.9rem; color: var(--text-2); }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr 1fr; }
  .prod-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: block; }

  .steps { grid-template-columns: 1fr; gap: 36px; }
  .step-img { aspect-ratio: 4 / 3; }

  .timeline { padding-left: 28px; }
  .tl-node  { left: -14px; width: 28px; height: 28px; }
  .tl-item  { padding-left: 36px; padding-bottom: 44px; }

  .wl-row { flex-direction: column; border-radius: 20px; padding: 12px; gap: 8px; }
  .wl-row .btn { width: 100%; justify-content: center; }

  .faq-item p { padding-right: 12px; }

  .footer-grid { grid-template-columns: 1fr; gap: 48px; margin-bottom: 48px; }
  .footer-links-group { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .footer-links-group { grid-template-columns: 1fr; }
}

/* ─── Product line-up ─── */
#products { background: var(--paper-2); }

.lineup-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.presale-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-2);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  white-space: nowrap;
}

.presale-tag .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.pcard-featured {
  margin-top: 52px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-panel);
  overflow: hidden;
}

.pf-img { position: relative; min-height: 320px; }

.pf-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.pcard-featured:hover .pf-img img { transform: scale(1.03); }

.pf-body {
  padding: clamp(28px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pf-body h3 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); }

.p-model {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-3);
  margin-top: 8px;
  text-transform: uppercase;
}

.pf-body > p { margin-top: 16px; font-size: 0.97rem; color: var(--text-2); line-height: 1.75; max-width: 44ch; }

.pf-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }

.pf-chips span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 13px;
}

.pf-cta { margin-top: 30px; display: flex; align-items: center; gap: 16px; }

.pcards {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.pcard {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-tile);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: inherit;
}

.pcard-img { aspect-ratio: 16 / 10; overflow: hidden; background: var(--paper-2); }

.pcard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.pcard:hover .pcard-img img { transform: scale(1.04); }

.pcard-body { padding: 26px 28px 30px; display: flex; flex-direction: column; flex: 1; }

.pcard-body h3 { font-size: 1.15rem; }

.pcard-body .p-model { margin-top: 5px; }

.pcard-body p { margin: 12px 0 20px; font-size: 0.92rem; color: var(--text-2); line-height: 1.7; }

.pcard-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.pcard-link svg { transition: transform 0.3s var(--ease); }
.pcard:hover .pcard-link svg { transform: translateX(4px); }

@media (max-width: 900px) {
  .pcard-featured { grid-template-columns: 1fr; }
  .pf-img { min-height: 0; aspect-ratio: 16 / 9; }
  .privacy-points { grid-template-columns: 1fr; }
}

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