:root {
  --bg: #fffaf2;
  --bg-soft: rgba(255, 251, 243, 0.86);
  --surface: rgba(255, 253, 247, 0.8);
  --surface-strong: rgba(255, 250, 240, 0.96);
  --line: rgba(119, 84, 19, 0.14);
  --ink: #6f4e10;
  --ink-soft: #987236;
  --accent: #f3b735;
  --accent-deep: #c8901c;
  --accent-alt: #a77716;
  --shadow: 0 24px 70px rgba(133, 94, 18, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Avenir Next", "Trebuchet MS", Verdana, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(243, 183, 53, 0.12), transparent 28%),
    linear-gradient(180deg, #fff9ee 0%, #fffdf8 48%, #fff6e2 100%);
  overflow-x: hidden;
}

.page-shell {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 24px;
  isolation: isolate;
}

.site-header {
  position: static;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 252, 245, 0.96);
  box-shadow: 0 10px 24px rgba(160, 117, 28, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 4px rgba(255, 252, 242, 0.94),
    0 0 0 8px rgba(243, 183, 53, 0.18);
  overflow: hidden;
  background: #fffdf7;
}

.brand-mark-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-text strong,
h1,
h2,
h3 {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, serif;
}

.brand-text small {
  color: var(--ink-soft);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
}

.site-nav a:hover {
  color: var(--ink);
}

.section {
  margin-bottom: 22px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 252, 245, 0.94);
  box-shadow: 0 10px 24px rgba(133, 94, 18, 0.08);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 24px;
  align-items: start;
  padding: 24px;
}

.hero-copy,
.hero-side {
  min-height: 100%;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow,
.section-kicker,
.panel-kicker,
.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.eyebrow::before,
.section-kicker::before,
.panel-kicker::before,
.feature-tag::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

h1 {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(2.8rem, 5.4vw, 4.9rem);
  line-height: 1;
  text-wrap: balance;
}

.lead {
  margin: 18px 0 0;
  max-width: 72ch;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.hero-highlight {
  margin-top: 20px;
  max-width: 74ch;
  padding: 16px 18px;
  border: 1px solid rgba(200, 144, 28, 0.22);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 246, 217, 0.95), rgba(255, 251, 239, 0.95));
  line-height: 1.7;
  color: var(--ink);
}

.hero-highlight strong {
  color: var(--accent-deep);
}

.hero-text,
.seo-copy {
  margin: 18px 0 0;
  max-width: 78ch;
  line-height: 1.75;
  color: var(--ink-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  align-items: center;
}

.hero-pricing {
  margin: 16px 0 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-deep);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  color: #fffdf7;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 10px 22px rgba(200, 144, 28, 0.18);
  transition: none;
}

.button-primary-hero {
  min-height: 64px;
  padding: 0 34px;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  background:
    linear-gradient(180deg, #ffc742 0%, #f3b735 46%, #d79d1e 100%);
  box-shadow:
    0 18px 38px rgba(215, 157, 30, 0.26),
    inset 0 1px 0 rgba(255, 247, 214, 0.9);
}

.button-secondary {
  color: var(--accent-alt);
  background: rgba(243, 183, 53, 0.1);
  border-color: rgba(200, 144, 28, 0.18);
  box-shadow: none;
}

.button.is-disabled {
  pointer-events: none;
  opacity: 0.55;
}

.hero-visual {
  position: relative;
  min-height: 720px;
  border: 1px solid rgba(200, 144, 28, 0.18);
  border-radius: 36px;
  background:
    radial-gradient(circle at top left, rgba(255, 205, 84, 0.22), transparent 30%),
    radial-gradient(circle at bottom right, rgba(163, 71, 255, 0.14), transparent 34%),
    rgba(255, 249, 236, 0.94);
  overflow: hidden;
}

.hero-visual__halo {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.7;
}

.hero-visual__halo--left {
  top: 56px;
  left: 42px;
  width: 170px;
  height: 170px;
  background: rgba(44, 165, 233, 0.22);
}

.hero-visual__halo--right {
  right: 48px;
  bottom: 90px;
  width: 220px;
  height: 220px;
  background: rgba(163, 71, 255, 0.16);
}

.hero-visual__phone {
  position: absolute;
}

.hero-visual__phone--telegram {
  top: 54px;
  left: 34px;
  transform: rotate(-8deg);
}

.hero-visual__phone--max {
  top: 182px;
  right: 34px;
  transform: rotate(8deg);
}

.phone-shot__frame--hero {
  width: 240px;
  padding: 10px;
  border-radius: 34px;
}

.phone-shot__frame--hero img {
  border-radius: 24px;
}

.hero-visual__badge {
  position: absolute;
  top: 278px;
  left: 50%;
  z-index: 3;
  display: grid;
  gap: 4px;
  min-width: 200px;
  padding: 18px 20px;
  border: 1px solid rgba(200, 144, 28, 0.18);
  border-radius: 26px;
  text-align: center;
  background: rgba(255, 252, 245, 0.96);
  box-shadow: 0 16px 34px rgba(133, 94, 18, 0.12);
  transform: translateX(-50%);
}

.hero-visual__badge span {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.hero-visual__badge strong {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-size: 2rem;
  line-height: 1;
}

.hero-visual__badge small {
  font-size: 0.96rem;
  color: var(--ink-soft);
}

.hero-visual__chip {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  box-shadow: 0 10px 24px rgba(17, 18, 23, 0.12);
}

.hero-visual__chip--telegram {
  top: 34px;
  right: 72px;
  background: linear-gradient(180deg, #33b6f0 0%, #26a5e4 52%, #1588c6 100%);
}

.hero-visual__chip--max {
  left: 86px;
  bottom: 150px;
  background: linear-gradient(135deg, #36c4ff 0%, #2d63ff 45%, #a347ff 100%);
}

.hero-visual__note {
  position: absolute;
  right: 34px;
  bottom: 34px;
  max-width: 280px;
  padding: 16px 18px;
  border: 1px solid rgba(200, 144, 28, 0.18);
  border-radius: 22px;
  background: rgba(255, 252, 245, 0.96);
  line-height: 1.65;
  color: var(--ink-soft);
}

.metric-list,
.story-grid,
.audience-grid,
.feature-grid,
.screenshot-grid,
.link-grid {
  display: grid;
  gap: 16px;
}

.metric-list {
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  margin-top: 24px;
}

.metric-card,
.story-card,
.feature-card,
.link-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 247, 0.96);
}

.link-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
  padding: 24px;
}

.metric-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 2rem;
  color: var(--accent-deep);
}

.metric-card span {
  display: block;
  font-weight: 700;
}

.metric-card small {
  display: block;
  margin-top: 6px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.section-heading {
  margin-bottom: 20px;
}

.section-heading h2 {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.04;
}

.section-pricing-note {
  margin: 14px 0 0;
  max-width: 56ch;
  font-weight: 700;
  line-height: 1.6;
  color: var(--accent-deep);
}

.section-text {
  margin: 14px 0 0;
  max-width: 68ch;
  line-height: 1.7;
  color: var(--ink-soft);
}

.story-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.audience-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.story-card h3,
.feature-card h3,
.shot-card h3,
.link-card h3,
.video-card h3 {
  margin: 0 0 10px;
  font-size: 1.5rem;
  line-height: 1.08;
}

.story-card p,
.feature-card p,
.shot-card p,
.link-card p,
.faq-item p,
.video-card p {
  margin: 0;
  line-height: 1.7;
  color: var(--ink-soft);
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-tag {
  margin-bottom: 14px;
}

.phone-shot {
  display: flex;
  justify-content: center;
  padding: 8px 0 0;
}

.phone-shot__frame {
  position: relative;
  width: min(100%, 290px);
  aspect-ratio: 9 / 19.5;
  padding: 12px;
  border-radius: 40px;
  background:
    linear-gradient(180deg, #25262b 0%, #111217 100%);
  box-shadow:
    0 18px 42px rgba(17, 18, 23, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.phone-shot__island {
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 2;
  width: 38%;
  height: 22px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #0d0f13;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.phone-shot__frame img,
.video-poster {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.shot-slider {
  display: grid;
  gap: 20px;
}

.shot-slider__viewport {
  overflow: hidden;
}

.shot-slider__track {
  display: flex;
  transition: transform 320ms ease;
  will-change: transform;
}

.shot-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: minmax(260px, 320px) 1fr;
  gap: 32px;
  align-items: center;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 251, 246, 0.98);
}

.shot-slide figcaption {
  max-width: 56ch;
}

.shot-slide__platform {
  display: inline-flex;
  align-items: center;
  margin: 0 0 10px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-deep);
  background: rgba(243, 183, 53, 0.12);
}

.shot-slider__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.shot-slider__nav {
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(200, 144, 28, 0.18);
  border-radius: 999px;
  background: rgba(255, 248, 229, 0.96);
  color: var(--accent-deep);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.shot-slider__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.shot-slider__dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(200, 144, 28, 0.24);
  cursor: pointer;
}

.shot-slider__dot.is-active {
  background: var(--accent-deep);
  box-shadow: 0 0 0 4px rgba(243, 183, 53, 0.12);
}

.video-library {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 18px;
  align-items: start;
}

.video-stage,
.video-playlist {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.98), rgba(255, 248, 236, 0.98));
}

.video-stage {
  display: grid;
  gap: 16px;
}

.video-stage__meta,
.video-playlist__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.video-stage__tag,
.video-stage__duration,
.video-playlist__tag,
.video-playlist__duration {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.video-stage__tag,
.video-playlist__tag {
  color: var(--accent-deep);
  background: rgba(243, 183, 53, 0.14);
}

.video-stage__duration,
.video-playlist__duration {
  color: var(--ink-soft);
  background: rgba(111, 78, 16, 0.08);
}

.video-stage h3 {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.02;
}

.video-stage__description {
  margin: 0;
  max-width: 62ch;
  line-height: 1.7;
  color: var(--ink-soft);
}

.video-stage__player {
  overflow: hidden;
  border: 1px solid rgba(200, 144, 28, 0.14);
  border-radius: 30px;
  background: #18191f;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.video-stage__player video {
  display: block;
  width: 100%;
  max-height: 760px;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

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

.video-stage__controls {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.video-stage__nav {
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(200, 144, 28, 0.18);
  border-radius: 999px;
  background: rgba(255, 248, 229, 0.96);
  color: var(--accent-deep);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.video-stage__counter {
  margin: 0;
  font-weight: 800;
  color: var(--ink-soft);
}

.video-playlist {
  display: grid;
  gap: 12px;
  max-height: 980px;
  overflow: auto;
  align-content: start;
}

.video-playlist__item {
  display: grid;
  gap: 12px;
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(200, 144, 28, 0.14);
  border-radius: 22px;
  background: rgba(255, 252, 246, 0.94);
  text-align: left;
  color: inherit;
  cursor: pointer;
}

.video-playlist__item.is-active {
  border-color: rgba(200, 144, 28, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 246, 217, 0.9), rgba(255, 251, 239, 0.96));
  box-shadow: 0 14px 32px rgba(200, 144, 28, 0.1);
}

.video-playlist__item strong {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-size: 1.28rem;
  line-height: 1.08;
}

.video-playlist__description {
  line-height: 1.65;
  color: var(--ink-soft);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 251, 246, 0.96);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  line-height: 1.45;
}

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

.faq-item p {
  margin-top: 14px;
}

.video-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 251, 245, 0.96);
}

.video-frame {
  overflow: hidden;
  margin-top: 18px;
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 9;
}

.video-frame iframe,
.video-card video {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: var(--radius-lg);
}

.video-note {
  margin-top: 16px;
  font-size: 0.94rem;
}

.link-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-self: start;
}

.link-card .button {
  margin-top: 4px;
}

.service-cta {
  width: 100%;
  min-height: 68px;
  justify-content: flex-start;
  gap: 14px;
  padding: 0 22px;
  font-size: 1.08rem;
  font-weight: 800;
}

.service-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
}

.service-logo svg {
  width: 100%;
  height: 100%;
  display: block;
}

.service-cta--telegram {
  color: #ffffff;
  background: linear-gradient(180deg, #33b6f0 0%, #26a5e4 52%, #1588c6 100%);
  box-shadow: 0 16px 34px rgba(38, 165, 228, 0.24);
}

.service-cta--telegram .service-logo {
  color: #ffffff;
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.08));
}

