/* Conexão Búzios - vender em Búzios */

:root {
  --ink: #081114;
  --ink-2: #102126;
  --ink-3: #173136;
  --paper: #f6fbfc;
  --paper-2: #e9f5f6;
  --white: #ffffff;
  --muted: #5d7075;
  --muted-dark: #9eb4b8;
  --line: rgba(8, 17, 20, 0.12);
  --line-light: rgba(255, 255, 255, 0.14);
  --lagoon: #00b8d4;
  --lagoon-dark: #00899e;
  --sun: #d4a76a;
  --sun-2: #f0c987;
  --leaf: #10b981;
  --coral: #f26d5b;
  --shadow: 0 18px 50px rgba(8, 17, 20, 0.18);
  --shadow-soft: 0 10px 30px rgba(8, 17, 20, 0.12);
  --radius: 8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ambient-shift-x: 0px;
  --ambient-shift-y: 0px;
  --ambient-scroll: 0;
  --ambient-energy: 1;
}

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

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-width: 320px;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
  isolation: isolate;
}

main,
.navbar,
.quick-dock,
.footer,
.action-modal,
.skip-link {
  position: relative;
  z-index: 1;
}

.ambient-stage {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: linear-gradient(180deg, #0b161a 0%, #14383c 17%, #edf6f7 52%, #fbf7ee 100%);
}

.ambient-stage__layer {
  position: absolute;
  inset: -14%;
  will-change: transform, opacity;
}

.ambient-stage__layer--base {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 184, 212, 0.08) 0%, transparent 16%),
    linear-gradient(180deg, transparent 44%, rgba(240, 201, 135, 0.08) 62%, rgba(255, 255, 255, 0.16) 100%);
}

.ambient-stage__layer--lagoon {
  opacity: calc(0.18 * var(--ambient-energy));
  background:
    linear-gradient(118deg, transparent 8%, rgba(0, 184, 212, 0.18) 24%, rgba(0, 184, 212, 0.08) 40%, transparent 56%),
    linear-gradient(152deg, transparent 22%, rgba(16, 185, 129, 0.1) 38%, transparent 54%);
  transform: translate3d(var(--ambient-shift-x), calc(var(--ambient-scroll) * -40px), 0) scale(1.08);
}

.ambient-stage__layer--sun {
  opacity: calc(0.22 * var(--ambient-energy));
  background:
    linear-gradient(180deg, rgba(240, 201, 135, 0.26) 0%, rgba(240, 201, 135, 0.08) 18%, transparent 34%),
    linear-gradient(108deg, transparent 34%, rgba(212, 167, 106, 0.16) 47%, transparent 60%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.12), transparent 22%);
  transform: translate3d(calc(var(--ambient-shift-x) * -0.55), calc(var(--ambient-shift-y) * 0.7), 0) scale(1.04);
}

.ambient-stage__layer--grid {
  inset: 0;
  opacity: 0.14;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 64px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 64px);
  transform: translate3d(0, calc(var(--ambient-scroll) * -18px), 0);
}

.ambient-stage__layer--flow {
  opacity: calc(0.22 * var(--ambient-energy));
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.08) 18%, transparent 34%),
    linear-gradient(90deg, transparent 36%, rgba(240, 201, 135, 0.08) 48%, transparent 60%),
    linear-gradient(90deg, transparent 64%, rgba(0, 184, 212, 0.08) 78%, transparent 92%);
  transform: translate3d(calc(var(--ambient-shift-x) * 0.35), calc(var(--ambient-scroll) * 28px), 0) scale(1.08);
}

body[data-ambient-section="hero"] .ambient-stage__layer--lagoon,
body[data-ambient-section="painel"] .ambient-stage__layer--lagoon,
body[data-ambient-section="cta-final"] .ambient-stage__layer--lagoon {
  opacity: calc(0.24 * var(--ambient-energy));
}

body[data-ambient-section="alma-buzios"] .ambient-stage__layer--sun,
body[data-ambient-section="cta-final"] .ambient-stage__layer--sun {
  opacity: calc(0.3 * var(--ambient-energy));
}

body[data-ambient-section="como-vender"] .ambient-stage__layer--flow,
body[data-ambient-section="funcoes-painel"] .ambient-stage__layer--flow {
  opacity: calc(0.28 * var(--ambient-energy));
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

ul {
  list-style: none;
}

.container {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 0 20px;
}

section[id] {
  scroll-margin-top: 92px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 14px 0;
  color: var(--white);
  transition: background 220ms ease, border-color 220ms ease, padding 220ms ease;
}

.navbar.is-scrolled {
  padding: 10px 0;
  background: rgba(8, 17, 20, 0.9);
  border-bottom: 1px solid var(--line-light);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
  letter-spacing: 0;
}

.brand__mark {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--paper);
  object-fit: contain;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar__link {
  display: none;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 700;
}

.navbar__link:hover {
  color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--lg {
  min-height: 52px;
  padding: 15px 22px;
}

.btn--primary {
  background: var(--lagoon);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(0, 184, 212, 0.28);
}

.btn--primary:hover {
  background: #24c8dc;
}

.btn--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.btn--secondary {
  color: var(--ink);
  background: var(--sun);
  box-shadow: 0 14px 34px rgba(212, 167, 106, 0.22);
}

.btn--whatsapp {
  color: var(--white);
  background: var(--leaf);
}

.navbar__cta {
  min-height: 40px;
  padding: 10px 14px;
  font-size: 0.86rem;
}

.mobile-sticky-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  display: none;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--lagoon);
  color: var(--ink);
  font-weight: 900;
  box-shadow: var(--shadow);
  transform: translateY(90px);
  transition: transform 220ms var(--ease);
}

body.show-sticky .mobile-sticky-cta {
  transform: translateY(0);
}

.hero {
  min-height: calc(100svh - 48px);
  padding: 112px 0 54px;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 18%, rgba(240, 201, 135, 0.16), transparent 24%),
    radial-gradient(circle at 84% 12%, rgba(0, 184, 212, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(0, 184, 212, 0.08) 0 1px, transparent 1px 26px),
    linear-gradient(180deg, rgba(11, 22, 26, 0.92) 0%, rgba(18, 52, 56, 0.84) 58%, rgba(31, 67, 71, 0.78) 100%);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  gap: 34px;
  align-items: center;
}

.hero__content {
  max-width: 680px;
}

.hero__support {
  display: grid;
  gap: 16px;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--lagoon);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow--warm {
  color: var(--sun-2);
}

.section--paper .eyebrow,
.manifesto .eyebrow {
  color: var(--lagoon-dark);
}

.section--paper .eyebrow--warm,
.section--ink .eyebrow--warm {
  color: var(--sun-2);
}

.hero__title {
  max-width: 720px;
  font-size: 2.6rem;
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 900;
}

.hero__title em {
  color: var(--sun-2);
  font-style: normal;
}

.hero__subtitle {
  max-width: 600px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.06rem;
}

.hero__actions {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.hero-jump {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.hero-jump__link {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.hero-jump__link:hover,
.hero-jump__link:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(240, 201, 135, 0.42);
  transform: translateY(-1px);
}

.hero-jump__index {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(240, 201, 135, 0.18);
  color: var(--sun-2);
  font-size: 0.78rem;
  font-weight: 900;
}

.hero-jump__label {
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0;
}

.choice-board {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(8, 17, 20, 0.34);
}

.choice-board__label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.choice-board__buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.choice-chip {
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.choice-chip.is-active,
.choice-chip:hover,
.choice-chip:focus-visible {
  color: var(--ink);
  background: var(--sun-2);
  border-color: rgba(240, 201, 135, 0.72);
  transform: translateY(-1px);
}

.choice-board__panel {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.choice-board__panel strong {
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1.08;
}

.choice-board__panel p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.94rem;
}

.choice-board__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.choice-board__steps span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.8rem;
  font-weight: 800;
  text-align: center;
}

.choice-board__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.choice-board__action {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.88rem;
  font-weight: 900;
}

.choice-board__action--warm {
  color: var(--ink);
  background: var(--sun-2);
  border-color: rgba(240, 201, 135, 0.72);
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.proof-row span,
.partner-types span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.86rem;
  font-weight: 800;
}

.hero__visual {
  width: 100%;
}

.hero-demo {
  width: 100%;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 24px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-demo--sunset {
  border-color: rgba(240, 201, 135, 0.26);
  background:
    linear-gradient(135deg, rgba(240, 201, 135, 0.14), transparent 44%),
    linear-gradient(225deg, rgba(0, 184, 212, 0.16), transparent 48%),
    rgba(255, 255, 255, 0.05);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.26),
    0 0 70px rgba(212, 167, 106, 0.14);
}

.sunset-window {
  min-height: 126px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 18px;
  border-bottom: 1px solid rgba(240, 201, 135, 0.22);
  background:
    radial-gradient(circle at 78% 20%, rgba(240, 201, 135, 0.72), transparent 18%),
    linear-gradient(120deg, rgba(0, 184, 212, 0.22), rgba(212, 167, 106, 0.3) 54%, rgba(242, 109, 91, 0.16)),
    linear-gradient(180deg, #102126, #081114);
  position: relative;
  overflow: hidden;
}

.sunset-window__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  filter: saturate(1.02) contrast(1.02);
}

.sunset-window::before,
.sunset-window::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  height: 1px;
  background: rgba(255, 255, 255, 0.24);
}

.sunset-window::before {
  bottom: 45px;
}

.sunset-window::after {
  bottom: 35px;
  opacity: 0.6;
}

.sunset-window span,
.sunset-window strong {
  position: relative;
  z-index: 1;
}

.sunset-window span {
  color: var(--sun-2);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.sunset-window strong {
  max-width: 390px;
  color: var(--white);
  font-size: 1.45rem;
  line-height: 1.08;
}

.media-strip {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line-light);
  background:
    linear-gradient(90deg, rgba(0, 184, 212, 0.22), rgba(212, 167, 106, 0.16)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  font-weight: 900;
}

.media-strip span {
  color: var(--white);
}

.journey {
  display: grid;
  gap: 16px;
  padding: 16px;
}

.journey__phone {
  min-height: 260px;
  padding: 14px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(8, 17, 20, 0.58);
  position: relative;
  overflow: hidden;
  transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease, background 260ms ease;
}

.journey__phone::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 4px solid transparent;
  transition: border-color 220ms ease;
}

.hero-demo[data-stage="0"] .journey__phone--tourist::before,
.hero-demo[data-stage="1"] .journey__phone--partner::before,
.hero-demo[data-stage="2"] .journey__phone--partner::before,
.hero-demo[data-stage="3"] .journey__phone--partner::before {
  border-color: var(--lagoon);
}

.phone-top,
.screen-bar {
  display: flex;
  gap: 5px;
  margin-bottom: 14px;
}

.phone-top span,
.screen-bar span {
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.34);
}

.tourist-card {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease, background 260ms ease;
}

.tourist-card__image {
  min-height: 70px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 72% 18%, rgba(240, 201, 135, 0.9), transparent 24%),
    linear-gradient(155deg, rgba(0, 184, 212, 0.82), rgba(16, 185, 129, 0.48)),
    linear-gradient(180deg, #eaf9fb, #6fd5df);
}

.tourist-card strong,
.panel-head strong,
.reservation-alert strong {
  display: block;
  line-height: 1.2;
}

.tourist-card small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.68);
}

.mini-list,
.panel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 12px 0;
}

.mini-list span,
.panel-grid span {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 900;
  transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease, background 260ms ease, color 260ms ease;
}

.fake-button {
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
  transition: box-shadow 260ms ease, transform 260ms ease, background 260ms ease, color 260ms ease, opacity 260ms ease;
}

.fake-button--confirm {
  background: var(--leaf);
  color: var(--white);
}

.flow-line {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.flow-dot {
  width: 42px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.18);
}

