:root {
  --moss: #2e4036;
  --moss-deep: #1f2d25;
  --clay: #cc5833;
  --clay-soft: #e57b59;
  --wa-green: #25d366;
  --wa-green-deep: #1f9f57;
  --tg-blue: #229ed9;
  --tg-blue-deep: #1f7fb0;
  --cream: #f2f0e9;
  --charcoal: #1a1a1a;
  --charcoal-soft: #272727;
  --white: #fffdfa;
  --line: rgba(26, 26, 26, 0.1);
  --line-dark: rgba(255, 255, 255, 0.12);
  --text-soft: rgba(26, 26, 26, 0.68);
  --text-soft-dark: rgba(255, 255, 255, 0.72);
  --shadow: 0 26px 60px rgba(36, 29, 23, 0.14);
  --radius-xl: 3rem;
  --radius-lg: 2.2rem;
  --radius-md: 1.5rem;
  --container: min(1180px, calc(100% - 2rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.84), transparent 28%),
    linear-gradient(180deg, #f5f2ea 0%, #ece6db 100%);
  font-family: "Outfit", "Segoe UI", sans-serif;
  line-height: 1.55;
}

img,
svg {
  display: block;
}

img {
  width: 100%;
}

a {
  color: inherit;
}

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.55rem, 6vw, 5.2rem);
  max-width: 10.5ch;
}

h1 span {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 0.78em;
}

h2 {
  font-size: clamp(1.55rem, 3.1vw, 2.85rem);
  max-width: 15ch;
  text-wrap: balance;
}

h3 {
  font-size: clamp(1.02rem, 1.5vw, 1.38rem);
  line-height: 1.12;
  text-wrap: balance;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.noise-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 100;
  background: var(--white);
  color: var(--charcoal);
  padding: 0.7rem 0.9rem;
  border-radius: 1rem;
}

.site-header {
  position: fixed;
  top: 1rem;
  left: 0;
  right: 0;
  z-index: 30;
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.75rem;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  color: var(--white);
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header:not(.is-scrolled) .header-shell {
  background: linear-gradient(180deg, rgba(15, 20, 17, 0.14), rgba(15, 20, 17, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 0.8rem 1.6rem rgba(10, 13, 11, 0.06);
}

.site-header.is-scrolled .header-shell {
  color: var(--moss);
  background: rgba(255, 253, 250, 0.68);
  border: 1px solid rgba(46, 64, 54, 0.12);
  box-shadow: 0 14px 40px rgba(31, 45, 37, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-logo {
  width: 11rem;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1) contrast(1.08);
  transition: filter 0.25s ease, opacity 0.25s ease;
}

.site-header.is-scrolled .brand-logo {
  filter: none;
}

.top-nav {
  display: flex;
  gap: 1.35rem;
}

.site-header:not(.is-scrolled) .top-nav {
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
  background: transparent;
  border: 0;
  backdrop-filter: none;
}

.top-nav a {
  text-decoration: none;
  font-weight: 600;
  opacity: 0.88;
}

.site-header:not(.is-scrolled) .top-nav a {
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.top-nav a:hover,
.top-nav a:focus-visible {
  opacity: 1;
}

.nav-cta,
.btn,
.mobile-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.top-nav a:focus-visible,
.nav-cta:focus-visible,
.btn:focus-visible,
.contact-card:focus-visible,
.mobile-bar a:focus-visible,
.brand:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 4px;
}

.nav-cta {
  min-height: 2.9rem;
  padding: 0 1.15rem;
  background: rgba(255, 253, 250, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.site-header.is-scrolled .nav-cta {
  background: var(--moss);
  border-color: var(--moss);
  color: var(--white);
}

.btn {
  min-height: 3.35rem;
  padding: 0 1.35rem;
  border: 1px solid transparent;
}

.btn-icon {
  gap: 0.65rem;
  padding: 0 1.2rem;
}

.btn-icon svg {
  width: 1.2rem;
  height: 1.2rem;
  flex: 0 0 auto;
}

.btn:hover,
.nav-cta:hover,
.mobile-bar a:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--clay);
  color: var(--white);
}

.btn-secondary {
  background: rgba(255, 253, 250, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.14);
}

.hero-actions .btn[data-channel="whatsapp"] {
  background: linear-gradient(135deg, #2a744f 0%, var(--wa-green) 100%);
  color: var(--white);
  border-color: rgba(178, 239, 208, 0.34);
  box-shadow: 0 0.75rem 1.7rem rgba(31, 159, 87, 0.3);
}

.hero-actions .btn[data-channel="whatsapp"]:hover,
.hero-actions .btn[data-channel="whatsapp"]:focus-visible {
  background: linear-gradient(135deg, #2d7f56 0%, #2dde74 100%);
}

.hero-actions .btn[data-channel="telegram"] {
  background: linear-gradient(135deg, #335868 0%, var(--tg-blue) 100%);
  color: var(--white);
  border-color: rgba(169, 221, 246, 0.34);
  box-shadow: 0 0.75rem 1.7rem rgba(31, 127, 176, 0.24);
}

.hero-actions .btn[data-channel="telegram"]:hover,
.hero-actions .btn[data-channel="telegram"]:focus-visible {
  background: linear-gradient(135deg, #3a6274 0%, #2aa9e7 100%);
}

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

.btn-clay {
  width: 100%;
  margin-top: auto;
  background: var(--clay);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 10.2rem 0 4rem;
  color: var(--white);
  background: var(--moss-deep);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  inset: auto 12% 10% auto;
  width: 34rem;
  height: 34rem;
  background: radial-gradient(circle, rgba(204, 88, 51, 0.18), transparent 68%);
  filter: blur(12px);
}

.hero::after {
  inset: 18% auto auto 8%;
  width: 22rem;
  height: 22rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 72%);
}

.hero h1 {
  line-height: 1.1;
  max-width: 7.4ch;
  text-shadow: 0 0.08em 0.5em rgba(0, 0, 0, 0.24);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 20, 17, 0.16), rgba(16, 20, 17, 0.76)),
    linear-gradient(90deg, rgba(11, 16, 13, 0.92) 0%, rgba(11, 16, 13, 0.48) 42%, rgba(11, 16, 13, 0.38) 100%),
    url("image/hero-main.avif") center/cover no-repeat;
  transform: translate3d(0, 0, 0);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: end;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 34rem;
}

.eyebrow,
.card-kicker,
.floating-label {
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 800;
}

.eyebrow {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1rem;
}

.hero-lead,
.hero-sub {
  max-width: 30ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.98rem, 1.55vw, 1.12rem);
  text-wrap: balance;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.82);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1rem 0 0.2rem;
}

.hero-trust span {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.55rem 0 0;
}

.signal-card,
.manifesto-card,
.package-card,
.contact-card,
.protocol-card {
  border-radius: var(--radius-lg);
}

.price-row strong,
.floating-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  font-size: 1.12rem;
}

.hero-panel {
  position: relative;
  max-width: 32rem;
  width: 100%;
  justify-self: end;
  padding-left: 1.8rem;
  perspective: 1200px;
}

.hero-card {
  overflow: hidden;
  border-radius: 2.35rem;
  background: rgba(255, 253, 250, 0.92);
  color: var(--charcoal);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.22);
  transform: rotate(-0.6deg);
  transform-origin: center bottom;
}

.hero-card-image {
  position: relative;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.24) 46%, transparent 72%);
  opacity: 0.55;
  pointer-events: none;
}