.service-cta--max {
  color: #ffffff;
  background: linear-gradient(135deg, #36c4ff 0%, #2d63ff 45%, #a347ff 100%);
  box-shadow: 0 16px 34px rgba(82, 86, 255, 0.24);
}

.service-cta--max .service-logo {
  color: #ffffff;
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.12));
}

.site-footer {
  padding: 12px 4px 32px;
  color: var(--ink-soft);
}

.reveal {
  opacity: 1;
  transform: none;
  transition: none;
  will-change: auto;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }

  .button {
    transition: none;
  }
}

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

  .story-grid,
  .audience-grid,
  .feature-grid,
  .link-grid {
    grid-template-columns: 1fr 1fr;
  }

  .video-library {
    grid-template-columns: 1fr;
  }

  .metric-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-copy {
    max-width: none;
  }

  .hero-visual {
    min-height: 640px;
  }

  .video-stage__player video {
    max-height: 620px;
  }
}

@media (max-width: 760px) {
  .page-shell {
    padding: 12px;
  }

  .site-header {
    position: static;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border-radius: 28px;
  }

  .hero,
  .story-grid,
  .audience-grid,
  .feature-grid,
  .link-grid {
    grid-template-columns: 1fr;
  }

  .video-stage h3 {
    max-width: 100%;
  }

  .site-nav {
    width: 100%;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 10px 14px;
    border: 1px solid rgba(200, 144, 28, 0.16);
    border-radius: 999px;
    background: rgba(255, 248, 229, 0.9);
    font-size: 0.92rem;
    font-weight: 700;
  }

  .video-stage__player video {
    max-height: none;
  }

  .video-stage,
  .video-playlist {
    padding: 16px;
    border-radius: 24px;
  }

  .video-stage__meta,
  .video-stage__footer,
  .video-playlist__topline {
    flex-direction: column;
    align-items: flex-start;
  }

  .video-stage__controls {
    width: 100%;
  }

  .video-stage__nav {
    width: 100%;
    justify-content: center;
  }

  .video-playlist {
    max-height: none;
  }

  .shot-slide {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 16px;
    justify-items: center;
    text-align: left;
  }

  .shot-slide figcaption {
    max-width: none;
    width: 100%;
  }

  .shot-slider__controls {
    flex-direction: column;
    align-items: stretch;
  }

  .shot-slider__nav {
    width: 100%;
    justify-content: center;
  }

  .metric-list {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: auto;
    padding: 18px 16px 20px;
    gap: 12px;
  }

  .hero-visual__phone,
  .hero-visual__badge,
  .hero-visual__chip,
  .hero-visual__note {
    position: static;
    transform: none;
  }

  .hero-visual__phone--telegram,
  .hero-visual__phone--max {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
  }

  .phone-shot__frame--hero {
    width: min(100%, 280px);
  }

  .hero-visual__chip--telegram {
    order: 1;
  }

  .hero-visual__phone--telegram {
    order: 2;
  }

  .hero-visual__badge {
    order: 3;
  }

  .hero-visual__chip--max {
    order: 4;
  }

  .hero-visual__phone--max {
    order: 5;
  }

  .hero-visual__note {
    order: 6;
  }

  .hero-visual__badge,
  .hero-visual__note {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .hero-visual__chip {
    margin: 0;
    width: fit-content;
  }

  .hero-visual__halo {
    display: none;
  }

  .section,
  .hero,
  .metric-panel {
    padding: 18px;
    border-radius: 26px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.3rem, 9vw, 3.7rem);
    line-height: 0.98;
    text-wrap: pretty;
  }

  .lead,
  .hero-text,
  .seo-copy {
    font-size: 1rem;
    line-height: 1.68;
  }

  .hero-highlight {
    padding: 14px 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button {
    width: 100%;
  }

  .button-primary-hero {
    min-height: 58px;
    padding: 0 24px;
    font-size: 1.08rem;
  }

  .section-heading h2 {
    max-width: none;
  }

  .story-card h3,
  .feature-card h3,
  .shot-card h3,
  .link-card h3,
  .video-card h3,
  .video-playlist__item strong {
    font-size: 1.32rem;
  }

  .link-card {
    padding: 20px;
  }

  .service-cta {
    min-height: 60px;
    padding: 0 18px;
    font-size: 1rem;
  }

  .faq-item {
    padding: 16px;
  }
}

@media (max-width: 560px) {
  .page-shell {
    padding: 10px;
  }

  .site-header {
    padding: 14px;
    border-radius: 24px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
    box-shadow:
      inset 0 0 0 3px rgba(255, 252, 242, 0.94),
      0 0 0 6px rgba(243, 183, 53, 0.16);
  }

  .brand-text strong {
    font-size: 1rem;
  }

  .brand-text small {
    font-size: 0.82rem;
  }

  .section,
  .hero,
  .metric-panel {
    padding: 16px;
    border-radius: 22px;
  }

  h1 {
    font-size: clamp(2rem, 11vw, 2.8rem);
  }

  .section-heading h2 {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
    line-height: 1.04;
  }

  .eyebrow,
  .section-kicker,
  .panel-kicker,
  .feature-tag {
    margin-bottom: 12px;
    font-size: 0.74rem;
  }

  .hero-pricing,
  .section-pricing-note,
  .section-text,
  .story-card p,
  .feature-card p,
  .shot-card p,
  .link-card p,
  .faq-item p,
  .video-card p,
  .video-stage__description,
  .video-playlist__description {
    font-size: 0.96rem;
  }

  .button,
  .button-primary-hero,
  .shot-slider__nav,
  .video-stage__nav {
    min-height: 52px;
  }

  .phone-shot__frame,
  .phone-shot__frame--hero {
    width: min(100%, 250px);
    padding: 10px;
    border-radius: 32px;
  }

  .phone-shot__frame img,
  .video-poster {
    border-radius: 24px;
  }

  .phone-shot__island {
    top: 12px;
  }

  .hero-visual__badge {
    padding: 16px;
    border-radius: 22px;
  }

  .hero-visual__badge strong {
    font-size: 1.7rem;
  }

  .hero-visual__note {
    padding: 14px 16px;
    border-radius: 18px;
  }

  .shot-slide,
  .video-stage,
  .video-playlist,
  .link-card {
    padding: 14px;
  }

  .video-stage__player {
    border-radius: 22px;
  }

  .video-playlist__item {
    padding: 14px;
    border-radius: 18px;
  }

  .service-cta {
    min-height: 56px;
    gap: 12px;
  }
}