.hero-demo[data-stage="1"] .flow-dot:nth-child(1),
.hero-demo[data-stage="2"] .flow-dot:nth-child(1),
.hero-demo[data-stage="2"] .flow-dot:nth-child(2),
.hero-demo[data-stage="3"] .flow-dot {
  background: var(--lagoon);
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.reservation-alert {
  padding: 14px;
  border: 1px solid rgba(212, 167, 106, 0.38);
  border-radius: var(--radius);
  background: rgba(212, 167, 106, 0.12);
  transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease, background 260ms ease;
}

.reservation-alert span {
  display: block;
  color: var(--sun);
  font-size: 0.84rem;
  font-weight: 900;
}

.panel-grid {
  grid-template-columns: repeat(2, 1fr);
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 0 16px 16px;
}

.flow-step {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 900;
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease, transform 220ms ease, border-color 220ms ease;
}

.flow-step.is-active {
  background: var(--sun-2);
  color: var(--ink);
  border-color: rgba(240, 201, 135, 0.74);
  box-shadow: 0 10px 24px rgba(240, 201, 135, 0.24), 0 0 26px rgba(240, 201, 135, 0.2);
  transform: translateY(-2px) scale(1.02);
  animation: hero-step-pulse 2.2s ease-in-out both;
}

.hero-demo[data-stage="0"] .journey__phone--tourist {
  border-color: rgba(0, 184, 212, 0.48);
  background: rgba(8, 17, 20, 0.72);
  box-shadow: 0 18px 42px rgba(0, 184, 212, 0.18);
}

.hero-demo[data-stage="0"] .tourist-card,
.hero-demo[data-stage="0"] .fake-button {
  border-color: rgba(0, 184, 212, 0.48);
  box-shadow: 0 0 0 1px rgba(0, 184, 212, 0.16), 0 16px 34px rgba(0, 184, 212, 0.12);
  transform: translateY(-1px) scale(1.015);
}

.hero-demo[data-stage="0"] .tourist-card__image {
  box-shadow: 0 0 0 2px rgba(0, 184, 212, 0.2), 0 0 32px rgba(0, 184, 212, 0.2);
}

.hero-demo[data-stage="1"] .journey__phone--partner {
  border-color: rgba(0, 184, 212, 0.48);
  background: rgba(8, 17, 20, 0.72);
  box-shadow: 0 18px 42px rgba(0, 184, 212, 0.16);
}

.hero-demo[data-stage="1"] .reservation-alert {
  border-color: rgba(240, 201, 135, 0.78);
  background: rgba(240, 201, 135, 0.16);
  box-shadow: 0 0 0 1px rgba(240, 201, 135, 0.16), 0 16px 34px rgba(240, 201, 135, 0.12);
  transform: translateY(-1px) scale(1.012);
}

.hero-demo[data-stage="2"] .journey__phone--partner {
  border-color: rgba(16, 185, 129, 0.46);
  box-shadow: 0 18px 42px rgba(16, 185, 129, 0.14);
}

.hero-demo[data-stage="2"] .fake-button--confirm {
  box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.2), 0 18px 36px rgba(16, 185, 129, 0.22);
  transform: translateY(-1px) scale(1.02);
  filter: saturate(1.04);
}

.hero-demo[data-stage="3"] .journey__phone--partner {
  border-color: rgba(240, 201, 135, 0.44);
  box-shadow: 0 18px 42px rgba(240, 201, 135, 0.12);
}

.hero-demo[data-stage="3"] .panel-grid span:nth-child(2),
.hero-demo[data-stage="3"] .panel-grid span:nth-child(4) {
  background: rgba(240, 201, 135, 0.18);
  color: var(--white);
  box-shadow: 0 0 0 1px rgba(240, 201, 135, 0.14), 0 14px 30px rgba(240, 201, 135, 0.12);
  transform: translateY(-1px) scale(1.02);
}

@keyframes hero-step-pulse {
  0% {
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 rgba(240, 201, 135, 0);
  }

  25% {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 24px rgba(240, 201, 135, 0.24), 0 0 26px rgba(240, 201, 135, 0.2);
  }

  100% {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 24px rgba(240, 201, 135, 0.24), 0 0 26px rgba(240, 201, 135, 0.2);
  }
}

.section {
  padding: 64px 0;
}

.section--paper {
  background: rgba(246, 251, 252, 0.88);
  color: var(--ink);
}

.section--ink {
  position: relative;
  isolation: isolate;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 18%, rgba(240, 201, 135, 0.22), transparent 24%),
    radial-gradient(circle at 86% 14%, rgba(0, 184, 212, 0.16), transparent 28%),
    linear-gradient(90deg, rgba(11, 22, 26, 0.03) 0 1px, transparent 1px 28px),
    linear-gradient(180deg, rgba(236, 246, 247, 0.94) 0%, rgba(250, 246, 238, 0.92) 100%);
}

.section-header {
  max-width: 680px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-header h2,
.manifesto h2,
.cta-final h2 {
  font-size: 2rem;
  line-height: 1.1;
  letter-spacing: 0;
  font-weight: 900;
}

.section-header p:not(.eyebrow),
.manifesto p,
.cta-final p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 1rem;
}

.section--ink .section-header p:not(.eyebrow) {
  color: var(--muted);
}

.concept-strip {
  display: grid;
  gap: 12px;
}

.gain-grid {
  display: grid;
  gap: 12px;
}

.gain-card {
  min-height: 230px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(8, 17, 20, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.92), rgba(233, 245, 246, 0.86)),
    var(--white);
  box-shadow: 0 14px 36px rgba(8, 17, 20, 0.08);
  position: relative;
  overflow: hidden;
}

.gain-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -52px;
  top: -52px;
  border-radius: 50%;
  background: rgba(0, 184, 212, 0.12);
}

.gain-card--lead {
  color: var(--white);
  background:
    radial-gradient(circle at 88% 10%, rgba(240, 201, 135, 0.46), transparent 25%),
    linear-gradient(145deg, var(--ink-2), var(--ink));
}

.gain-card--warm {
  background:
    radial-gradient(circle at 88% 10%, rgba(240, 201, 135, 0.48), transparent 25%),
    linear-gradient(145deg, #fff7e8, var(--white));
}

.gain-card__number {
  width: 42px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--sun-2);
  font-weight: 900;
  position: relative;
  z-index: 1;
}

.gain-card h3 {
  max-width: 260px;
  font-size: 1.45rem;
  line-height: 1.08;
  font-weight: 900;
  position: relative;
  z-index: 1;
}

.gain-card p {
  color: var(--muted);
  position: relative;
  z-index: 1;
}

.gain-card--lead p {
  color: rgba(255, 255, 255, 0.72);
}

.gain-card strong {
  width: fit-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(0, 184, 212, 0.12);
  font-size: 0.82rem;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.gain-card--lead strong {
  color: var(--sun-2);
  background: rgba(255, 255, 255, 0.08);
}

.gain-guide {
  display: grid;
  gap: 12px;
}

.gain-guide__chips {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.gain-guide__chip {
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(8, 17, 20, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.gain-guide__chip.is-active,
.gain-guide__chip:hover,
.gain-guide__chip:focus-visible {
  color: var(--white);
  background: var(--ink);
  border-color: rgba(8, 17, 20, 0.72);
  transform: translateY(-1px);
}

.gain-guide__stage {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(8, 17, 20, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.92), rgba(233, 245, 246, 0.86)),
    var(--white);
  box-shadow: 0 14px 36px rgba(8, 17, 20, 0.08);
}

.gain-guide__visual {
  min-height: 150px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 16px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 84% 16%, rgba(240, 201, 135, 0.42), transparent 24%),
    linear-gradient(145deg, var(--ink-2), var(--ink));
}

.gain-guide__number {
  width: 42px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--sun-2);
  font-weight: 900;
}

.gain-guide__badge {
  width: fit-content;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: var(--radius);
  color: var(--sun-2);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gain-guide__lines {
  display: grid;
  gap: 8px;
  margin-top: 4px;
}

.gain-guide__lines span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.84rem;
  font-weight: 800;
  text-align: center;
}

.gain-guide__copy {
  display: grid;
  gap: 10px;
}

.gain-guide__copy h3 {
  font-size: 1.5rem;
  line-height: 1.06;
  font-weight: 900;
}

.gain-guide__copy p {
  color: var(--muted);
}

.gain-guide__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.gain-guide__nav {
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(8, 17, 20, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
  cursor: pointer;
}

.gain-guide__nav--warm {
  background: var(--sun-2);
  border-color: rgba(240, 201, 135, 0.72);
}

.concept,
.compare__side,
.timeline-step,
.signup-screen,
.panel-preview,
.feature-list article,
.sales-flow {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(8, 17, 20, 0.06);
}

.concept {
  padding: 20px;
}

.concept__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 34px;
  margin-bottom: 20px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--lagoon);
  font-weight: 900;
}

.concept h3,
.timeline-step h3,
.feature-list h3,
.sales-flow strong {
  font-size: 1.05rem;
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 900;
}

.concept p,
.timeline-step p,
.feature-list p {
  margin-top: 8px;
  color: var(--muted);
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 22px;
}

.stat {
  padding: 18px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-2);
  text-align: center;
}

.stat__number {
  display: block;
  font-size: clamp(1.3rem, 5vw, 2rem);
  line-height: 1;
  color: var(--lagoon-dark);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.stat span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.compare {
  display: grid;
  gap: 14px;
}

.before-after {
  display: grid;
  gap: 16px;
}

.before-after__side {
  display: grid;
  grid-template-rows: minmax(210px, auto) 1fr;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.before-after__side--after {
  border-color: rgba(240, 201, 135, 0.38);
  background: rgba(240, 201, 135, 0.08);
}

.before-after__visual {
  min-height: 230px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    var(--ink);
}

.before-after__visual--mess::before {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 18px),
    rgba(255, 255, 255, 0.04);
}

.before-after__visual--mess span {
  position: absolute;
  left: 44px;
  right: 44px;
  min-height: 32px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.before-after__visual--mess span:nth-child(1) {
  top: 48px;
  right: 96px;
}

.before-after__visual--mess span:nth-child(2) {
  top: 88px;
  left: 86px;
  background: rgba(242, 109, 91, 0.18);
}

.before-after__visual--mess span:nth-child(3) {
  top: 128px;
  right: 70px;
}

.before-after__visual--mess span:nth-child(4) {
  top: 168px;
  left: 58px;
  background: rgba(212, 167, 106, 0.18);
}

.before-after__visual--mess span:nth-child(5) {
  width: 56px;
  height: 56px;
  min-height: 56px;
  left: auto;
  right: 48px;
  top: 74px;
  border-radius: 50%;
  background: rgba(242, 109, 91, 0.28);
}

.before-after__visual--calm {
  display: grid;
  gap: 12px;
  align-content: center;
  padding: 26px;
  background:
    radial-gradient(circle at 86% 14%, rgba(240, 201, 135, 0.62), transparent 22%),
    linear-gradient(135deg, rgba(0, 184, 212, 0.14), rgba(212, 167, 106, 0.12)),
    var(--ink);
}

.calm-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
  padding: 16px;
  border: 1px solid rgba(240, 201, 135, 0.3);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.calm-panel strong {
  color: var(--white);
}

.calm-panel span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--sun-2);
  font-weight: 900;
}

.calm-panel--money span {
  background: var(--leaf);
  color: var(--white);
}

.before-after__body {
  padding: 22px;
}

.before-after__body h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1.45rem;
  line-height: 1.1;
  font-weight: 900;
}

.before-after__body li {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.before-after__body li::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 8px;
  background: var(--coral);
}

.before-after__side--after li::before {
  background: var(--sun-2);
}

.before-after__body li:last-child {
  border-bottom: 0;
}

.compare__side {
  padding: 20px;
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line-light);
  box-shadow: none;
}

.compare__side--after {
  border-color: rgba(0, 184, 212, 0.42);
  background: rgba(0, 184, 212, 0.1);
}

.compare__label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 9px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 900;
}

.compare__side li {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.compare__side li::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 8px;
  background: var(--coral);
}

.compare__side--after li::before {
  background: var(--leaf);
}

.compare__side li:last-child {
  border-bottom: 0;
}

.signup-layout {
  display: grid;
  gap: 16px;
}

.signup-timeline {
  display: grid;
  gap: 10px;
}

.timeline-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  cursor: default;
  transition: border-color 180ms ease, transform 180ms ease;
}

.timeline-step.is-active {
  border-color: var(--lagoon);
  transform: translateX(2px);
}

.timeline-step span {
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--lagoon);
  font-weight: 900;
}