.hero-card-image img {
  aspect-ratio: 5 / 4.5;
  object-fit: cover;
}

.hero-card-badge {
  position: absolute;
  left: 1rem;
  top: 1rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(26, 26, 26, 0.68);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.hero-card-body {
  padding: 1.25rem;
}

.card-kicker {
  color: var(--clay);
  margin-bottom: 0.6rem;
}

.hero-card-body h2 {
  max-width: none;
  font-size: clamp(1.3rem, 1.8vw, 1.95rem);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.85rem 0;
}

.chip-row span,
.top-nav a,
.telemetry-status,
.package-card ul,
.contact-card span,
.manifesto-card li {
  font-size: 0.95rem;
}

.chip-row span {
  padding: 0.5rem 0.7rem;
  border-radius: 999px;
  background: rgba(46, 64, 54, 0.08);
  color: var(--moss);
}

.price-row {
  display: grid;
  gap: 0.2rem;
}

.price-row span {
  color: var(--text-soft);
}

.floating-card {
  position: absolute;
  max-width: 14.25rem;
  padding: 1rem 1.05rem;
  background: rgba(255, 253, 250, 0.86);
  color: var(--charcoal);
  border-radius: 1.45rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.floating-card p {
  color: var(--text-soft);
  margin-bottom: 0;
  font-size: 0.96rem;
}

.floating-label {
  color: var(--moss);
}

.top-card {
  top: 1rem;
  right: -0.75rem;
  background: rgba(255, 253, 250, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 0.8rem 1.8rem rgba(18, 24, 21, 0.16);
}

.bottom-card {
  left: 0;
  bottom: 1.1rem;
}

.section {
  padding: clamp(4.25rem, 9vw, 7.5rem) 0;
}

.section-cream {
  background: var(--cream);
}

.section-head {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.section-head p {
  max-width: 52ch;
  color: var(--text-soft);
  margin: 0;
}

.signals-section .container {
  display: grid;
  gap: 2rem;
}

.section-head-signals {
  max-width: 58rem;
}

.section-head-signals h2 {
  max-width: 13.5ch;
}

.section-head-signals p:last-child {
  max-width: 42rem;
}

.signal-grid,
.package-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.awards-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
  align-items: stretch;
  margin-bottom: 1rem;
}

.awards-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(204, 88, 51, 0.12), transparent 24%),
    radial-gradient(circle at 88% 10%, rgba(46, 64, 54, 0.12), transparent 22%),
    linear-gradient(180deg, #f4f0e6 0%, #ece5d8 100%);
}

.awards-section::before,
.awards-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.awards-section::before {
  width: 18rem;
  height: 18rem;
  right: -5rem;
  top: 4rem;
  background: radial-gradient(circle, rgba(204, 88, 51, 0.2), transparent 68%);
}

.awards-section::after {
  width: 16rem;
  height: 16rem;
  left: -4rem;
  bottom: 6rem;
  background: radial-gradient(circle, rgba(46, 64, 54, 0.15), transparent 70%);
}

.awards-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.awards-highlights article {
  padding: 1.1rem 1.2rem;
  border-radius: 1.6rem;
  background: linear-gradient(180deg, rgba(255, 253, 250, 0.9), rgba(248, 242, 232, 0.96));
  border: 1px solid rgba(46, 64, 54, 0.08);
  box-shadow: 0 1rem 2.2rem rgba(64, 51, 39, 0.08);
}

.awards-highlights strong {
  display: block;
  margin-bottom: 0.25rem;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  color: var(--moss);
}

.awards-highlights span {
  color: var(--text-soft);
}

.signal-card,
.package-card,
.contact-card {
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: rgba(255, 253, 250, 0.72);
  box-shadow: var(--shadow);
}

.signal-grid {
  align-items: stretch;
}

.signal-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  min-height: 100%;
  overflow: hidden;
  transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease, background-color 0.32s ease;
}

.signal-card::before,
.package-card::before,
.contact-card::before,
.review-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 40%, transparent 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
}

