:root {
  --pyla-bg: #f4f5f1;
  --pyla-surface: #ffffff;
  --pyla-ink: #111514;
  --pyla-muted: #686e69;
  --pyla-line: #d9ddd7;
  --pyla-soft: #e9ece6;
  --pyla-lime: #b8ef2e;
  --pyla-lime-strong: #93cf00;
  --pyla-violet: #673ab7;
  --pyla-violet-soft: #eee9f8;
  --pyla-sage: #e6eed8;
  --pyla-radius: 24px;
  --pyla-shadow: 0 26px 72px rgba(17, 21, 20, .14);
  --pyla-font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.pyla-page {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--pyla-bg);
  color: var(--pyla-ink);
  font-family: var(--pyla-font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.pyla-page img { display: block; max-width: 100%; }
.pyla-page a { color: inherit; }
.pyla-container { width: min(100% - 56px, 1380px); margin-inline: auto; }

.pyla-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(217, 221, 215, .82);
  background: rgba(244, 245, 241, .94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.pyla-header.is-minimal { position: relative; border-bottom: 0; }
.pyla-nav { min-height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.pyla-brand { font-size: 29px; font-weight: 850; letter-spacing: -.065em; text-decoration: none; }
.pyla-brand span { color: var(--pyla-lime-strong); }
.pyla-nav-links { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 38px); font-size: 15px; font-weight: 680; }
.pyla-nav-links > a { text-decoration: none; }
.pyla-nav-links > a:not(.pyla-button):hover { color: var(--pyla-violet); }
.pyla-handle { font-weight: 720; text-decoration: none; }
.pyla-handle:hover { color: var(--pyla-violet); }
.pyla-page .py-language-picker { margin: 0; }

.pyla-button {
  min-height: 54px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--pyla-lime);
  border-radius: 14px;
  background: var(--pyla-lime);
  color: var(--pyla-ink);
  font: inherit;
  font-size: 16px;
  font-weight: 810;
  letter-spacing: -.025em;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(147, 207, 0, .16);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.pyla-button:hover { transform: translateY(-2px); border-color: var(--pyla-lime-strong); background: var(--pyla-lime-strong); box-shadow: 0 16px 34px rgba(98, 139, 0, .22); }
.pyla-button:focus-visible, .pyla-link:focus-visible { outline: 3px solid rgba(103, 58, 183, .3); outline-offset: 3px; }
.pyla-button-small { min-height: 46px; padding-inline: 21px; font-size: 14px; }

.pyla-hero {
  min-height: min(760px, calc(100vh - 80px));
  padding-block: 52px 70px;
  display: grid;
  grid-template-columns: minmax(0, .93fr) minmax(520px, 1.07fr);
  align-items: center;
  gap: clamp(44px, 6.8vw, 108px);
}
.pyla-hero-copy { position: relative; z-index: 2; max-width: 650px; }
.pyla-hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(58px, 5.65vw, 88px);
  line-height: .95;
  letter-spacing: -.07em;
}
.pyla-hero-copy > p { max-width: 610px; margin: 28px 0 0; color: var(--pyla-muted); font-size: clamp(20px, 1.55vw, 25px); line-height: 1.46; letter-spacing: -.026em; }
.pyla-hero-actions { margin-top: 34px; display: grid; justify-items: start; gap: 15px; }
.pyla-trust { display: flex; align-items: center; gap: 10px; color: var(--pyla-muted); font-size: 13px; line-height: 1.4; }
.pyla-trust svg { width: 22px; height: 22px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.pyla-install { color: var(--pyla-muted); font-size: 13px; font-weight: 700; text-decoration-thickness: 1px; text-underline-offset: 4px; }

.pyla-hero-visual { position: relative; min-height: 600px; }
.pyla-hero-photo { position: absolute; inset: 0 64px 0 0; margin: 0; overflow: hidden; border-radius: 28px; background: #e5e5df; }
.pyla-hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }
.pyla-photo-signature { position: absolute; left: 20px; bottom: 20px; padding: 12px 15px; border-radius: 13px; background: rgba(17, 21, 20, .82); color: white; backdrop-filter: blur(12px); }
.pyla-photo-signature strong, .pyla-photo-signature small { display: block; }
.pyla-photo-signature strong { font-size: 14px; }
.pyla-photo-signature small { margin-top: 2px; color: #d9ddd7; font-size: 10px; }

.pyla-phone {
  position: absolute;
  z-index: 3;
  right: 0;
  top: 50%;
  width: min(43%, 310px);
  min-width: 268px;
  padding: 9px;
  transform: translateY(-50%);
  border: 4px solid var(--pyla-ink);
  border-radius: 42px;
  background: var(--pyla-ink);
  box-shadow: 0 34px 74px rgba(17, 21, 20, .27);
}
.pyla-phone-screen { min-height: 492px; padding: 19px 16px 17px; border-radius: 31px; background: #fcfcfa; }
.pyla-phone-status { display: flex; align-items: center; justify-content: space-between; font-size: 10px; font-weight: 800; }
.pyla-phone-status i { width: 54px; height: 14px; border-radius: 99px; background: var(--pyla-ink); }
.pyla-phone-guide { margin-top: 20px; text-align: center; }
.pyla-phone-guide img { width: 54px; height: 54px; margin: 0 auto 10px; border: 3px solid white; border-radius: 50%; object-fit: cover; box-shadow: 0 6px 18px rgba(17, 21, 20, .16); }
.pyla-phone-guide small { display: block; color: var(--pyla-violet); font-size: 10px; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; }
.pyla-phone-guide h2 { margin: 8px 0 0; font-size: 23px; line-height: 1.02; letter-spacing: -.045em; }
.pyla-phone-guide p { margin: 7px auto 0; color: var(--pyla-muted); font-size: 10px; line-height: 1.4; }
.pyla-phone-list { margin-top: 17px; display: grid; gap: 8px; }
.pyla-phone-row { min-height: 64px; padding: 9px 11px; display: grid; grid-template-columns: 40px minmax(0, 1fr) 8px; align-items: center; gap: 10px; border: 1px solid var(--pyla-line); border-radius: 14px; }
.pyla-phone-row > span:first-child { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: var(--pyla-sage); color: var(--pyla-ink); }
.pyla-phone-row:nth-child(1) > span:first-child { background: var(--pyla-violet-soft); color: var(--pyla-violet); }
.pyla-phone-row svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.pyla-phone-row strong, .pyla-phone-row small { display: block; }
.pyla-phone-row strong { font-size: 11px; line-height: 1.15; }
.pyla-phone-row small { margin-top: 3px; color: var(--pyla-muted); font-size: 9px; }
.pyla-phone-row i { width: 7px; height: 7px; border-top: 1.5px solid var(--pyla-muted); border-right: 1.5px solid var(--pyla-muted); transform: rotate(45deg); }

.pyla-section { padding: 112px 0; }
.pyla-section-head { max-width: 760px; }
.pyla-section-head h2, .pyla-safety h2, .pyla-offer h2 { margin: 0; font-size: clamp(44px, 4.5vw, 68px); line-height: .98; letter-spacing: -.065em; }
.pyla-section-head p, .pyla-safety-copy > p, .pyla-offer-copy > p { margin: 22px 0 0; color: var(--pyla-muted); font-size: 18px; line-height: 1.55; }

.pyla-journey { margin-top: 54px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.pyla-journey article { position: relative; padding: 0 26px 0 0; }
.pyla-journey article:not(:last-child)::after { content: ""; position: absolute; top: 27px; left: 70px; right: 18px; height: 1px; background: var(--pyla-line); }
.pyla-step-number { position: relative; z-index: 1; width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; background: var(--pyla-violet-soft); color: var(--pyla-violet); font-size: 15px; font-weight: 850; }
.pyla-journey article:nth-child(even) .pyla-step-number { background: var(--pyla-sage); color: #4d6908; }
.pyla-journey h3 { margin: 18px 0 7px; font-size: 19px; letter-spacing: -.035em; }
.pyla-journey p { max-width: 230px; margin: 0; color: var(--pyla-muted); font-size: 13px; line-height: 1.48; }

.pyla-guide-grid { margin-top: 66px; display: grid; grid-template-columns: minmax(0, .96fr) minmax(420px, 1.04fr); gap: 34px; align-items: stretch; }
.pyla-guide-panel { padding: 28px; border: 1px solid var(--pyla-line); border-radius: var(--pyla-radius); background: rgba(255, 255, 255, .72); }
.pyla-guide-intro { display: grid; grid-template-columns: 58px 1fr; align-items: center; gap: 15px; }
.pyla-guide-intro img { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; }
.pyla-guide-intro small, .pyla-guide-intro strong { display: block; }
.pyla-guide-intro small { color: var(--pyla-violet); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.pyla-guide-intro strong { margin-top: 5px; font-size: 23px; line-height: 1.15; letter-spacing: -.04em; }
.pyla-plan-list { margin-top: 25px; border-top: 1px solid var(--pyla-line); }
.pyla-plan-row { min-height: 80px; padding: 12px 0; display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 13px; border-bottom: 1px solid var(--pyla-line); }
.pyla-plan-row > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; background: var(--pyla-soft); font-weight: 850; }
.pyla-plan-row strong, .pyla-plan-row small { display: block; }
.pyla-plan-row strong { font-size: 15px; }
.pyla-plan-row small { margin-top: 4px; color: var(--pyla-muted); font-size: 11px; }
.pyla-plan-row em { color: var(--pyla-violet); font-size: 11px; font-style: normal; font-weight: 800; }
.pyla-guide-photo { min-height: 570px; overflow: hidden; border-radius: var(--pyla-radius); }
.pyla-guide-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }

.pyla-rhythm { padding: 52px 0; background: var(--pyla-ink); color: white; }
.pyla-rhythm-inner { display: grid; grid-template-columns: 1.1fr repeat(3, .63fr); align-items: center; gap: 36px; }
.pyla-rhythm h2 { max-width: 520px; margin: 0; font-size: clamp(35px, 3.6vw, 55px); line-height: 1; letter-spacing: -.055em; }
.pyla-rhythm span { min-height: 74px; padding-left: 18px; display: flex; align-items: center; border-left: 1px solid #3b413d; color: #d9ddd7; font-size: 14px; font-weight: 680; }

.pyla-editorial { display: grid; grid-template-columns: .72fr 1.28fr; gap: 74px; align-items: start; }
.pyla-editorial-copy { position: sticky; top: 120px; }
.pyla-editorial-copy h2 { margin: 0; font-size: clamp(44px, 4.7vw, 70px); line-height: .98; letter-spacing: -.065em; }
.pyla-editorial-copy > p { margin: 24px 0 0; color: var(--pyla-muted); font-size: 18px; line-height: 1.55; }
.pyla-content-lines { margin-top: 34px; border-top: 1px solid var(--pyla-line); }
.pyla-content-lines div { padding: 18px 0; display: grid; grid-template-columns: 42px 1fr; gap: 14px; border-bottom: 1px solid var(--pyla-line); }
.pyla-content-lines b { color: var(--pyla-violet); }
.pyla-content-lines strong, .pyla-content-lines small { display: block; }
.pyla-content-lines strong { font-size: 15px; }
.pyla-content-lines small { margin-top: 4px; color: var(--pyla-muted); font-size: 12px; line-height: 1.45; }
.pyla-editorial-images { display: grid; grid-template-columns: 1fr .78fr; gap: 18px; align-items: end; }
.pyla-editorial-images figure { margin: 0; }
.pyla-editorial-images img { width: 100%; height: 100%; object-fit: cover; border-radius: 22px; }
.pyla-editorial-images figure:first-child { height: 610px; }
.pyla-editorial-images figure:last-child { height: 430px; }
.pyla-editorial-images figcaption { padding: 10px 2px 0; color: var(--pyla-muted); font-size: 11px; }

.pyla-safety { padding: 104px 0; border-top: 1px solid var(--pyla-line); }
.pyla-safety-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 88px; }
.pyla-principles { border-top: 1px solid var(--pyla-line); }
.pyla-principles article { padding: 24px 0; display: grid; grid-template-columns: 44px 1fr; gap: 16px; border-bottom: 1px solid var(--pyla-line); }
.pyla-principles b { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: var(--pyla-sage); color: #537008; }
.pyla-principles strong, .pyla-principles span { display: block; }
.pyla-principles strong { font-size: 18px; letter-spacing: -.025em; }
.pyla-principles span { margin-top: 5px; color: var(--pyla-muted); font-size: 13px; line-height: 1.5; }

.pyla-offer { padding: 108px 0; background: white; }
.pyla-offer-grid { display: grid; grid-template-columns: 1fr minmax(390px, .72fr); gap: 80px; align-items: center; }
.pyla-price { padding: 34px; border-radius: 24px; background: var(--pyla-ink); color: white; }
.pyla-price > small { color: #bce95a; font-size: 11px; font-weight: 820; letter-spacing: .08em; text-transform: uppercase; }
.pyla-price h3 { margin: 14px 0 0; font-size: 46px; letter-spacing: -.055em; }
.pyla-price h3 span { color: #b8bdb9; font-size: 15px; font-weight: 600; letter-spacing: 0; }
.pyla-price p { margin: 12px 0 0; color: #c8cdc9; font-size: 13px; line-height: 1.5; }
.pyla-price ul { margin: 24px 0; padding: 0; list-style: none; }
.pyla-price li { padding: 10px 0; border-top: 1px solid #343a36; font-size: 13px; }
.pyla-price li::before { content: "✓"; margin-right: 10px; color: var(--pyla-lime); font-weight: 900; }
.pyla-price .pyla-button { width: 100%; }
.pyla-price > em { display: block; margin-top: 13px; color: #999f9a; font-size: 9px; line-height: 1.45; font-style: normal; }

.pyla-waitlist { padding: 104px 0; scroll-margin-top: 80px; background: var(--pyla-ink); color: white; }
.pyla-waitlist-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(390px, .7fr); align-items: center; gap: clamp(60px, 8vw, 120px); }
.pyla-waitlist-copy > small { color: var(--pyla-lime); font-size: 11px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.pyla-waitlist-copy h2 { max-width: 700px; margin: 16px 0 0; font-size: clamp(44px, 4.8vw, 70px); line-height: .98; letter-spacing: -.065em; }
.pyla-waitlist-copy > p { max-width: 620px; margin: 22px 0 0; color: #c7ccc8; font-size: 18px; line-height: 1.55; }
.pyla-waitlist-copy ul { margin: 28px 0 0; padding: 0; list-style: none; }
.pyla-waitlist-copy li { padding: 10px 0; border-top: 1px solid #343a36; color: #e6e9e6; font-size: 14px; }
.pyla-waitlist-copy li::before { content: "✓"; margin-right: 11px; color: var(--pyla-lime); font-weight: 900; }
.pyla-waitlist-form { padding: 32px; display: grid; gap: 17px; border-radius: 24px; background: #fcfcfa; color: var(--pyla-ink); box-shadow: 0 30px 80px rgba(0, 0, 0, .24); }
.pyla-waitlist-form label { display: block; margin-bottom: 8px; font-size: 13px; font-weight: 780; }
.pyla-waitlist-form input { width: 100%; min-height: 55px; padding: 0 15px; border: 1px solid var(--pyla-line); border-radius: 13px; background: white; color: var(--pyla-ink); font: inherit; font-size: 16px; }
.pyla-waitlist-form input::placeholder { color: #929893; }
.pyla-waitlist-form input:focus { outline: 3px solid rgba(103, 58, 183, .18); border-color: var(--pyla-violet); }
.pyla-waitlist-form .pyla-button { width: 100%; margin-top: 3px; }
.pyla-waitlist-form .pyla-button:disabled { cursor: wait; opacity: .65; transform: none; }
.pyla-waitlist-form > small { color: var(--pyla-muted); font-size: 10px; line-height: 1.5; }
.pyla-waitlist-form > small a { text-underline-offset: 2px; }
.pyla-waitlist-message { min-height: 20px; margin: 0; color: var(--pyla-muted); font-size: 12px; line-height: 1.45; }
.pyla-waitlist-message.is-success { color: #4f6d05; font-weight: 730; }
.pyla-waitlist-message.is-error { color: #a52b24; font-weight: 730; }

.pyla-footer { padding: 28px 0; border-top: 1px solid var(--pyla-line); color: var(--pyla-muted); font-size: 12px; }
.pyla-footer-row { display: flex; justify-content: space-between; gap: 24px; }
.pyla-footer a { text-underline-offset: 3px; }

/* Lila continuity on the existing account surface */
.pyla-account-intro { margin-bottom: 22px; display: grid; grid-template-columns: 52px 1fr; align-items: center; gap: 13px; }
.pyla-account-intro img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; box-shadow: 0 7px 18px rgba(17, 21, 20, .14); }
.pyla-account-intro strong, .pyla-account-intro small { display: block; }
.pyla-account-intro strong { color: var(--pyla-violet); font-size: 13px; }
.pyla-account-intro small { margin-top: 3px; color: var(--pyla-muted); font-size: 11px; line-height: 1.4; }
.pyla-account-photo { width: min(43vw, 350px); height: 430px; border-radius: 24px; object-fit: cover; object-position: 50% 35%; box-shadow: var(--pyla-shadow); }

/* Dedicated Instagram entry */
.pyla-entry .pyla-entry-hero { min-height: 555px; padding-block: 24px 56px; display: grid; grid-template-columns: minmax(0, .83fr) minmax(620px, 1.17fr); align-items: center; gap: 44px; }
.pyla-entry .pyla-hero-copy > p { max-width: 600px; }
.pyla-entry .pyla-entry-visual { position: relative; min-height: 555px; }
.pyla-entry .pyla-hero-photo { inset: 0; }
.pyla-entry .pyla-hero-photo img { object-position: 52% top; }
.pyla-entry .pyla-phone { right: 4%; width: 260px; min-width: 0; }
.pyla-entry .pyla-phone-screen { min-height: 438px; }
.pyla-entry-flow { padding: 32px 0 48px; border-top: 1px solid var(--pyla-line); }
.pyla-entry-flow h2 { margin: 0; font-size: clamp(32px, 3vw, 44px); letter-spacing: -.05em; }
.pyla-entry-flow .pyla-journey { margin-top: 28px; }
.pyla-entry-flow .pyla-journey article { padding-right: 18px; }
.pyla-entry-flow .pyla-journey h3 { font-size: 16px; }
.pyla-closing { margin: 0 auto 54px; min-height: 180px; padding: 24px 34px; display: grid; grid-template-columns: 220px 1fr auto; align-items: center; gap: 34px; overflow: hidden; border-radius: 26px; background: var(--pyla-ink); color: white; }
.pyla-closing-image { align-self: stretch; overflow: hidden; border-radius: 18px; }
.pyla-closing-image img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 28%; }
.pyla-closing h2 { margin: 0; font-size: clamp(32px, 3.1vw, 48px); line-height: 1; letter-spacing: -.055em; }
.pyla-closing p { margin: 12px 0 0; color: #bfc5c0; font-size: 13px; }
.pyla-entry-note { padding: 22px 0 42px; color: var(--pyla-muted); font-size: 11px; line-height: 1.55; text-align: center; }

@media (max-width: 1080px) {
  .pyla-hero { grid-template-columns: minmax(0, .92fr) minmax(440px, 1.08fr); gap: 36px; }
  .pyla-hero h1 { font-size: clamp(54px, 6vw, 72px); }
  .pyla-hero-photo { right: 36px; }
  .pyla-phone { min-width: 240px; }
  .pyla-entry .pyla-entry-hero { grid-template-columns: minmax(0, .88fr) minmax(500px, 1.12fr); }
  .pyla-entry .pyla-phone { width: 230px; }
  .pyla-rhythm-inner { grid-template-columns: 1fr repeat(3, .55fr); gap: 20px; }
}

@media (max-width: 900px) {
  .pyla-container { width: min(100% - 36px, 720px); }
  .pyla-nav-links > a:not(.pyla-button), .pyla-nav-links .py-language-picker { display: none; }
  .pyla-hero, .pyla-entry .pyla-entry-hero { min-height: 0; grid-template-columns: 1fr; padding-block: 58px 70px; }
  .pyla-hero-copy { max-width: 700px; }
  .pyla-hero-visual, .pyla-entry .pyla-entry-visual { min-height: 650px; }
  .pyla-hero-photo { inset: 0 54px 0 0; }
  .pyla-entry .pyla-hero-photo { inset: 0; }
  .pyla-phone { right: 0; width: 292px; }
  .pyla-entry .pyla-phone { right: 3%; width: 260px; }
  .pyla-guide-grid, .pyla-editorial, .pyla-safety-grid, .pyla-offer-grid, .pyla-waitlist-grid { grid-template-columns: 1fr; gap: 42px; }
  .pyla-editorial-copy { position: static; }
  .pyla-rhythm-inner { grid-template-columns: 1fr 1fr; }
  .pyla-rhythm h2 { grid-column: 1 / -1; }
  .pyla-rhythm span { min-height: 50px; }
  .pyla-closing { grid-template-columns: 150px 1fr; }
  .pyla-closing .pyla-button { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .pyla-container { width: min(100% - 28px, 540px); }
  .pyla-nav { min-height: 68px; }
  .pyla-brand { font-size: 25px; }
  .pyla-nav .pyla-button { min-height: 42px; padding-inline: 14px; font-size: 12px; }
  .pyla-handle { font-size: 12px; }
  .pyla-hero, .pyla-entry .pyla-entry-hero { padding-block: 42px 56px; gap: 36px; }
  .pyla-hero h1 { font-size: clamp(48px, 15vw, 64px); line-height: .94; }
  .pyla-entry .pyla-hero h1 { font-size: clamp(44px, 13vw, 58px); }
  .pyla-hero-copy > p { margin-top: 22px; font-size: 18px; }
  .pyla-button { width: 100%; }
  .pyla-hero-actions { justify-items: stretch; }
  .pyla-trust { align-items: flex-start; font-size: 11px; }
  .pyla-hero-visual, .pyla-entry .pyla-entry-visual { min-height: 560px; }
  .pyla-hero-photo, .pyla-entry .pyla-hero-photo { inset: 0 0 94px; }
  .pyla-phone, .pyla-entry .pyla-phone { top: auto; right: 12px; bottom: 0; width: 222px; min-width: 0; transform: none; border-width: 3px; border-radius: 34px; }
  .pyla-phone-screen, .pyla-entry .pyla-phone-screen { min-height: 376px; padding: 14px 12px; border-radius: 25px; }
  .pyla-phone-guide { margin-top: 12px; }
  .pyla-phone-guide img { width: 44px; height: 44px; margin-bottom: 7px; }
  .pyla-phone-guide h2 { font-size: 18px; }
  .pyla-phone-row { min-height: 54px; grid-template-columns: 34px 1fr 7px; padding: 7px 8px; }
  .pyla-phone-row > span:first-child { width: 34px; height: 34px; }
  .pyla-section { padding: 78px 0; }
  .pyla-section-head h2, .pyla-safety h2, .pyla-offer h2, .pyla-editorial-copy h2 { font-size: 42px; }
  .pyla-journey { grid-template-columns: 1fr; gap: 0; }
  .pyla-journey article { min-height: 116px; padding: 0 0 24px 72px; }
  .pyla-journey article:not(:last-child)::after { top: 55px; bottom: 0; left: 26px; right: auto; width: 1px; height: auto; }
  .pyla-step-number { position: absolute; left: 0; top: 0; }
  .pyla-journey h3 { margin-top: 2px; }
  .pyla-guide-grid { margin-top: 32px; }
  .pyla-guide-panel { padding: 20px; }
  .pyla-guide-intro strong { font-size: 19px; }
  .pyla-guide-photo { min-height: 480px; }
  .pyla-rhythm { padding: 42px 0; }
  .pyla-rhythm-inner { grid-template-columns: 1fr; }
  .pyla-rhythm h2 { grid-column: auto; font-size: 38px; }
  .pyla-editorial-images { grid-template-columns: 1fr; }
  .pyla-editorial-images figure:first-child, .pyla-editorial-images figure:last-child { height: 460px; }
  .pyla-safety, .pyla-offer, .pyla-waitlist { padding: 78px 0; }
  .pyla-price { padding: 27px 22px; }
  .pyla-waitlist-copy h2 { font-size: 42px; }
  .pyla-waitlist-form { padding: 25px 20px; }
  .pyla-footer-row { flex-direction: column; }
  .pyla-entry-flow { padding-top: 42px; }
  .pyla-closing { min-height: 0; padding: 18px; grid-template-columns: 1fr; }
  .pyla-closing-image { height: 240px; }
  .pyla-closing h2 { font-size: 38px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .pyla-button { transition: none; }
}