.signup-screen {
  min-height: 310px;
  padding: 18px;
  background:
    linear-gradient(90deg, rgba(0, 184, 212, 0.08) 0 1px, transparent 1px 22px),
    var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.signup-shot {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(212, 167, 106, 0.34);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 86% 12%, rgba(240, 201, 135, 0.2), transparent 24%),
    linear-gradient(135deg, var(--ink), var(--ink-2));
  box-shadow: var(--shadow-soft);
  color: var(--white);
}

.signup-shot__media {
  display: block;
  width: 100%;
  height: clamp(300px, 52vw, 460px);
  overflow: hidden;
  border-radius: calc(var(--radius) - 1px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.signup-shot__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.signup-shot__caption {
  display: grid;
  gap: 6px;
}

.signup-shot__caption span {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 6px 10px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--sun-2);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.signup-shot__caption strong {
  color: var(--white);
  font-size: 1.02rem;
  line-height: 1.2;
}

.signup-screen__stage {
  display: none;
  min-height: 226px;
  align-content: center;
  padding: 24px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.signup-screen__stage.is-active {
  display: grid;
  animation: fade-in 260ms var(--ease);
}

.signup-screen__stage strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1.1;
}

.signup-screen__stage p {
  margin-top: 10px;
  color: var(--muted-dark);
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.panel-showcase {
  display: grid;
  gap: 16px;
}

.panel-preview,
.feature-list article {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line-light);
  box-shadow: none;
}

.panel-preview {
  padding: 18px;
}

.panel-preview__top,
.panel-preview__alert {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.panel-preview__top {
  color: var(--muted-dark);
  font-weight: 800;
}

.panel-preview__top strong {
  color: var(--lagoon);
}

.panel-preview__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 18px 0;
}

.panel-preview__metrics span {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-weight: 900;
  text-align: center;
}

.panel-preview__alert {
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(212, 167, 106, 0.14);
  border: 1px solid rgba(212, 167, 106, 0.34);
}

.panel-preview__alert span {
  color: var(--sun);
  font-weight: 900;
}

.panel-preview__bars {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 108px;
  margin-top: 18px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-preview__bars span {
  flex: 1;
  min-height: 28px;
  border-radius: 6px 6px 0 0;
  background: var(--lagoon);
}

.panel-preview__bars span:nth-child(1) {
  height: 36%;
}

.panel-preview__bars span:nth-child(2) {
  height: 58%;
  background: var(--leaf);
}

.panel-preview__bars span:nth-child(3) {
  height: 76%;
  background: var(--sun);
}

.panel-preview__bars span:nth-child(4) {
  height: 92%;
}

.feature-list {
  display: grid;
  gap: 10px;
}

.feature-list article {
  padding: 18px;
}

.feature-list p {
  color: var(--muted-dark);
}

.sales-flows {
  display: grid;
  gap: 12px;
}

.section--flow {
  background:
    linear-gradient(180deg, var(--paper), #eef8f8);
}

.sale-journey {
  display: grid;
  gap: 16px;
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(8, 17, 20, 0.08);
}

.sale-journey__visual {
  display: grid;
  gap: 8px;
}

.sale-journey__visual span {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper-2);
  font-weight: 900;
  position: relative;
}

.sale-journey__visual span:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 50%;
  width: 2px;
  height: 6px;
  background: var(--sun);
}

.sale-journey__visual span:nth-child(4),
.sale-journey__visual span:nth-child(5) {
  color: var(--white);
  background: var(--ink);
}

.sale-journey__copy {
  align-content: center;
}

.sale-journey__copy h3 {
  font-size: 1.45rem;
  line-height: 1.1;
  font-weight: 900;
}

.sale-journey__copy p {
  margin-top: 10px;
  color: var(--muted);
}

.sales-flow {
  padding: 18px;
}

.sales-flow--sun {
  background:
    radial-gradient(circle at 88% 10%, rgba(240, 201, 135, 0.38), transparent 25%),
    var(--white);
}

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

.sales-flow__steps span {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--paper-2);
  color: var(--ink-2);
  font-size: 0.9rem;
  font-weight: 900;
}

.manifesto {
  padding: 72px 0;
  background:
    linear-gradient(135deg, rgba(0, 184, 212, 0.1) 0 1px, transparent 1px 24px),
    var(--white);
}

.section--panel {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 82% 18%, rgba(240, 201, 135, 0.24), transparent 26%),
    radial-gradient(circle at 12% 24%, rgba(0, 184, 212, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(232, 244, 245, 0.96), rgba(245, 249, 241, 0.94));
}

.panel-immersive {
  display: grid;
  gap: 16px;
}

.live-panel {
  padding: 18px;
  border: 1px solid rgba(8, 17, 20, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(237, 247, 248, 0.9)),
    var(--white);
  box-shadow: 0 18px 40px rgba(8, 17, 20, 0.08), 0 0 44px rgba(212, 167, 106, 0.08);
}

.live-panel--shot {
  display: grid;
  gap: 14px;
  overflow: hidden;
}

.live-panel__media {
  display: block;
  width: 100%;
  height: clamp(280px, 36vw, 420px);
  border-radius: calc(var(--radius) - 1px);
  overflow: hidden;
  border: 1px solid rgba(8, 17, 20, 0.08);
  background: rgba(8, 17, 20, 0.04);
}

.live-panel__shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.live-panel__caption {
  display: grid;
  gap: 6px;
}

.live-panel__caption span {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 6px 10px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--sun-2);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.live-panel__caption strong {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.2;
}

.live-panel__top,
.live-panel__alert {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.live-panel__top {
  color: var(--muted-dark);
  font-weight: 800;
}

.live-panel__top strong {
  color: var(--sun-2);
}

.live-panel__grid {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.live-panel__grid article,
.panel-emotion article {
  padding: 16px;
  border: 1px solid rgba(8, 17, 20, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
}

.live-panel__grid span,
.panel-emotion span {
  display: block;
  margin-bottom: 6px;
  color: var(--sun-2);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.live-panel__grid strong,
.panel-emotion strong {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.2;
}

.live-panel__alert {
  padding: 16px;
  border: 1px solid rgba(240, 201, 135, 0.42);
  border-radius: var(--radius);
  background: rgba(240, 201, 135, 0.18);
}

.live-panel__alert span {
  color: var(--sun-2);
  font-weight: 900;
}

.live-panel__alert strong {
  color: var(--ink);
}

.live-panel__bars {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 128px;
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.live-panel__bars span {
  flex: 1;
  min-height: 28px;
  border-radius: 6px 6px 0 0;
  background: var(--lagoon);
  box-shadow: 0 0 18px rgba(0, 184, 212, 0.24);
}

.live-panel__bars span:nth-child(1) {
  height: 38%;
}

.live-panel__bars span:nth-child(2) {
  height: 64%;
  background: var(--sun-2);
  box-shadow: 0 0 18px rgba(240, 201, 135, 0.24);
}

.live-panel__bars span:nth-child(3) {
  height: 48%;
}

.live-panel__bars span:nth-child(4) {
  height: 84%;
  background: var(--leaf);
}

.live-panel__bars span:nth-child(5) {
  height: 72%;
}

.panel-emotion {
  display: grid;
  gap: 10px;
}

.feature-console {
  display: grid;
  gap: 14px;
}

.feature-console__menu {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.panel-feature-button {
  min-height: 46px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.panel-feature-button.is-active {
  color: var(--ink);
  background: var(--sun-2);
  border-color: rgba(212, 167, 106, 0.5);
}

.feature-console__screen {
  min-height: 0;
  display: grid;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 184, 212, 0.08), rgba(240, 201, 135, 0.14)),
    var(--white);
  box-shadow: 0 14px 36px rgba(8, 17, 20, 0.08);
  overflow: hidden;
}

.panel-feature {
  display: none;
  padding: 24px;
}

.panel-feature.is-active {
  display: grid;
  animation: fade-in 240ms var(--ease);
}

.panel-feature__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
  align-items: center;
}

.panel-feature__media {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(8, 17, 20, 0.08);
  background: linear-gradient(180deg, #12343b, #0c1e23);
  aspect-ratio: 16 / 10;
}

.panel-feature__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(8, 17, 20, 0.28));
  pointer-events: none;
}

.panel-feature__media img,
.panel-feature__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.panel-feature__content {
  display: grid;
  gap: 12px;
}

.panel-feature__eyebrow {
  color: var(--lagoon-dark);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.panel-feature__content h3 {
  max-width: 560px;
  font-size: 2rem;
  line-height: 1.08;
  font-weight: 900;
}

.panel-feature__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.panel-feature__steps li {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border: 1px solid rgba(8, 17, 20, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 900;
  text-align: center;
}

.panel-feature__summary {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.panel-feature__example {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.panel-feature__example span,
.panel-feature__example strong {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 12px;
  text-align: center;
  font-size: 0.84rem;
  line-height: 1.25;
}

.panel-feature__example span {
  border: 1px solid rgba(8, 17, 20, 0.08);
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-weight: 800;
}

.panel-feature__example strong {
  background: rgba(240, 201, 135, 0.22);
  color: var(--ink);
  border: 1px solid rgba(240, 201, 135, 0.5);
  font-weight: 900;
}

.panel-feature__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.panel-feature__action {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid rgba(8, 17, 20, 0.1);
  border-radius: var(--radius);
  background: var(--sun-2);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
  cursor: pointer;
}

.panel-feature__action--ghost {
  background: rgba(255, 255, 255, 0.72);
}

.panel-feature__action:focus-visible {
  outline: 3px solid rgba(0, 184, 212, 0.28);
  outline-offset: 2px;
}

.section--sand {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.92), rgba(246, 251, 252, 0.84));
}

.signup-layout--warm .timeline-step.is-active {
  border-color: rgba(212, 167, 106, 0.55);
}

.signup-layout--warm .timeline-step span {
  background: var(--sun-2);
  color: var(--ink);
}

.signup-screen--sun {
  background:
    radial-gradient(circle at 88% 12%, rgba(240, 201, 135, 0.46), transparent 26%),
    linear-gradient(135deg, var(--ink), var(--ink-2));
}

.local-grid {
  display: grid;
  gap: 12px;
}

.local-grid article {
  min-height: 150px;
  display: grid;
  align-content: space-between;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(8, 17, 20, 0.06);
}

.local-grid span {
  color: var(--lagoon-dark);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.local-grid strong {
  font-size: 1.16rem;
  line-height: 1.2;
}

.partner-types--local {
  margin-top: 18px;
}

.partner-types--local span {
  background: var(--ink);
  color: var(--white);
  border-color: transparent;
}

.alma {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(240, 201, 135, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(8, 17, 20, 0.88), rgba(16, 33, 38, 0.84));
  overflow: hidden;
}

.alma__grid {
  display: grid;
  gap: 22px;
  align-items: center;
}

.alma__media {
  display: grid;
  gap: 12px;
}

.alma__media-frame {
  min-height: 360px;
  border: 1px solid rgba(240, 201, 135, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    var(--ink);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.alma__media-frame::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 170px;
  height: 132px;
  pointer-events: none;
  background: radial-gradient(circle at 100% 100%, rgba(8, 17, 20, 0.78) 0%, rgba(8, 17, 20, 0.46) 34%, transparent 72%);
}

.alma__media-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background: var(--ink);
  opacity: 0;
  transform: scale(1.08);
  transform-origin: center center;
  transition: opacity 260ms ease;
}

.alma__media-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 10px;
  max-width: 420px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(8, 17, 20, 0.44);
  backdrop-filter: blur(14px);
}

.alma__media-tag {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(240, 201, 135, 0.96);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.alma__media-overlay strong {
  color: var(--white);
  font-size: 1.08rem;
  line-height: 1.15;
}

.alma__media-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.alma__media-pills span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 800;
}

.alma__media-scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 18%, rgba(240, 201, 135, 0.86), transparent 16%),
    linear-gradient(180deg, rgba(0, 184, 212, 0.24) 0%, rgba(23, 64, 74, 0.58) 48%, rgba(8, 17, 20, 0.96) 100%),
    linear-gradient(135deg, #17404a, #102126);
  transition: opacity 260ms ease, transform 260ms ease;
}

.alma__media-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 26px),
    linear-gradient(180deg, transparent 0%, rgba(8, 17, 20, 0.34) 78%);
}

.alma__media-sun {
  position: absolute;
  width: 82px;
  height: 82px;
  top: 52px;
  right: 54px;
  border-radius: 50%;
  background: rgba(240, 201, 135, 0.72);
  box-shadow: 0 0 60px rgba(240, 201, 135, 0.45);
}

.alma__media-line {
  position: absolute;
  left: 28px;
  right: 28px;
  height: 2px;
  background: rgba(255, 255, 255, 0.26);
}

.alma__media-line:nth-child(2) {
  bottom: 118px;
}

.alma__media-line:nth-child(3) {
  bottom: 100px;
  opacity: 0.62;
}

.alma__media-boat {
  position: absolute;
  left: 44px;
  bottom: 102px;
  width: 104px;
  height: 22px;
  border-radius: 0 0 42px 42px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.22);
}

.alma__media-boat::before {
  content: "";
  position: absolute;
  left: 42px;
  bottom: 22px;
  width: 2px;
  height: 56px;
  background: rgba(255, 255, 255, 0.72);
}

.alma__media-boat::after {
  content: "";
  position: absolute;
  left: 44px;
  bottom: 34px;
  width: 42px;
  height: 46px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: rgba(240, 201, 135, 0.74);
}

.alma__media-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 78px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(240, 201, 135, 0.48);
  border-radius: 50%;
  background: rgba(8, 17, 20, 0.62);
  color: inherit;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transform: translate(-50%, -50%);
  transition: opacity 220ms ease, transform 220ms ease, background 220ms ease;
}

.alma__media-play:hover,
.alma__media-play:focus-visible {
  background: rgba(8, 17, 20, 0.78);
  transform: translate(-50%, -50%) scale(1.04);
}

.alma__media-play:focus-visible {
  outline: 2px solid rgba(240, 201, 135, 0.88);
  outline-offset: 4px;
}

.alma__media-frame.is-ready .alma__media-video {
  opacity: 1;
}

.alma__media-frame.is-ready .alma__media-scene {
  opacity: 0.16;
}

.alma__media-frame.is-playing .alma__media-scene {
  opacity: 0.08;
  transform: scale(1.02);
}

.alma__media-frame.is-playing .alma__media-play {
  opacity: 0;
  pointer-events: none;
}

.alma__media-play span {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid var(--sun-2);
}

.alma__copy h2 {
  font-size: 2.2rem;
  line-height: 1.08;
  font-weight: 900;
}

.alma__copy p {
  margin-top: 14px;
  color: var(--muted-dark);
  font-size: 1.05rem;
}

.alma__quote {
  display: grid;
  gap: 8px;
  margin-top: 20px;
  padding: 18px;
  border: 1px solid rgba(240, 201, 135, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.alma__quote strong {
  color: var(--white);
  line-height: 1.25;
}

.alma__quote span {
  color: var(--sun-2);
  font-weight: 800;
}

.faq-list {
  max-width: 840px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(8, 17, 20, 0.05);
}

.faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 16px;
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  padding: 0 16px 16px;
  color: var(--muted);
}

.proof-materials {
  display: grid;
  gap: 12px;
}

.proof-materials article {
  min-height: 190px;
  display: grid;
  align-content: space-between;
  padding: 18px;
  border: 1px dashed rgba(240, 201, 135, 0.35);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.proof-materials span {
  width: 42px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--sun-2);
  color: var(--ink);
  font-weight: 900;
}

.proof-materials h3 {
  color: var(--white);
  font-size: 1.25rem;
}

.proof-materials p {
  color: var(--muted-dark);
}

.cta-final--power {
  background:
    radial-gradient(circle at 14% 16%, rgba(240, 201, 135, 0.26), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(0, 184, 212, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(251, 246, 237, 0.96), rgba(235, 245, 246, 0.94));
}

.manifesto__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.partner-types {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 26px;
}

.partner-types span {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--line);
}

.cta-final {
  padding: 78px 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 18%, rgba(240, 201, 135, 0.2), transparent 24%),
    radial-gradient(circle at 84% 16%, rgba(0, 184, 212, 0.12), transparent 30%),
    linear-gradient(90deg, rgba(11, 22, 26, 0.03) 0 1px, transparent 1px 28px),
    linear-gradient(180deg, rgba(251, 246, 237, 0.96), rgba(235, 245, 246, 0.94));
}

.cta-final__inner {
  max-width: 760px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero,
.alma,
.cta-final {
  position: relative;
  isolation: isolate;
}

.hero > .container,
.section--ink > .container,
.section--panel > .container,
.alma > .container,
.cta-final > .container {
  position: relative;
  z-index: 2;
}

.section-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.section-atmosphere::before,
.section-atmosphere::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.section-atmosphere::before {
  inset: -14% auto auto -10%;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(240, 201, 135, 0.24) 0%, rgba(240, 201, 135, 0.06) 42%, transparent 72%);
  filter: blur(18px);
  opacity: 0.9;
}

.section-atmosphere::after {
  inset: auto -8% -16% auto;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(0, 184, 212, 0.2) 0%, rgba(0, 184, 212, 0.06) 42%, transparent 74%);
  filter: blur(24px);
  opacity: 0.9;
}