.signal-card h3 {
  max-width: 14ch;
}

.signal-copy {
  max-width: 30ch;
  margin-bottom: 0;
}

.signal-copy,
.manifesto-card ul,
.package-card ul,
.contact-card small,
.contact-card div span {
  color: var(--text-soft);
}

.signal-card:hover,
.signal-card:focus-within,
.contact-card:hover,
.contact-card:focus-within,
.review-card:hover,
.review-card:focus-within {
  transform: translateY(-0.28rem);
}

.signal-card:hover::before,
.signal-card:focus-within::before,
.package-card:hover::before,
.package-card:focus-within::before,
.contact-card:hover::before,
.contact-card:focus-within::before,
.review-card:hover::after,
.review-card:focus-within::after {
  opacity: 1;
}

.card-icon {
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  border-radius: 1rem;
  background: rgba(46, 64, 54, 0.08);
  color: var(--moss);
  margin-bottom: 0.65rem;
}

.card-icon svg,
.contact-icon svg {
  width: 1.4rem;
  height: 1.4rem;
}

.stack-frame {
  position: relative;
  min-height: 12.5rem;
  margin-top: auto;
  padding-top: 0.6rem;
}

.stack-card {
  position: absolute;
  inset: 0 0 auto 0;
  padding: 1rem 1.1rem;
  border-radius: 1.4rem;
  background: var(--white);
  border: 1px solid rgba(46, 64, 54, 0.1);
  box-shadow: 0 1.2rem 2.6rem rgba(26, 26, 26, 0.08);
  color: var(--charcoal);
  transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}

.stack-card:nth-child(1) {
  transform: translateY(0) scale(1);
  z-index: 3;
}

.stack-card:nth-child(2) {
  transform: translateY(1rem) scale(0.96);
  opacity: 0.85;
  z-index: 2;
}

.stack-card:nth-child(3) {
  transform: translateY(2rem) scale(0.92);
  opacity: 0.62;
  z-index: 1;
}

.stack-card span {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  font-size: 0.77rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--clay);
}

.stack-card strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--charcoal);
}

.stack-card p {
  color: var(--text-soft);
}

.telemetry-panel {
  margin-top: auto;
  padding: 0.95rem 1rem;
  border-radius: 1.35rem;
  background: var(--charcoal);
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.telemetry-status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.68);
}

.status-dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: var(--clay);
  box-shadow: 0 0 1rem rgba(204, 88, 51, 0.5);
}

.telemetry-line {
  margin: 0.85rem 0 0;
  min-height: 2.6rem;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  font-size: 0.98rem;
}

.cursor {
  color: var(--clay-soft);
  animation: blink 1s steps(1, end) infinite;
}

.scheduler-board {
  margin-top: auto;
  padding: 0.95rem;
  border-radius: 1.35rem;
  background: rgba(46, 64, 54, 0.055);
}

.scheduler-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.scheduler-grid {
  position: relative;
}

.slot {
  min-height: 3.1rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.75rem 0.9rem;
  border-radius: 0.95rem;
  background: rgba(255, 253, 250, 0.9);
  border: 1px solid rgba(46, 64, 54, 0.08);
  font-weight: 600;
}

.slot.active {
  background: rgba(204, 88, 51, 0.12);
  color: var(--clay);
}

.scheduler-cursor {
  position: absolute;
  width: 1rem;
  height: 1rem;
  border-radius: 50% 50% 50% 0;
  background: var(--clay);
  transform: rotate(-45deg);
  box-shadow: 0 0 1rem rgba(204, 88, 51, 0.45);
  transition: transform 0.4s ease, left 0.4s ease, top 0.4s ease;
}

.manifesto {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--white);
}

.manifesto-texture {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background:
    linear-gradient(180deg, rgba(26, 26, 26, 0.68), rgba(26, 26, 26, 0.9)),
    url("image/texture.avif") center/cover no-repeat;
  transform: translate3d(0, 0, 0);
}