.section-atmosphere__chip {
  display: none;
}

.section-atmosphere__chip::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.08));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.section-atmosphere__chip--warm::before {
  background: radial-gradient(circle at 35% 35%, rgba(255, 243, 220, 0.96), rgba(240, 201, 135, 0.28));
}

.section-atmosphere__chip--lagoon::before {
  background: radial-gradient(circle at 35% 35%, rgba(224, 252, 255, 0.96), rgba(0, 184, 212, 0.28));
}

.section-atmosphere__chip--leaf::before {
  background: radial-gradient(circle at 35% 35%, rgba(232, 255, 241, 0.96), rgba(16, 185, 129, 0.28));
}

.section-atmosphere__chip--mist::before {
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.96), rgba(203, 213, 225, 0.32));
}

.section-atmosphere--compare .section-atmosphere__chip:nth-child(1) {
  top: 86px;
  right: 8%;
}

.section-atmosphere--compare .section-atmosphere__chip:nth-child(2) {
  top: 154px;
  left: 7%;
  animation-delay: -2.8s;
}

.section-atmosphere--compare .section-atmosphere__chip:nth-child(3) {
  bottom: 124px;
  right: 16%;
  animation-delay: -5.2s;
}

.section-atmosphere--compare .section-atmosphere__chip:nth-child(4) {
  bottom: 76px;
  left: 12%;
  animation-delay: -7.4s;
}

.section-atmosphere--panel::after {
  inset: 14% -4% 12% 50%;
  width: auto;
  height: auto;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(11, 23, 26, 0.18), rgba(11, 23, 26, 0.54)),
    url('assets/screenshots/tour-painel-desktop.webp') top center / cover no-repeat;
  filter: saturate(0.88) contrast(1.02);
  opacity: 0.1;
}

.section-atmosphere--panel .section-atmosphere__chip:nth-child(1) {
  top: 88px;
  right: 12%;
}

.section-atmosphere--panel .section-atmosphere__chip:nth-child(2) {
  top: 152px;
  left: 8%;
  animation-delay: -2.4s;
}

.section-atmosphere--panel .section-atmosphere__chip:nth-child(3) {
  bottom: 110px;
  right: 18%;
  animation-delay: -4.8s;
}

.section-atmosphere--panel .section-atmosphere__chip:nth-child(4) {
  bottom: 64px;
  left: 14%;
  animation-delay: -6.6s;
}

.section-atmosphere--proof::after {
  inset: 18% 48% 14% -4%;
  width: auto;
  height: auto;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(11, 23, 26, 0.14), rgba(11, 23, 26, 0.5)),
    url('assets/screenshots/cadastro-parceiro-publico-desktop.webp') top center / cover no-repeat;
  filter: saturate(0.84) contrast(1.02);
  opacity: 0.09;
}

.section-atmosphere--proof .section-atmosphere__chip:nth-child(1) {
  top: 86px;
  left: 10%;
}

.section-atmosphere--proof .section-atmosphere__chip:nth-child(2) {
  top: 148px;
  right: 10%;
  animation-delay: -2.6s;
}

.section-atmosphere--proof .section-atmosphere__chip:nth-child(3) {
  bottom: 72px;
  right: 18%;
  animation-delay: -5.1s;
}

.section-atmosphere--cta .section-atmosphere__chip:nth-child(1) {
  top: 74px;
  left: 10%;
}

.section-atmosphere--cta .section-atmosphere__chip:nth-child(2) {
  top: 136px;
  right: 12%;
  animation-delay: -2.2s;
}

.section-atmosphere--cta .section-atmosphere__chip:nth-child(3) {
  bottom: 92px;
  left: 18%;
  animation-delay: -4.6s;
}

.section-atmosphere--cta .section-atmosphere__chip:nth-child(4) {
  bottom: 54px;
  right: 16%;
  animation-delay: -6.2s;
}

@keyframes atmosphere-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -8px, 0);
  }
}

.cta-final p {
  color: var(--muted-dark);
}