.manifesto-inner {
  position: relative;
  z-index: 1;
}

.manifesto-inner .section-head p,
.manifesto-card ul,
.manifesto-card li {
  color: var(--text-soft-dark);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: stretch;
}

.manifesto-card {
  position: relative;
  padding: 1.6rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-dark);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.manifesto-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0.28rem;
  background: rgba(255, 255, 255, 0.12);
}

.manifesto-card-risk::before {
  background: linear-gradient(180deg, rgba(255, 154, 117, 0.7), rgba(204, 88, 51, 0.14));
}

.manifesto-card-win::before {
  background: linear-gradient(180deg, rgba(168, 204, 186, 0.7), rgba(95, 151, 123, 0.12));
}

.manifesto-card ul,
.package-card ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.manifesto-divider {
  display: grid;
  place-items: center;
}

.manifesto-divider span {
  width: 4.4rem;
  height: 4.4rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-style: italic;
}

.protocol-stack {
  display: grid;
  gap: 1.1rem;
  padding: 0 1rem;
  padding-bottom: 3.2rem;
}

.protocol-card {
  --cover-progress: 0;
  position: sticky;
  top: 6rem;
  min-height: 64vh;
  display: flex;
  align-items: center;
  margin: 0 auto;
  width: min(1240px, 100%);
  color: var(--white);
  border-radius: 2.3rem;
  overflow: hidden;
  transition: transform 0.35s ease, filter 0.35s ease, opacity 0.35s ease, box-shadow 0.35s ease;
  will-change: transform, filter, opacity;
  filter: blur(calc(var(--cover-progress) * 0.75rem))
    saturate(calc(1 - var(--cover-progress) * 0.24))
    brightness(calc(1 - var(--cover-progress) * 0.28));
  opacity: calc(1 - var(--cover-progress) * 0.22);
  transform: scale(calc(1 - var(--cover-progress) * 0.038));
}

.protocol-card:nth-child(1) { z-index: 1; }
.protocol-card:nth-child(2) { z-index: 2; }
.protocol-card:nth-child(3) { z-index: 3; }

.protocol-card.is-past {
  box-shadow: none;
}

.protocol-card.is-active {
  box-shadow: 0 1.2rem 2.8rem rgba(14, 20, 17, 0.28);
}

.protocol-card.is-next {
  box-shadow: none;
}

.protocol-card-a {
  background: linear-gradient(135deg, #2e4036, #15231b);
}

.protocol-card-b {
  background: linear-gradient(135deg, #37443b, #1e2822);
}

.protocol-card-c {
  background: linear-gradient(135deg, #23352d, #131b17);
}

.protocol-inner {
  display: grid;
  grid-template-columns: 0.95fr 0.82fr;
  gap: 2rem;
  align-items: center;
  padding: 2.15rem 2.25rem;
}

.section-head-protocol {
  max-width: 56rem;
}

.section-head-protocol h2 {
  max-width: 12ch;
}

.section-head-protocol p:last-child {
  max-width: 44rem;
}

.protocol-copy {
  display: grid;
  gap: 0.85rem;
  align-content: center;
}

.protocol-stage {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
}

.protocol-stage span {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1;
}

.protocol-stage small {
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.56);
}

.protocol-copy h3 {
  max-width: 13ch;
}

.protocol-copy > p:not(.card-kicker) {
  max-width: 46ch;
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 0;
}

.protocol-points {
  margin: 0.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.protocol-points li {
  position: relative;
  padding-left: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
}

.protocol-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--clay);
  box-shadow: 0 0 1rem rgba(204, 88, 51, 0.35);
}

.protocol-visual {
  min-height: 18rem;
  display: grid;
  gap: 1rem;
  align-content: center;
}

.protocol-timeline {
  display: grid;
  gap: 0.8rem;
}

.protocol-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: center;
  padding: 0.95rem 1rem;
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.protocol-step span {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  font-weight: 800;
}

.protocol-step strong,
.protocol-note strong {
  display: block;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
}

.protocol-step small {
  display: block;
  margin-top: 0.12rem;
  color: rgba(255, 255, 255, 0.62);
}

.protocol-step.is-active {
  background: rgba(255, 253, 250, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 1.25rem 2.8rem rgba(0, 0, 0, 0.16);
}

.protocol-step.is-active span {
  background: var(--clay);
  color: var(--white);
}

.protocol-note {
  padding: 1.15rem 1.2rem;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.protocol-note p {
  margin: 0.45rem 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.packages {
  background: linear-gradient(180deg, rgba(242, 240, 233, 0.76), rgba(232, 228, 216, 0.94));
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-height: 28rem;
  transition: transform 0.28s ease, background-color 0.28s ease, border-color 0.28s ease, color 0.28s ease, box-shadow 0.28s ease;
  overflow: hidden;
}

.package-card strong {
  color: var(--moss);
  font-size: 0.96rem;
  line-height: 1.4;
}

.package-card p,
.package-card li {
  font-size: 0.95rem;
  line-height: 1.45;
}

.package-card ul {
  margin-top: auto;
  color: rgba(26, 26, 26, 0.74);
}

.package-card:hover,
.package-card:focus-within {
  transform: translateY(-0.3rem);
  background:
    radial-gradient(circle at top right, rgba(204, 88, 51, 0.2), transparent 26%),
    linear-gradient(180deg, rgba(46, 64, 54, 0.98), rgba(27, 38, 31, 0.98));
  border-color: var(--moss);
  color: var(--white);
  box-shadow: 0 1.35rem 2.6rem rgba(31, 45, 37, 0.24);
}

.package-card:hover .card-kicker,
.package-card:hover strong,
.package-card:hover p,
.package-card:hover li,
.package-card:focus-within .card-kicker,
.package-card:focus-within strong,
.package-card:focus-within p,
.package-card:focus-within li {
  color: var(--white);
}

.package-card:hover ul,
.package-card:focus-within ul {
  color: rgba(255, 255, 255, 0.82);
}

.packages-cta {
  display: flex;
  justify-content: center;
  margin-top: 1.2rem;
}

.packages-cta .btn-clay {
  width: auto;
  min-width: 15.5rem;
  margin-top: 0;
}

.contacts-shell {
  display: grid;
  gap: 1.6rem;
}

.contacts-copy p {
  max-width: 52ch;
  color: var(--text-soft);
}

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

.contact-card {
  position: relative;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
}

.contact-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  color: var(--charcoal);
}

.phone-text {
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.015em;
}

.contact-card:not(.contact-card-meta):hover,
.contact-card:not(.contact-card-meta):focus-within {
  border-color: rgba(46, 64, 54, 0.2);
  background: rgba(255, 253, 250, 0.92);
}

.award-card,
.review-card,
.reviews-side {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 253, 250, 0.82);
  box-shadow: var(--shadow);
}

.award-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(12rem, 0.65fr);
  gap: 0.85rem;
  padding: 1.55rem;
  background:
    linear-gradient(135deg, rgba(255, 253, 250, 0.94), rgba(241, 234, 222, 0.92)),
    rgba(255, 253, 250, 0.84);
}

.award-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(204, 88, 51, 0.11), transparent 20%),
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.24) 50%, transparent 100%);
  pointer-events: none;
}