.cta-final__actions {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.legal-note {
  font-size: 0.9rem;
  font-weight: 800;
}

.footer {
  padding: 30px 0 86px;
  color: var(--muted);
  background: rgba(246, 251, 252, 0.88);
  border-top: 1px solid var(--line);
}

.footer__inner {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.brand--footer {
  color: var(--ink);
}

.footer a:not(.brand) {
  color: var(--lagoon-dark);
  font-weight: 800;
}

.reveal,
.reveal-children > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms var(--ease), transform 520ms var(--ease);
}

.reveal.is-visible,
.reveal-children.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-children.is-visible > *:nth-child(2) {
  transition-delay: 70ms;
}

.reveal-children.is-visible > *:nth-child(3) {
  transition-delay: 140ms;
}

.reveal-children.is-visible > *:nth-child(4) {
  transition-delay: 210ms;
}

.reveal-children.is-visible > *:nth-child(5) {
  transition-delay: 280ms;
}

.reveal-children.is-visible > *:nth-child(6) {
  transition-delay: 350ms;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (min-width: 520px) {
  .hero__actions,
  .cta-final__actions {
    display: flex;
    flex-wrap: wrap;
  }

  .hero__actions .btn,
  .cta-final__actions .btn,
  .hero-jump__link {
    width: auto;
  }

  .hero-jump {
    display: flex;
    flex-wrap: wrap;
  }

  .choice-board__buttons,
  .gain-guide__chips {
    display: flex;
    flex-wrap: wrap;
  }

  .choice-chip,
  .gain-guide__chip {
    width: auto;
  }

  .stats-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 720px) {
  .navbar__link {
    display: inline-flex;
  }

  .hero__title {
    font-size: 3.7rem;
  }

  .section-header h2,
  .manifesto h2,
  .cta-final h2 {
    font-size: 2.8rem;
  }

  .concept-strip,
  .sales-flows {
    grid-template-columns: repeat(3, 1fr);
  }

  .gain-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .gain-card--lead,
  .gain-card--warm {
    grid-column: span 2;
  }

  .compare {
    grid-template-columns: repeat(2, 1fr);
  }

  .before-after {
    grid-template-columns: repeat(2, 1fr);
  }

  .sale-journey {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    padding: 22px;
  }

  .sale-journey__visual {
    grid-template-columns: repeat(5, 1fr);
  }

  .sale-journey__visual span:not(:last-child)::after {
    top: 50%;
    bottom: auto;
    left: auto;
    right: -7px;
    width: 6px;
    height: 2px;
  }

  .signup-layout,
  .panel-showcase {
    grid-template-columns: 0.86fr 1.14fr;
    align-items: center;
  }

  .panel-showcase {
    grid-template-columns: 1.12fr 0.88fr;
  }

  .panel-immersive {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
  }

  .panel-emotion {
    align-content: stretch;
  }

  .panel-emotion article {
    display: grid;
    align-content: center;
  }

  .live-panel__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .local-grid,
  .proof-materials {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .flow-line {
    width: 50px;
    flex-direction: column;
    align-items: center;
  }

  .flow-dot {
    width: 4px;
    height: 42px;
  }

  .flow-steps {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer {
    padding-bottom: 30px;
  }
}

@media (min-width: 980px) {
  .container {
    padding: 0 28px;
  }

  .hero {
    padding: 126px 0 76px;
  }

  .hero__grid {
    grid-template-columns: 0.92fr 1.08fr;
    gap: 42px;
    align-items: start;
  }

  .hero__content {
    grid-column: 1;
    grid-row: 1;
  }

  .hero__visual {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .hero__support {
    grid-column: 1;
    grid-row: 2;
    max-width: 680px;
  }

  .hero__title {
    font-size: 4.25rem;
  }

  .hero__subtitle {
    font-size: 1.15rem;
  }

  .gain-grid {
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  }

  .gain-guide__stage {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: stretch;
  }

  .gain-card--lead,
  .gain-card--warm {
    grid-column: span 1;
  }

  .section {
    padding: 96px 0;
  }

  .feature-console {
    grid-template-columns: 250px 1fr;
    align-items: stretch;
  }

  .feature-console__menu {
    grid-template-columns: 1fr;
    align-content: start;
  }

  .feature-console__screen {
    min-height: 420px;
  }

  .panel-feature {
    padding: 40px;
  }

  .panel-feature__content h3 {
    font-size: 2.45rem;
  }

  .alma__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 46px;
  }

  .local-grid,
  .proof-materials {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 519px) {
  .hero {
    min-height: auto;
    padding: 78px 0 24px;
  }

  .hero__grid {
    gap: 18px;
  }

  .hero__content {
    display: grid;
    gap: 12px;
  }

  .hero__support {
    gap: 12px;
  }

  .hero__actions {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 0;
  }

  .hero__actions .btn {
    width: 100%;
    min-height: 46px;
    padding: 11px 12px;
    font-size: 0.9rem;
    white-space: normal;
  }

  .proof-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 0;
  }

  .proof-row span {
    min-height: 36px;
    justify-content: center;
    padding: 7px 9px;
    font-size: 0.74rem;
    text-align: center;
  }

  .hero-jump {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 0;
    overflow: visible;
  }

  .hero-jump__link {
    min-width: 0;
    min-height: 42px;
    padding: 8px 10px;
    gap: 8px;
  }

  .hero-jump__index {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
    font-size: 0.72rem;
  }

  .hero-jump__label {
    font-size: 0.8rem;
  }

  .brand span {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .navbar__cta {
    min-width: 116px;
  }

  .section-cta .btn,
  .cta-final__actions .btn {
    width: 100%;
  }

  .section-atmosphere::before {
    width: 220px;
    height: 220px;
    inset: -10% auto auto -18%;
  }

  .section-atmosphere::after {
    width: 220px;
    height: 220px;
    inset: auto -18% -14% auto;
  }

  .section-atmosphere__chip {
    min-height: 32px;
    gap: 8px;
    padding: 7px 10px;
    font-size: 0.66rem;
  }

  .section-atmosphere__chip::before {
    width: 12px;
    height: 12px;
  }

  .section-atmosphere--compare .section-atmosphere__chip:nth-child(1) {
    top: 86px;
    right: 4%;
  }

  .section-atmosphere--compare .section-atmosphere__chip:nth-child(2) {
    top: 144px;
    left: 4%;
  }

  .section-atmosphere--compare .section-atmosphere__chip:nth-child(3) {
    bottom: 82px;
    right: 10%;
  }

  .section-atmosphere--compare .section-atmosphere__chip:nth-child(4) {
    display: none;
  }

  .section-atmosphere--panel::after {
    inset: auto -10% 10% 34%;
    opacity: 0.08;
  }

  .section-atmosphere--panel .section-atmosphere__chip:nth-child(1) {
    top: 82px;
    right: 6%;
  }

  .section-atmosphere--panel .section-atmosphere__chip:nth-child(2) {
    top: 136px;
    left: 4%;
  }

  .section-atmosphere--panel .section-atmosphere__chip:nth-child(3) {
    bottom: 74px;
    right: 10%;
  }

  .section-atmosphere--panel .section-atmosphere__chip:nth-child(4) {
    display: none;
  }

  .section-atmosphere--proof::after {
    inset: auto 34% 12% -10%;
    opacity: 0.07;
  }

  .section-atmosphere--proof .section-atmosphere__chip:nth-child(1) {
    top: 86px;
    left: 4%;
  }

  .section-atmosphere--proof .section-atmosphere__chip:nth-child(2) {
    top: 138px;
    right: 6%;
  }

  .section-atmosphere--proof .section-atmosphere__chip:nth-child(3) {
    bottom: 70px;
    right: 10%;
  }

  .section-atmosphere--cta .section-atmosphere__chip:nth-child(1) {
    top: 72px;
    left: 4%;
  }

  .section-atmosphere--cta .section-atmosphere__chip:nth-child(2) {
    top: 126px;
    right: 6%;
  }

  .section-atmosphere--cta .section-atmosphere__chip:nth-child(3) {
    bottom: 68px;
    left: 10%;
  }

  .section-atmosphere--cta .section-atmosphere__chip:nth-child(4) {
    display: none;
  }

  .media-strip {
    min-height: 40px;
    padding: 10px 12px;
    font-size: 0.88rem;
  }

  .sunset-window {
    min-height: 74px;
    padding: 12px;
  }

  .sunset-window__video {
    opacity: 0.64;
  }

  .sunset-window span {
    font-size: 0.68rem;
  }

  .sunset-window strong {
    max-width: 270px;
    font-size: 1rem;
  }

  .sunset-window::before,
  .sunset-window::after {
    left: 12px;
    right: 12px;
  }

  .sunset-window::before {
    bottom: 32px;
  }

  .sunset-window::after {
    bottom: 24px;
  }

  .choice-board {
    margin-top: 0;
    padding: 12px;
    gap: 10px;
  }

  .choice-board__label {
    display: block;
    font-size: 0.72rem;
  }

  .choice-board__buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .choice-chip {
    min-height: 42px;
    padding: 8px 10px;
    font-size: 0.82rem;
  }

  .choice-board__panel {
    gap: 10px;
    padding: 12px;
  }

  .choice-board__panel strong {
    font-size: 1rem;
  }

  .choice-board__panel p {
    font-size: 0.88rem;
  }

  .choice-board__steps {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .choice-board__steps span {
    min-height: 36px;
    justify-content: flex-start;
    padding: 8px 10px;
    font-size: 0.76rem;
  }

  .choice-board__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .journey {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    overflow: visible;
    padding: 10px;
  }

  .journey__phone {
    min-height: 148px;
    padding: 10px;
  }

  .phone-top {
    margin-bottom: 8px;
  }

  .tourist-card {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 8px;
  }

  .tourist-card__image {
    min-height: 40px;
  }

  .flow-steps {
    gap: 6px;
    padding: 0 10px 10px;
  }

  .flow-step {
    min-height: 34px;
    padding: 6px 8px;
    font-size: 0.72rem;
  }

  .tourist-card small {
    display: none;
  }

  .mini-list,
  .panel-grid {
    gap: 5px;
    margin: 8px 0;
  }

  .mini-list span,
  .panel-grid span {
    min-height: 28px;
    font-size: 0.7rem;
  }

  .panel-head {
    align-items: start;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 8px;
    font-size: 0.74rem;
  }

  .reservation-alert {
    padding: 8px;
  }

  .reservation-alert strong {
    font-size: 0.8rem;
  }

  .fake-button {
    min-height: 34px;
    font-size: 0.78rem;
  }

  .flow-line {
    display: none;
  }

  .flow-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    padding: 0 10px 10px;
  }

  .flow-step {
    min-height: 32px;
    padding: 6px 8px;
    font-size: 0.68rem;
    line-height: 1.1;
    text-align: center;
  }

  .mobile-sticky-cta {
    display: flex;
  }

  .hero__title {
    font-size: 1.78rem;
  }

  .hero__subtitle {
    margin-top: 10px;
    font-size: 0.94rem;
  }

  .gain-card {
    min-height: 196px;
    padding: 18px;
  }

  .gain-card h3,
  .before-after__body h3 {
    font-size: 1.24rem;
  }

  .before-after__visual {
    min-height: 186px;
  }

  .before-after__visual--mess span {
    left: 36px;
    right: 36px;
  }

  .before-after__body {
    padding: 18px;
  }

  .section {
    padding: 42px 0;
  }

  .section-header {
    margin-bottom: 18px;
  }

  .section-header h2,
  .cta-final h2,
  .alma__copy h2 {
    font-size: 1.75rem;
  }

  .sale-journey {
    padding: 12px;
  }

  .sale-journey__copy h3,
  .panel-feature__content h3 {
    font-size: 1.35rem;
  }

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

  .panel-feature-button {
    min-height: 42px;
    padding: 8px 6px;
    font-size: 0.78rem;
    line-height: 1.15;
  }

  .feature-console__screen {
    min-height: 0;
  }

  .panel-feature {
    padding: 18px;
  }

  .panel-feature__layout {
    grid-template-columns: 1fr;
  }

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

  .panel-feature__example {
    grid-template-columns: 1fr;
  }

  .panel-feature__action {
    width: 100%;
  }

  .live-panel__alert,
  .live-panel__top,
  .calm-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .live-panel__bars {
    height: 88px;
  }

  .local-grid article,
  .proof-materials article {
    min-height: 136px;
  }

  .alma__media-frame {
    min-height: 270px;
  }

  .cta-final {
    padding: 62px 0 78px;
  }
}

.btn--dark {
  color: var(--ink);
  border-color: rgba(8, 17, 20, 0.12);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 22px rgba(8, 17, 20, 0.08);
}

.btn--dark:hover {
  background: rgba(255, 255, 255, 0.98);
}

.quick-dock {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  z-index: 92;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(8, 17, 20, 0.1);
  border-radius: calc(var(--radius) + 2px);
  background: rgba(246, 251, 252, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform: translateY(110px);
  transition: transform 220ms var(--ease);
}

body.show-sticky .quick-dock {
  transform: translateY(0);
}

@media (max-width: 759px) {
  main {
    padding-bottom: calc(108px + env(safe-area-inset-bottom, 0px));
  }
}

.quick-dock__button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 8px;
  border: 1px solid rgba(8, 17, 20, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
}

.quick-dock__button--warm {
  background: var(--sun-2);
  border-color: rgba(240, 201, 135, 0.72);
}

.compare-guide,
.route-guide,
.partner-wall,
.assurance-guide {
  display: grid;
  gap: 12px;
}

.compare-guide__toggle,
.assurance-guide__buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.compare-guide__button,
.assurance-guide__button,
.route-guide__type,
.route-guide__step {
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(8, 17, 20, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.compare-guide__button.is-active,
.assurance-guide__button.is-active,
.route-guide__type.is-active,
.route-guide__step.is-active,
.compare-guide__button:hover,
.assurance-guide__button:hover,
.route-guide__type:hover,
.route-guide__step:hover,
.compare-guide__button:focus-visible,
.assurance-guide__button:focus-visible,
.route-guide__type:focus-visible,
.route-guide__step:focus-visible {
  transform: translateY(-1px);
}

.compare-guide__button.is-active,
.route-guide__step.is-active {
  background: var(--sun-2);
  border-color: rgba(240, 201, 135, 0.72);
}

.assurance-guide__button.is-active,
.route-guide__type.is-active {
  background: var(--ink);
  color: var(--white);
  border-color: rgba(8, 17, 20, 0.72);
}

.compare-guide__stage,
.route-guide__stage {
  display: grid;
  gap: 12px;
}

.compare-guide__visual,
.compare-guide__copy,
.route-guide__panel,
.assurance-guide__panel {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.compare-guide__visual {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 184px;
  display: grid;
  align-content: space-between;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(8, 17, 20, 0.08);
  background:
    radial-gradient(circle at 84% 16%, rgba(240, 201, 135, 0.3), transparent 24%),
    linear-gradient(160deg, rgba(248, 251, 251, 0.98), rgba(233, 244, 246, 0.94)),
    var(--white);
}

.compare-guide__visual[data-compare-visual="before"] {
  background:
    radial-gradient(circle at 84% 18%, rgba(240, 201, 135, 0.32), transparent 24%),
    linear-gradient(150deg, rgba(255, 247, 240, 0.98), rgba(248, 236, 226, 0.96)),
    var(--white);
}

.compare-guide__visual::before,
.compare-guide__visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.compare-guide__visual::before {
  right: 18px;
  top: 18px;
  width: 120px;
  height: 120px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 50%, rgba(240, 201, 135, 0.4), rgba(240, 201, 135, 0.08) 58%, transparent 70%);
}

.compare-guide__visual::after {
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 26px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(8, 17, 20, 0.08), rgba(8, 17, 20, 0.02) 34%, rgba(8, 17, 20, 0.08) 68%, rgba(8, 17, 20, 0.02));
}

.compare-guide__label,
.route-guide__kicker,
.assurance-guide__tag {
  width: fit-content;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 900;
}

.compare-guide__label,
.assurance-guide__tag {
  color: var(--ink);
  background: var(--sun-2);
}

.route-guide__kicker {
  color: var(--lagoon-dark);
  background: rgba(0, 184, 212, 0.12);
}

.compare-guide__visual strong {
  max-width: 280px;
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1.06;
  text-shadow: none;
}

.compare-guide__chips,
.route-guide__micro,
.assurance-guide__chips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.compare-guide__chips span,
.route-guide__micro span,
.assurance-guide__chips span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: var(--radius);
  text-align: center;
  font-size: 0.8rem;
  font-weight: 800;
}

.compare-guide__chips span {
  border: 1px solid transparent;
  background: rgba(8, 17, 20, 0.06);
  color: var(--ink-2);
}

.compare-guide__visual[data-compare-visual="before"] .compare-guide__chips span {
  border-color: rgba(242, 109, 91, 0.16);
  background: rgba(242, 109, 91, 0.1);
  color: #8a3b00;
}

.compare-guide__visual[data-compare-visual="after"] .compare-guide__chips span {
  border-color: rgba(0, 184, 212, 0.16);
  background: rgba(0, 184, 212, 0.1);
  color: #0b6172;
}

.compare-guide__copy {
  border-color: rgba(8, 17, 20, 0.08);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.94), rgba(239, 247, 248, 0.9)),
    var(--white);
}

.compare-guide__copy h3 {
  color: var(--ink);
}

.compare-guide__copy h3,
.route-guide__panel h3,
.assurance-guide__panel h3 {
  font-size: 1.45rem;
  line-height: 1.08;
  font-weight: 900;
}

.compare-guide__copy p,
.route-guide__panel p,
.assurance-guide__panel p {
  margin-top: 10px;
  color: var(--muted-dark);
}

.compare-guide__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.compare-guide__meta span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: var(--radius);
  background: rgba(8, 17, 20, 0.06);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
}

.compare-guide__actions,
.route-guide__actions,
.feature-console__actions,
.action-modal__actions {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.compare-guide__action,
.route-guide__nav {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border: 1px solid rgba(8, 17, 20, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
  cursor: pointer;
}

.compare-guide__action--warm,
.route-guide__nav--warm {
  color: var(--ink);
  background: var(--sun-2);
  border-color: rgba(240, 201, 135, 0.72);
}

.route-guide__nav--ghost {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  border-color: rgba(8, 17, 20, 0.12);
}

.route-guide__types,
.route-guide__track,
.partner-wall__grid,
.proof-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.route-guide__panel {
  color: var(--ink);
  border-color: rgba(8, 17, 20, 0.12);
  background:
    radial-gradient(circle at 84% 16%, rgba(240, 201, 135, 0.22), transparent 24%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.92), rgba(233, 245, 246, 0.86)),
    var(--white);
}

.route-guide__panel p {
  color: var(--muted);
}

.route-guide__micro span,
.assurance-guide__chips span {
  background: rgba(8, 17, 20, 0.06);
  color: var(--ink);
}

.partner-wall__chip {
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid rgba(8, 17, 20, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
  cursor: pointer;
}

.partner-wall__chip.is-active,
.partner-wall__chip:hover,
.partner-wall__chip:focus-visible {
  background: var(--ink);
  color: var(--white);
  border-color: rgba(8, 17, 20, 0.72);
}

.partner-wall__copy {
  text-align: center;
  color: var(--muted);
}

.assurance-guide__panel {
  color: var(--ink);
  border-color: rgba(8, 17, 20, 0.12);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.92), rgba(233, 245, 246, 0.86)),
    var(--white);
}

.assurance-guide__panel p {
  color: var(--muted);
}

.proof-action-card {
  min-height: 148px;
  display: grid;
  align-content: space-between;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(8, 17, 20, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.94), rgba(238, 247, 247, 0.9)),
    var(--white);
  box-shadow: 0 16px 34px rgba(8, 17, 20, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.proof-action-card--visual {
  padding: 0;
  overflow: hidden;
}

.proof-action-card__media {
  display: block;
  width: 100%;
  height: clamp(160px, 20vw, 220px);
  border-bottom: 1px solid rgba(8, 17, 20, 0.08);
  overflow: hidden;
}

.proof-action-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.proof-action-card__media--support {
  position: relative;
  background:
    radial-gradient(circle at 84% 16%, rgba(16, 185, 129, 0.18), transparent 24%),
    linear-gradient(155deg, rgba(232, 246, 242, 0.96), rgba(233, 244, 247, 0.88)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.proof-support {
  position: absolute;
  inset: 14px;
  display: grid;
  align-content: start;
  gap: 10px;
}

.proof-support__badge {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  border-radius: 999px;
  color: #082018;
  background: rgba(104, 211, 145, 0.96);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-support__bubble {
  max-width: 82%;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.25;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
}

.proof-support__bubble--user {
  justify-self: end;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(8, 17, 20, 0.08);
}

.proof-support__bubble--team {
  justify-self: start;
  color: var(--ink);
  background: rgba(240, 201, 135, 0.96);
}

.proof-action-card__body {
  display: grid;
  align-content: space-between;
  gap: 12px;
  padding: 16px;
  min-height: 150px;
}

.proof-action-card:hover,
.proof-action-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(240, 201, 135, 0.4);
  background:
    linear-gradient(140deg, rgba(240, 201, 135, 0.14), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.05);
}

.proof-action-card__body > span {
  width: 38px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--sun-2);
  font-weight: 900;
}

.proof-action-card strong {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.08;
}

.proof-action-card small {
  color: var(--muted);
  font-size: 0.9rem;
}

.feature-console__actions {
  margin-top: 16px;
}

.action-modal[hidden] {
  display: none;
}

.action-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  align-items: end;
}

.action-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(8, 17, 20, 0.6);
}

.action-modal__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  padding: 20px;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  background:
    radial-gradient(circle at 84% 14%, rgba(240, 201, 135, 0.24), transparent 22%),
    linear-gradient(180deg, #f6fbfc, #edf6f8);
  box-shadow: 0 -18px 40px rgba(8, 17, 20, 0.24);
}

.action-modal__close {
  width: fit-content;
  min-height: 38px;
  margin-left: auto;
  padding: 8px 10px;
  border: 1px solid rgba(8, 17, 20, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
}

.action-modal__tag {
  width: fit-content;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--sun-2);
  font-size: 0.8rem;
  font-weight: 900;
}

.action-modal__title {
  color: var(--ink);
  font-size: 1.55rem;
  line-height: 1.06;
  font-weight: 900;
}

.action-modal__copy {
  color: var(--muted);
}

.action-modal__chips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.action-modal__chips span {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: var(--radius);
  background: rgba(8, 17, 20, 0.06);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 800;
  text-align: center;
}

body.modal-open {
  overflow: hidden;
}

@media (min-width: 760px) {
  .compare-guide__stage,
  .route-guide__stage {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: stretch;
  }

  .compare-guide__actions,
  .route-guide__actions,
  .feature-console__actions,
  .action-modal__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-wall__grid,
  .proof-actions {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .quick-dock {
    left: auto;
    right: 22px;
    width: 440px;
  }

  .route-guide__types,
  .route-guide__track {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .action-modal {
    align-items: center;
    justify-items: center;
  }

  .action-modal__dialog {
    width: min(100%, 560px);
    border-radius: 14px;
  }
}

@media (max-width: 519px) {
  .hero {
    min-height: auto;
    padding: 88px 0 36px;
  }

  .hero__grid {
    gap: 24px;
  }

  .hero__actions {
    margin-top: 22px;
  }

  .proof-row {
    margin-top: 14px;
  }

  .sunset-window {
    min-height: 96px;
    padding: 14px;
  }

  .sunset-window strong {
    max-width: 260px;
    font-size: 1.12rem;
  }

  .journey {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    overflow: visible;
    padding: 12px;
  }

  .journey__phone {
    flex: initial;
    width: 100%;
    min-height: 156px;
    padding: 12px;
  }

  .flow-line {
    display: none;
  }

  .tourist-card {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .tourist-card__image {
    min-height: 48px;
  }

  .flow-steps {
    padding: 0 12px 12px;
  }

  .gain-guide__stage,
  .compare-guide__visual,
  .compare-guide__copy,
  .route-guide__panel,
  .assurance-guide__panel {
    padding: 14px;
  }

  .gain-guide__chips {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  .gain-guide__chip {
    min-height: 38px;
    padding: 8px 6px;
    font-size: 0.78rem;
  }

  .gain-guide__stage {
    padding: 12px;
    gap: 10px;
  }

  .gain-guide__visual {
    min-height: 108px;
    gap: 8px;
    padding: 12px;
  }

  .stats-strip {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    overflow-x: auto;
  }

  .stat {
    min-width: 144px;
    padding: 14px 10px;
  }

  .panel-immersive {
    gap: 12px;
  }

  .live-panel {
    padding: 14px;
  }

  .live-panel__grid {
    margin: 14px 0;
  }

  .live-panel__grid article {
    padding: 12px;
  }

  .live-panel__bars {
    height: 88px;
    margin-top: 14px;
  }

  .panel-emotion {
    grid-auto-flow: column;
    grid-auto-columns: 84%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .panel-emotion article {
    min-height: 102px;
    padding: 12px;
  }

  .panel-emotion strong {
    font-size: 0.95rem;
  }

  .feature-console__menu {
    gap: 6px;
  }

  .feature-console__screen {
    min-height: 0;
  }

  .panel-feature {
    padding: 14px;
  }

  .panel-feature__content h3 {
    font-size: 1.18rem;
  }

  .panel-feature__steps {
    grid-template-columns: 1fr;
  }

  .panel-feature__example {
    grid-template-columns: 1fr;
  }

  .panel-feature__steps li,
  .panel-feature__action {
    min-height: 40px;
  }

  .signup-layout {
    gap: 12px;
  }

  .signup-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .timeline-step {
    grid-template-columns: 36px 1fr;
    gap: 10px;
    min-height: 104px;
    padding: 10px;
  }

  .timeline-step span {
    width: 36px;
    height: 36px;
  }

  .timeline-step h3 {
    font-size: 0.92rem;
  }

  .timeline-step p {
    margin-top: 4px;
    font-size: 0.78rem;
  }

  .signup-screen {
    min-height: 228px;
    padding: 14px;
  }

  .signup-shot {
    gap: 10px;
    padding: 12px;
  }

  .signup-shot__media {
    height: 188px;
  }

  .signup-screen__stage {
    min-height: 180px;
    padding: 18px;
  }

  .signup-screen__stage strong {
    font-size: 1.24rem;
  }

  .partner-wall__grid {
    gap: 6px;
  }

  .partner-wall__chip {
    min-height: 40px;
    padding: 8px 10px;
  }

  .alma__grid {
    gap: 16px;
  }

  .alma__media-frame {
    min-height: 232px;
  }

  .alma__media-overlay {
    left: 12px;
    right: 12px;
    bottom: 12px;
    gap: 8px;
    padding: 12px;
  }

  .alma__media-overlay strong {
    font-size: 0.94rem;
  }

  .alma__media-pills {
    gap: 6px;
  }

  .alma__media-pills span {
    min-height: 28px;
    padding: 5px 8px;
    font-size: 0.72rem;
  }

  .proof-actions {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 14px;
    -webkit-overflow-scrolling: touch;
  }

  .proof-action-card {
    flex: 0 0 82%;
    min-height: 122px;
    padding: 14px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .proof-action-card--visual {
    padding: 0;
  }

  .proof-action-card__media {
    height: 136px;
  }

  .proof-support {
    inset: 10px;
    gap: 8px;
  }

  .proof-support__bubble {
    max-width: 88%;
    padding: 8px 10px;
    font-size: 0.75rem;
  }

  .proof-action-card__body {
    min-height: 128px;
    padding: 14px;
  }

  .cta-final {
    padding: 54px 0 92px;
  }

  .quick-dock {
    left: 10px;
    right: 10px;
    bottom: 10px;
    gap: 6px;
    padding: 6px;
  }

  .quick-dock__button {
    min-height: 42px;
    padding: 8px 6px;
    font-size: 0.76rem;
  }

  .action-modal__dialog {
    padding: 16px;
  }
}

.section--practice {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 14% 18%, rgba(240, 201, 135, 0.2), transparent 24%),
    radial-gradient(circle at 84% 14%, rgba(0, 184, 212, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(239, 247, 248, 0.9));
}

.section--practice::before,
.section--practice::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(26px);
  opacity: 0.88;
}

.section--practice::before {
  width: 260px;
  height: 260px;
  inset: 6% auto auto -6%;
  background: radial-gradient(circle, rgba(240, 201, 135, 0.24), transparent 70%);
}

.section--practice::after {
  width: 320px;
  height: 320px;
  inset: auto -10% -18% auto;
  background: radial-gradient(circle, rgba(0, 184, 212, 0.18), transparent 72%);
}

.section--practice > .container {
  position: relative;
  z-index: 2;
}

.practice-pricing {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 28px;
}

.practice-pricing__item {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(8, 17, 20, 0.08);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(239, 247, 248, 0.92)),
    var(--white);
  box-shadow: 0 14px 34px rgba(8, 17, 20, 0.07);
}

.practice-pricing__item span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.practice-pricing__item strong {
  color: var(--ink);
  font-size: 1.16rem;
  line-height: 1.16;
}

.practice-pricing__item small {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.practice-videos {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.practice-videos--panel {
  margin-top: 18px;
}

.practice-video-card {
  display: grid;
  gap: 14px;
  align-self: start;
  padding: 16px;
  border: 1px solid rgba(8, 17, 20, 0.08);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 248, 248, 0.94)),
    var(--white);
  box-shadow: 0 20px 44px rgba(8, 17, 20, 0.08), 0 0 46px rgba(0, 184, 212, 0.06);
}

.practice-video-card--wide {
  grid-column: span 4;
}

.practice-video-card--portrait {
  grid-column: span 4;
}

.practice-video-card__media {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(8, 17, 20, 0.08);
  background: linear-gradient(180deg, #12343b, #0c1e23);
  aspect-ratio: 16 / 10;
}

.practice-video-card__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(180deg, transparent, rgba(8, 17, 20, 0.28));
  pointer-events: none;
}

.practice-video-card__media--portrait {
  aspect-ratio: 9 / 14;
}

.practice-video-card__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.practice-video-card__body {
  display: grid;
  gap: 10px;
}

.practice-video-card__body > span {
  color: var(--lagoon-dark);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.practice-video-card__body strong {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.22;
}

.practice-video-card__pills,
.panel-real__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.practice-video-card__pills span,
.panel-real__chips span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid rgba(8, 17, 20, 0.08);
  border-radius: 999px;
  background: rgba(8, 17, 20, 0.04);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 800;
}

.practice-video-card__link {
  width: fit-content;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(8, 17, 20, 0.08);
  background: rgba(8, 17, 20, 0.04);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
}

.practice-gallery,
.panel-real__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.practice-shot {
  display: grid;
  gap: 0;
  padding: 0;
  border: 1px solid rgba(8, 17, 20, 0.08);
  border-radius: 14px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 247, 248, 0.92)),
    var(--white);
  box-shadow: 0 18px 40px rgba(8, 17, 20, 0.08);
  cursor: pointer;
  text-align: left;
  appearance: none;
}

.practice-shot__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #11262c;
}

.practice-shot__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, transparent 55%, rgba(8, 17, 20, 0.18) 100%),
    radial-gradient(circle at 82% 18%, rgba(240, 201, 135, 0.18), transparent 24%);
  pointer-events: none;
}

.practice-shot__media--panel {
  aspect-ratio: 16 / 10;
}

.practice-shot__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.practice-shot__body {
  display: grid;
  gap: 6px;
  padding: 14px;
}

.practice-shot__body span {
  color: var(--lagoon-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.practice-shot__body strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.2;
}

.practice-shot__body small {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

.panel-real {
  display: grid;
  gap: 16px;
}

.panel-real__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(8, 17, 20, 0.08);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(242, 248, 248, 0.94)),
    var(--white);
  box-shadow: 0 24px 52px rgba(8, 17, 20, 0.08), 0 0 60px rgba(240, 201, 135, 0.08);
}

.panel-real__video {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(8, 17, 20, 0.08);
  aspect-ratio: 16 / 10;
  background: linear-gradient(180deg, #122f36, #0d1f24);
}

.panel-real__video::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(8, 17, 20, 0.28));
  pointer-events: none;
}

.panel-real__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.panel-real__copy {
  display: grid;
  align-content: center;
  gap: 12px;
}

.panel-real__copy > span {
  width: fit-content;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--sun-2);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.panel-real__copy h3 {
  color: var(--ink);
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  line-height: 1.04;
}

.panel-real__copy p {
  color: var(--muted);
}

.panel-emotion {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.panel-emotion article {
  min-height: 126px;
  display: grid;
  align-content: start;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(8, 17, 20, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 28px rgba(8, 17, 20, 0.05);
}

.media-lightbox[hidden] {
  display: none;
}

.media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: 20px;
}

.media-lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(8, 17, 20, 0.62);
  backdrop-filter: blur(4px);
}

.media-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background:
    radial-gradient(circle at 84% 16%, rgba(240, 201, 135, 0.22), transparent 22%),
    linear-gradient(180deg, rgba(247, 251, 251, 0.98), rgba(233, 243, 244, 0.96));
  box-shadow: 0 24px 60px rgba(8, 17, 20, 0.22);
}

.media-lightbox__top,
.media-lightbox__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.media-lightbox__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: stretch;
}

.media-lightbox__actions .btn {
  width: 100%;
}

.media-lightbox__tag {
  width: fit-content;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--sun-2);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.media-lightbox__close {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(8, 17, 20, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 900;
  cursor: pointer;
}

.media-lightbox__title {
  color: var(--ink);
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  line-height: 1.06;
}

.media-lightbox__copy {
  color: var(--muted);
  max-width: 68ch;
}

.media-lightbox__frame {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.34fr);
  gap: 16px;
  align-items: start;
  min-height: 280px;
}

.media-lightbox__surface {
  display: grid;
  gap: 10px;
}

.media-lightbox__loading {
  display: none;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.media-lightbox.is-loading .media-lightbox__loading {
  display: inline-flex;
}

.media-lightbox.is-loading .media-lightbox__surface img {
  opacity: 0;
  transform: scale(0.985);
}

.media-lightbox__spinner {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid rgba(8, 17, 20, 0.14);
  border-top-color: var(--lagoon);
  animation: spin 760ms linear infinite;
}

.media-lightbox__surface figcaption {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.media-lightbox__surface img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(8, 17, 20, 0.08);
  box-shadow: 0 16px 34px rgba(8, 17, 20, 0.12);
  transition: opacity 140ms ease, transform 180ms ease;
}

.media-lightbox__surface--desktop img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center top;
}