.award-copy p:last-child {
  color: var(--text-soft);
  max-width: 28ch;
}

.award-badge {
  position: relative;
  display: grid;
  place-items: center;
  gap: 0;
  align-self: center;
  padding: 0.65rem;
  border-radius: 1.35rem;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.8), transparent 34%),
    linear-gradient(180deg, rgba(255, 249, 241, 0.98), rgba(240, 231, 217, 0.96));
  overflow: hidden;
}

.award-illustration {
  width: min(100%, 11.75rem);
  height: auto;
  filter: drop-shadow(0 0.65rem 1rem rgba(46, 64, 54, 0.1));
}

.reviews-side {
  display: grid;
  align-content: start;
  gap: 0.9rem;
  padding: 1.6rem;
  background:
    linear-gradient(180deg, rgba(46, 64, 54, 0.92), rgba(31, 45, 37, 0.96)),
    rgba(46, 64, 54, 0.92);
  color: var(--white);
}

.rating-widget {
  width: max-content;
  padding: 0.6rem 0.7rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.95);
}

.reviews-link-text {
  color: var(--text-soft);
  margin-bottom: 0;
}

.reviews-side .card-kicker,
.reviews-side h3,
.reviews-side-copy {
  color: var(--white);
}

.reviews-side-copy {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.reviews-mobile-hint {
  display: none;
}

.review-card {
  position: relative;
  padding: 1.4rem;
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.96), rgba(246, 240, 230, 0.92)),
    rgba(255, 253, 250, 0.9);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.review-card::before {
  content: "\201C";
  position: absolute;
  top: 0.7rem;
  right: 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  line-height: 1;
  color: rgba(204, 88, 51, 0.14);
}

.review-card:hover,
.review-card:focus-within {
  box-shadow: 0 1.35rem 2.6rem rgba(64, 51, 39, 0.12);
}

.review-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.review-head strong {
  display: block;
  margin-bottom: 0.2rem;
}

.review-head span {
  color: var(--text-soft);
}

.review-stars {
  color: #f0b419;
  letter-spacing: 0.08em;
  font-size: 1.05rem;
}

.review-accent {
  display: inline-flex;
  margin-bottom: 0.9rem;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: rgba(204, 88, 51, 0.1);
  color: var(--clay);
  font-weight: 700;
}

.awards-bridge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1.15rem 1.2rem;
  border-radius: 1.5rem;
  background: rgba(255, 253, 250, 0.74);
  border: 1px solid rgba(46, 64, 54, 0.08);
  box-shadow: 0 1rem 2rem rgba(64, 51, 39, 0.08);
}

.awards-bridge p {
  margin: 0;
  max-width: 40ch;
  color: var(--charcoal);
}

.awards-bridge .btn-clay {
  width: auto;
  min-width: 14rem;
  margin-top: 0;
}

.contact-card-meta {
  cursor: default;
}

.contact-icon {
  flex: 0 0 3rem;
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 1rem;
  color: var(--moss);
  background: rgba(46, 64, 54, 0.08);
}

.site-footer {
  padding: 2.4rem 0 6.5rem;
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.74);
  border-top-left-radius: 4rem;
  border-top-right-radius: 4rem;
}

.site-footer .container {
  width: var(--container);
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(14rem, 0.72fr);
  align-items: start;
  gap: 1.6rem;
  padding: 0;
}

.footer-brand {
  max-width: 40rem;
}

.footer-brand strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--white);
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
}

.footer-brand p,
.footer-legal p {
  line-height: 1.6;
}

.footer-legal {
  margin-top: 0.9rem;
}

.footer-legal p {
  margin-bottom: 0.25rem;
}

.footer-links {
  display: grid;
  gap: 0.35rem;
  margin-top: 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.footer-side-slot {
  display: flex;
  justify-content: flex-end;
  min-height: 1px;
}

.cookie-consent {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  width: min(46rem, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0.8rem 0.9rem;
  border-radius: 1.25rem;
  background:
    linear-gradient(165deg, rgba(255, 254, 251, 0.97) 0%, rgba(248, 244, 237, 0.94) 100%);
  border: 1px solid rgba(46, 64, 54, 0.17);
  box-shadow:
    0 1.4rem 2.8rem rgba(31, 45, 37, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  display: grid;
  gap: 0.48rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(1rem);
  transition: opacity 0.22s ease, transform 0.22s ease;
  overflow: hidden;
}

.cookie-consent::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 0.2rem;
  background: linear-gradient(90deg, var(--clay) 0%, var(--moss) 55%, rgba(46, 64, 54, 0.3) 100%);
}

.cookie-consent.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.cookie-consent-head {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--moss-deep);
}

.cookie-consent-head strong {
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  font-size: 0.88rem;
  letter-spacing: -0.01em;
}

.cookie-consent-dot {
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, #ff9f80 0%, var(--clay) 75%);
  box-shadow: 0 0 0 0.2rem rgba(204, 88, 51, 0.14);
}

.cookie-consent-copy {
  margin: 0;
  color: rgba(26, 26, 26, 0.78);
  font-size: 0.9rem;
  line-height: 1.37;
}

.cookie-consent-copy.is-muted {
  color: rgba(26, 26, 26, 0.58);
  font-size: 0.84rem;
}

.cookie-consent a {
  color: var(--moss-deep);
  font-weight: 600;
  text-underline-offset: 0.18em;
}

.cookie-consent-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.cookie-consent-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 7.4rem;
  min-height: 2.28rem;
  padding: 0 0.95rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.cookie-consent-btn.accept {
  background: linear-gradient(135deg, var(--moss-deep) 0%, var(--moss) 100%);
  color: var(--white);
  border-color: rgba(46, 64, 54, 0.4);
  box-shadow: 0 0.55rem 1.1rem rgba(31, 45, 37, 0.2);
}

.cookie-consent-btn.decline {
  background: rgba(46, 64, 54, 0.05);
  color: var(--moss);
  border-color: rgba(46, 64, 54, 0.18);
}

.cookie-consent-btn:hover {
  transform: translateY(-1px);
}

.cookie-consent-btn.accept:hover {
  box-shadow: 0 0.7rem 1.2rem rgba(31, 45, 37, 0.24);
}

.cookie-consent-btn:focus-visible {
  outline: 2px solid rgba(46, 64, 54, 0.35);
  outline-offset: 2px;
}

.mobile-bar {
  display: none;
}

.scroll-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 34;
  width: 3.35rem;
  height: 3.35rem;
  border: 0;
  border-radius: 999px;
  background: var(--moss);
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 1rem 2rem rgba(31, 45, 37, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.8rem);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.reveal {
  opacity: 0;
  transform: translateY(1.2rem);
  transition: opacity 0.7s ease var(--reveal-delay, 0ms), transform 0.7s ease var(--reveal-delay, 0ms);
}

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

@keyframes blink {
  50% {
    opacity: 0;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes scan {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(100%);
  }
}

@media (max-width: 1080px) {
  .hero {
    padding-top: 8.6rem;
    min-height: auto;
  }

  .hero h1 {
    max-width: 8.6ch;
    font-size: clamp(2.7rem, 6.2vw, 4.25rem);
    line-height: 1.02;
  }

  .hero-copy {
    max-width: 30rem;
  }

  .hero-lead,
  .hero-sub {
    max-width: 27ch;
    font-size: 1.02rem;
  }

  .hero-trust {
    gap: 0.5rem;
  }

  .hero-trust span {
    font-size: 0.92rem;
  }

  .hero-actions {
    gap: 0.65rem;
  }

  .hero-panel {
    align-self: end;
    max-width: 27rem;
  }

  .hero-card {
    transform: none;
  }

  .header-shell {
    min-height: 4.3rem;
    padding: 0.72rem 0.9rem;
    gap: 0.8rem;
  }

  .brand-logo {
    width: 9.8rem;
  }

  .top-nav {
    display: none;
  }

  .nav-cta {
    min-height: 2.7rem;
    padding: 0 0.95rem;
    font-size: 0.94rem;
    flex: 0 0 auto;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(19rem, 0.8fr);
    gap: 1.25rem;
    align-items: end;
  }

  .signal-grid,
  .package-grid,
  .manifesto-grid,
  .protocol-inner,
  .awards-grid,
  .awards-highlights,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .award-card {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 1rem;
  }

  .award-copy p:last-child {
    max-width: 32ch;
  }

  .award-badge {
    width: min(18rem, 100%);
    justify-self: start;
  }

  .reviews-side {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    align-items: start;
  }

  .reviews-side .rating-widget {
    grid-column: auto;
    grid-row: auto;
    align-self: start;
  }

  .reviews-side-copy {
    max-width: 34ch;
  }

  .section-head-signals h2,
  .section-head-protocol h2,
  .signal-card h3,
  .protocol-copy h3,
  .signal-copy {
    max-width: none;
  }

  .manifesto-divider {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .floating-card {
    position: static;
    margin-top: 1rem;
  }

  .hero-panel {
    padding-left: 0;
  }

  .awards-bridge {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-shell {
    gap: 1.6rem;
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-side-slot {
    width: 100%;
  }

  .footer-side-slot {
    justify-content: flex-start;
  }

  .site-footer .container {
    width: calc(100% - 4.8rem);
  }

  .scroll-top {
    right: 1.2rem;
    bottom: 1.4rem;
  }
}

@media (max-width: 900px) {
  .hero {
    padding-top: 9rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    align-items: start;
  }

  .hero h1 {
    max-width: 8.2ch;
    font-size: clamp(2.45rem, 5.4vw, 3.65rem);
  }

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

  .hero-lead,
  .hero-sub {
    max-width: none;
    font-size: 0.98rem;
  }

  .hero-panel {
    max-width: min(26rem, 100%);
    justify-self: start;
    align-self: start;
  }

  .floating-card {
    width: 100%;
    max-width: none;
  }

  .award-card,
  .reviews-side {
    grid-template-columns: 1fr;
  }

  .award-badge {
    width: 100%;
    justify-self: stretch;
  }

  .reviews-side .rating-widget {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 760px) {
  h2 {
    font-size: clamp(1.9rem, 8vw, 2.45rem);
  }

  .site-header {
    position: absolute;
    top: 0.7rem;
  }

  .header-shell {
    min-height: 4.2rem;
    padding: 0.7rem 1rem;
  }

  .nav-cta {
    display: inline-flex;
    min-height: 2.65rem;
    padding: 0 0.95rem;
    font-size: 0.95rem;
    background: rgba(255, 253, 250, 0.12);
    border-color: rgba(255, 255, 255, 0.16);
    color: var(--white);
  }

  .brand-logo {
    width: 8.6rem;
  }

  .hero {
    padding-top: 7.6rem;
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    align-items: start;
  }

  .hero::before,
  .hero::after {
    opacity: 0.6;
  }

  .hero h1 {
    max-width: 8.2ch;
  }

  .cookie-consent {
    left: 0.6rem;
    right: 0.6rem;
    bottom: 0.6rem;
    width: auto;
    border-radius: 1rem;
    padding: 0.72rem 0.72rem calc(0.72rem + env(safe-area-inset-bottom));
  }

  .cookie-consent-actions {
    justify-content: stretch;
    gap: 0.4rem;
  }

  .cookie-consent-btn {
    flex: 1 1 calc(50% - 0.25rem);
    min-width: 0;
    min-height: 2.65rem;
  }

  .hero-lead,
  .hero-sub {
    max-width: none;
  }

  .hero-trust {
    gap: 0.5rem;
  }

  .hero-trust span {
    font-size: 0.88rem;
  }

  .hero-panel {
    max-width: none;
    padding-left: 0;
    justify-self: stretch;
    align-self: start;
  }

  .hero-card {
    transform: none;
  }

  .scheduler-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .protocol-card {
    position: relative;
    top: auto;
    min-height: auto;
    transform: none !important;
    filter: none !important;
    opacity: 1;
    box-shadow: none;
    will-change: auto;
  }

  .protocol-inner {
    padding: 1.5rem;
  }

  .signal-card,
  .package-card,
  .contact-card,
  .review-card,
  .award-card,
  .reviews-side {
    padding: 1.2rem;
  }

  .section-head {
    gap: 0.65rem;
    margin-bottom: 1.4rem;
  }

  .section-head p {
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .signal-card h3,
  .protocol-copy h3 {
    max-width: 12ch;
  }

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

  .stack-frame {
    min-height: 13.5rem;
    padding-top: 0.25rem;
  }

  .stack-card {
    padding: 0.9rem 0.95rem;
  }

  .package-card {
    min-height: auto;
  }

  .reviews-mobile-hint {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 0 0.85rem;
    color: rgba(46, 64, 54, 0.72);
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.02em;
  }

  .reviews-mobile-hint::before {
    content: "";
    width: 2.8rem;
    height: 0.24rem;
    margin-right: 0.6rem;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(204, 88, 51, 0.95), rgba(46, 64, 54, 0.36));
    box-shadow: 0 0 0.8rem rgba(204, 88, 51, 0.18);
  }

  .reviews-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 86%;
    grid-template-columns: none;
    gap: 0.85rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 0.2rem;
    margin: 0;
    background: transparent;
    box-shadow: none;
    border: 0;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .reviews-grid::-webkit-scrollbar {
    display: none;
  }

  .review-card {
    min-height: 22rem;
    height: 100%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    box-shadow: none;
  }

  .review-card:hover,
  .review-card:focus-within {
    transform: none;
    box-shadow: none;
  }

  .awards-bridge {
    padding: 1rem;
  }

  .awards-bridge .btn-clay,
  .packages-cta .btn-clay {
    width: 100%;
  }

  .site-footer {
    padding: 1.85rem 0 7.9rem;
    border-top-left-radius: 2.6rem;
    border-top-right-radius: 2.6rem;
  }

  .site-footer .container {
    width: calc(100% - 3.7rem);
  }

  .footer-shell {
    gap: 1.35rem;
    padding: 0;
  }

  .footer-brand strong {
    font-size: 1rem;
    line-height: 1.35;
  }

  .footer-brand p,
  .footer-legal p {
    font-size: 0.98rem;
  }

  .footer-legal {
    padding-top: 0.2rem;
  }

  .scroll-top {
    right: 0.8rem;
    bottom: 6.1rem;
  }

  .mobile-bar {
    position: fixed;
    left: 0.6rem;
    right: 0.6rem;
    bottom: 0.6rem;
    z-index: 35;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
    padding: 0.42rem;
    border-radius: 1.2rem;
    background: rgba(255, 253, 250, 0.88);
    border: 1px solid rgba(46, 64, 54, 0.12);
    backdrop-filter: blur(16px);
    box-shadow: 0 1rem 2.2rem rgba(31, 45, 37, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(0.9rem);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .mobile-bar.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .mobile-bar a {
    min-height: 2.8rem;
    font-size: 0.88rem;
    border-radius: 0.9rem;
    background: rgba(46, 64, 54, 0.08);
    color: var(--moss);
  }

  .mobile-bar a[data-channel="whatsapp"] {
    background: linear-gradient(135deg, var(--wa-green-deep) 0%, var(--wa-green) 100%);
    color: var(--white);
    border: 1px solid rgba(161, 231, 196, 0.5);
  }

  .mobile-bar a[data-channel="telegram"] {
    background: linear-gradient(135deg, var(--tg-blue-deep) 0%, var(--tg-blue) 100%);
    color: var(--white);
    border: 1px solid rgba(170, 220, 245, 0.5);
  }
}

@media (max-width: 900px), (hover: none) and (pointer: coarse) {
  .scroll-top {
    right: 0.8rem;
    bottom: 6.1rem;
  }

  .mobile-bar {
    position: fixed;
    left: 0.6rem;
    right: 0.6rem;
    bottom: 0.6rem;
    z-index: 35;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
    padding: 0.42rem;
    border-radius: 1.2rem;
    background: rgba(255, 253, 250, 0.88);
    border: 1px solid rgba(46, 64, 54, 0.12);
    backdrop-filter: blur(16px);
    box-shadow: 0 1rem 2.2rem rgba(31, 45, 37, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(0.9rem);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .mobile-bar.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .mobile-bar a {
    min-height: 2.8rem;
    font-size: 0.88rem;
    border-radius: 0.9rem;
    background: rgba(46, 64, 54, 0.08);
    color: var(--moss);
  }

  .mobile-bar a[data-channel="whatsapp"] {
    background: linear-gradient(135deg, var(--wa-green-deep) 0%, var(--wa-green) 100%);
    color: var(--white);
    border: 1px solid rgba(161, 231, 196, 0.5);
  }

  .mobile-bar a[data-channel="telegram"] {
    background: linear-gradient(135deg, var(--tg-blue-deep) 0%, var(--tg-blue) 100%);
    color: var(--white);
    border: 1px solid rgba(170, 220, 245, 0.5);
  }
}

@media (max-width: 380px) {
  .header-shell {
    min-height: 4rem;
    padding: 0.58rem 0.72rem;
    gap: 0.55rem;
  }

  .brand-logo {
    width: 7.4rem;
  }

  .nav-cta {
    min-height: 2.45rem;
    padding: 0 0.75rem;
    font-size: 0.86rem;
  }
}

@media (min-width: 901px) and (max-width: 1080px) {
  .hero {
    padding-top: 8.8rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    align-items: start;
  }

  .hero h1 {
    max-width: 8.2ch;
    font-size: clamp(3rem, 5.2vw, 4.15rem);
  }

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

  .hero-lead,
  .hero-sub {
    max-width: none;
    font-size: 1rem;
  }

  .hero-panel {
    max-width: min(26rem, 100%);
    justify-self: start;
    align-self: start;
  }

  .hero-card-body h2 {
    font-size: clamp(1.15rem, 1.7vw, 1.55rem);
  }
}

@media (min-width: 1081px) and (max-width: 1366px) {
  .site-footer .container {
    width: calc(100% - 4.8rem);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