.media-lightbox__surface--mobile img {
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: center top;
}

.practice-shot:focus-visible,
.practice-video-card__link:focus-visible,
.media-lightbox__close:focus-visible,
.media-lightbox__actions .btn:focus-visible {
  outline: 3px solid rgba(0, 184, 212, 0.28);
  outline-offset: 2px;
}

@media (min-width: 980px) {
  .practice-shot,
  .practice-video-card,
  .panel-real__hero,
  .practice-pricing__item,
  .panel-emotion article {
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  }

  .practice-shot:hover,
  .practice-video-card:hover,
  .panel-real__hero:hover,
  .practice-pricing__item:hover,
  .panel-emotion article:hover {
    transform: translateY(-3px);
    box-shadow: 0 28px 56px rgba(8, 17, 20, 0.12), 0 0 50px rgba(0, 184, 212, 0.08);
    border-color: rgba(0, 184, 212, 0.24);
  }
}

@media (max-width: 1099px) {
  .practice-pricing,
  .practice-gallery,
  .panel-real__grid,
  .panel-emotion {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .practice-video-card--wide,
  .practice-video-card--portrait {
    grid-column: span 6;
  }

  .panel-real__hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 759px) {
  .practice-videos {
    grid-template-columns: 1fr;
  }

  .practice-video-card--wide,
  .practice-video-card--portrait {
    grid-column: auto;
  }

  .media-lightbox {
    padding: 10px;
    align-items: end;
  }

  .media-lightbox__dialog {
    max-height: calc(100vh - 20px);
    overflow: auto;
    padding: 14px;
    border-radius: 14px 14px 0 0;
  }

  .media-lightbox__frame {
    grid-template-columns: 1fr;
  }

  .media-lightbox__surface--mobile {
    max-width: 320px;
  }

  .media-lightbox__actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 519px) {
  .practice-pricing,
  .practice-gallery,
  .panel-real__grid,
  .panel-emotion {
    grid-template-columns: 1fr;
  }

  .practice-pricing__item,
  .practice-video-card,
  .panel-real__hero,
  .practice-shot,
  .panel-emotion article {
    border-radius: 12px;
  }

  .practice-pricing__item {
    padding: 14px;
  }

  .practice-shot__body,
  .practice-video-card,
  .panel-real__hero {
    padding: 14px;
  }

  .panel-real__copy h3 {
    font-size: 1.5rem;
  }

  .practice-video-card__media {
    aspect-ratio: 16 / 11;
  }

  .practice-video-card__media--portrait,
  .media-lightbox__surface--mobile img {
    aspect-ratio: 9 / 15;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .reveal-children > * {
    opacity: 1;
    transform: none;
  }

  .section-atmosphere__chip {
    animation: none !important;
  }
}

/* Multi-page structure */

.site-page {
  min-height: 100vh;
}

.site-page .navbar__links {
  gap: 8px;
}

.site-page .navbar__link {
  min-height: 40px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
}

.site-page .navbar__link[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.page-dock {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  z-index: 95;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(8, 17, 20, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 36px rgba(8, 17, 20, 0.16);
  backdrop-filter: blur(16px);
}

.page-dock__link {
  min-height: 52px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 4px;
  padding: 6px 4px;
  border-radius: 12px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
}

.page-dock__link[aria-current="page"] {
  color: var(--ink);
  background: rgba(0, 184, 212, 0.14);
}

.page-dock__index {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(8, 17, 20, 0.08);
  color: var(--ink);
  font-size: 0.72rem;
}

.page-dock__link[aria-current="page"] .page-dock__index {
  background: var(--sun-2);
}

.modal-open .page-dock {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}

.page-hero {
  padding: 108px 0 44px;
  color: var(--white);
  background:
    radial-gradient(circle at 14% 16%, rgba(240, 201, 135, 0.18), transparent 24%),
    radial-gradient(circle at 82% 16%, rgba(0, 184, 212, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(8, 17, 20, 0.94) 0%, rgba(17, 45, 50, 0.86) 58%, rgba(26, 58, 62, 0.8) 100%);
}

.page-hero--light {
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 16%, rgba(240, 201, 135, 0.18), transparent 24%),
    radial-gradient(circle at 82% 16%, rgba(0, 184, 212, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(246, 251, 252, 0.95) 0%, rgba(233, 245, 246, 0.92) 100%);
}

.page-hero__grid {
  display: grid;
  gap: 24px;
  align-items: center;
}

.page-hero__title {
  max-width: 720px;
  font-size: 2.3rem;
  line-height: 1.02;
  font-weight: 900;
}

.page-hero__copy {
  max-width: 62ch;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.02rem;
}

.page-hero--light .page-hero__copy {
  color: var(--muted);
}

.page-hero__actions {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.page-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.page-hero__pills span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 900;
}

.page-hero--light .page-hero__pills span {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(8, 17, 20, 0.08);
}

.page-hero__visual {
  display: grid;
  gap: 12px;
}

.page-hero__shot,
.page-hero__media {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.06);
}

.page-hero--light .page-hero__shot,
.page-hero--light .page-hero__media {
  border-color: rgba(8, 17, 20, 0.08);
  box-shadow: var(--shadow-soft);
  background: rgba(255, 255, 255, 0.9);
}

.page-hero__shot img,
.page-hero__media img,
.page-hero__media video {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: top center;
}

.page-hero__summary,
.page-hero__note {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.page-hero--light .page-hero__summary,
.page-hero--light .page-hero__note {
  border-color: rgba(8, 17, 20, 0.08);
  background: rgba(255, 255, 255, 0.84);
}

.page-hero__summary strong,
.page-hero__note strong {
  font-size: 1.08rem;
  line-height: 1.2;
}

.page-hero__summary p,
.page-hero__note p {
  color: rgba(255, 255, 255, 0.76);
}

.page-hero--light .page-hero__summary p,
.page-hero--light .page-hero__note p {
  color: var(--muted);
}

.page-hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.page-hero__meta span {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
}

.page-hero--light .page-hero__meta span {
  color: var(--ink);
  background: rgba(8, 17, 20, 0.05);
}

.story-grid,
.case-grid,
.proof-grid {
  display: grid;
  gap: 14px;
}

.story-card,
.case-card,
.page-cta,
.info-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(8, 17, 20, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(8, 17, 20, 0.06);
}

.story-card__media {
  overflow: hidden;
  border-radius: calc(var(--radius) - 1px);
  border: 1px solid rgba(8, 17, 20, 0.08);
  background: rgba(8, 17, 20, 0.04);
  aspect-ratio: 16 / 10;
}

.story-card__media img,
.story-card__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.story-card__body,
.case-card__body,
.page-cta__body {
  display: grid;
  gap: 10px;
}

.story-card__tag,
.case-card__tag,
.page-cta__tag {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--sun-2);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.story-card__body strong,
.case-card__body strong,
.page-cta__body strong,
.info-card strong {
  font-size: 1.2rem;
  line-height: 1.15;
}

.story-card__body p,
.case-card__body p,
.page-cta__body p,
.info-card p {
  color: var(--muted);
}

.story-card__meta,
.case-card__meta,
.price-logic__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.story-card__meta span,
.case-card__meta span,
.price-logic__chips span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(8, 17, 20, 0.05);
  color: var(--ink-2);
  font-size: 0.78rem;
  font-weight: 800;
}

.feature-stack {
  display: grid;
  gap: 16px;
}

.feature-stack .panel-feature {
  display: grid;
  padding: 22px;
  border: 1px solid rgba(8, 17, 20, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(233, 245, 246, 0.9)),
    var(--white);
  box-shadow: 0 18px 34px rgba(8, 17, 20, 0.06);
}

.feature-stack .panel-feature__layout {
  grid-template-columns: 1fr;
}

.price-logic {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.price-logic__grid {
  display: grid;
  gap: 10px;
}

.price-logic__line {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(8, 17, 20, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.84);
}

.price-logic__line strong {
  font-size: 1rem;
  line-height: 1.15;
}

.price-logic__line span {
  color: var(--muted);
  font-size: 0.88rem;
}

.price-logic__line--accent {
  background: rgba(240, 201, 135, 0.18);
  border-color: rgba(240, 201, 135, 0.48);
}

.price-logic__line--lagoon {
  background: rgba(0, 184, 212, 0.12);
  border-color: rgba(0, 184, 212, 0.34);
}

.page-cta {
  align-items: start;
}

.page-cta__actions {
  display: grid;
  gap: 10px;
}

.info-card__media {
  overflow: hidden;
  border-radius: calc(var(--radius) - 1px);
  border: 1px solid rgba(8, 17, 20, 0.08);
  background: rgba(8, 17, 20, 0.04);
}

.info-card__media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top center;
}

@media (min-width: 760px) {
  .page-dock {
    display: none;
  }

  .page-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.94fr);
  }

  .page-hero__actions,
  .page-cta__actions {
    display: flex;
    flex-wrap: wrap;
  }

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

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

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

  .feature-stack .panel-feature__layout {
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  }
}

@media (min-width: 980px) {
  .story-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 759px) {
  body.site-page {
    padding-bottom: calc(86px + env(safe-area-inset-bottom, 0px));
  }

  .page-hero {
    padding: 96px 0 32px;
  }

  .page-hero__title {
    font-size: 2rem;
  }

  .page-hero__summary,
  .page-hero__note,
  .story-card,
  .case-card,
  .page-cta,
  .info-card {
    padding: 16px;
  }

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

  .feature-stack .panel-feature {
    padding: 18px;
  }
}

@media (min-width: 980px) {
  .hero {
    min-height: min(92svh, 960px);
    padding: 108px 0 44px;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 30px;
  }

  .hero__content,
  .hero__support {
    max-width: 620px;
  }

  .hero__support {
    gap: 12px;
  }

  .hero__title {
    max-width: 10.5ch;
    font-size: clamp(3.25rem, 4.8vw, 4rem);
  }

  .hero__subtitle {
    margin-top: 12px;
    max-width: 56ch;
    font-size: 1.08rem;
  }

  .hero__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 460px;
    margin-top: 22px;
  }

  .proof-row,
  .hero-jump,
  .choice-board {
    margin-top: 0;
  }
}

@media (max-width: 759px) {
  body.site-page {
    padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
  }

  .page-dock {
    left: 8px;
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom, 0px));
    gap: 6px;
    padding: 6px;
    border-radius: 16px;
  }

  .page-dock__link {
    min-height: 46px;
    gap: 3px;
    padding: 5px 3px;
    font-size: 0.67rem;
  }

  .page-dock__index {
    width: 22px;
    height: 22px;
    font-size: 0.68rem;
  }

  .page-hero {
    padding: 88px 0 26px;
  }

  .page-hero__title {
    font-size: clamp(1.84rem, 7.8vw, 2.2rem);
  }

  .page-hero__copy {
    gap: 12px;
  }

  .page-hero__actions {
    gap: 8px;
  }

  .page-hero__media {
    min-height: 0;
    max-height: 320px;
  }

  .hero {
    min-height: auto;
    padding: 76px 0 20px;
  }

  .hero__grid {
    gap: 14px;
  }

  .hero__content,
  .hero__support {
    gap: 10px;
  }

  .hero__title {
    max-width: 11ch;
    font-size: clamp(2rem, 8.6vw, 2.7rem);
    line-height: 0.98;
  }

  .hero__subtitle {
    margin-top: 6px;
    max-width: none;
    font-size: 0.98rem;
    line-height: 1.42;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .hero__actions {
    margin-top: 10px;
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__actions .btn {
    min-height: 44px;
    padding: 12px 14px;
  }

  .proof-row {
    margin-top: 0;
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .proof-row span {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 6px 8px;
    font-size: 0.72rem;
    line-height: 1.15;
    white-space: nowrap;
  }

  .hero-jump {
    margin-top: 0;
    gap: 6px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hero-jump__link {
    min-height: 40px;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 7px 4px;
  }

  .hero-jump__label {
    font-size: 0.66rem;
    line-height: 1.05;
  }

  .choice-board {
    margin-top: 0;
    gap: 8px;
    padding: 10px;
  }

  .choice-board__buttons {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  .choice-chip {
    min-height: 40px;
    padding: 8px 4px;
    font-size: 0.7rem;
  }

  .choice-board__panel {
    gap: 8px;
    padding: 10px;
  }

  .choice-board__panel strong {
    font-size: 0.96rem;
  }

  .choice-board__panel p {
    font-size: 0.83rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .choice-board__steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .choice-board__steps span {
    min-height: 34px;
    padding: 6px;
    font-size: 0.72rem;
    line-height: 1.12;
  }

  .choice-board__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .choice-board__action {
    min-height: 40px;
    padding: 8px 10px;
    font-size: 0.8rem;
    line-height: 1.12;
  }

  .sunset-window {
    min-height: 88px;
    gap: 6px;
    padding: 12px;
  }

  .sunset-window::before,
  .sunset-window::after {
    left: 12px;
    right: 12px;
  }

  .sunset-window span {
    font-size: 0.7rem;
  }

  .sunset-window strong {
    max-width: 240px;
    font-size: 0.94rem;
  }

  .journey {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
  }

  .journey__phone {
    min-height: 122px;
    padding: 9px;
  }

  .phone-top,
  .screen-bar {
    margin-bottom: 8px;
  }

  .tourist-card {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 8px;
  }

  .tourist-card__image {
    min-height: 42px;
  }

  .tourist-card strong,
  .panel-head strong,
  .reservation-alert strong {
    font-size: 0.82rem;
    line-height: 1.12;
  }

  .tourist-card small {
    margin-top: 4px;
    font-size: 0.7rem;
    line-height: 1.24;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .panel-head {
    margin-bottom: 8px;
    gap: 8px;
    font-size: 0.74rem;
  }

  .reservation-alert {
    padding: 8px;
  }

  .reservation-alert span {
    font-size: 0.74rem;
  }

  .mini-list,
  .panel-grid {
    gap: 6px;
    margin: 8px 0;
  }

  .mini-list span,
  .panel-grid span {
    min-height: 32px;
    font-size: 0.72rem;
  }

  .fake-button {
    min-height: 36px;
    font-size: 0.78rem;
  }

  .flow-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    padding: 0 10px 10px;
  }

  .flow-step {
    min-height: 32px;
    padding: 5px 6px;
    font-size: 0.64rem;
    line-height: 1.08;
  }

  .panel-feature,
  .practice-video-card,
  .panel-real__hero,
  .practice-shot,
  .info-card,
  .story-card,
  .case-card,
  .page-cta {
    border-radius: 12px;
  }

  .feature-console__actions,
  .panel-feature__actions,
  .page-hero__actions,
  .page-cta__actions {
    gap: 8px;
  }
}

.btn,
.compare-guide__action,
.route-guide__nav,
.panel-feature__action,
.choice-board__action,
.hero-jump__link,
.page-dock__link {
  min-width: 0;
  white-space: normal;
  line-height: 1.12;
  text-wrap: balance;
}

.feature-console__actions .btn,
.panel-feature__actions .panel-feature__action,
.page-hero__actions .btn,
.page-cta__actions .btn,
.media-lightbox__actions .btn {
  min-width: 0;
}

.panel-feature__action,
.feature-console__actions .btn,
.media-lightbox__actions .btn {
  align-items: center;
  text-align: center;
}

.panel-feature__media--video,
.practice-video-card__media,
.panel-real__video {
  aspect-ratio: 16 / 9;
}

.panel-feature__media--video video,
.practice-video-card__media video,
.panel-real__video video {
  object-fit: contain;
  background: #0d1f24;
}

.media-lightbox__actions .btn--ghost,
.media-lightbox__actions .btn--dark {
  color: var(--ink);
  background: rgba(8, 17, 20, 0.04);
  border-color: rgba(8, 17, 20, 0.12);
}

.media-lightbox__frame {
  min-height: 0;
}

.media-lightbox__surface img {
  object-fit: contain;
  object-position: center top;
  background: rgba(246, 251, 252, 0.92);
}

.media-lightbox__surface--desktop img,
.media-lightbox__surface--mobile img {
  aspect-ratio: auto;
  max-height: min(70vh, 760px);
}

@media (max-width: 759px) {
  .media-lightbox {
    padding: 8px;
    align-items: end;
  }

  .media-lightbox__dialog {
    width: min(100%, 500px);
    max-height: calc(100vh - 16px);
    padding: 14px 14px 16px;
    border-radius: 16px 16px 0 0;
  }

  .media-lightbox__top {
    gap: 10px;
  }

  .media-lightbox__title {
    font-size: clamp(1.25rem, 5.5vw, 1.6rem);
  }

  .media-lightbox__copy {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .media-lightbox__frame {
    gap: 10px;
    grid-template-columns: 1fr;
  }

  .media-lightbox__surface--desktop {
    display: none;
  }

  .media-lightbox__surface--mobile {
    width: min(100%, 320px);
    max-width: 100%;
    margin: 0 auto;
  }

  .media-lightbox__surface--mobile img {
    max-height: min(64vh, 560px);
  }

  .media-lightbox__actions {
    gap: 8px;
    grid-template-columns: 1fr;
  }

  .media-lightbox__actions .btn {
    min-height: 44px;
    padding: 12px 14px;
  }
}
