:root {
  color-scheme: light;
  --ink: #17211f;
  --ink-2: #2b3834;
  --muted: #68726d;
  --paper: #fffaf1;
  --paper-2: #f1eadc;
  --paper-3: #e5dcc9;
  --copper: #a75d2d;
  --copper-dark: #5a321e;
  --gold: #d6b154;
  --cyan: #08aeb5;
  --green: #21755f;
  --graphite: #14211f;
  --white: #ffffff;
  --line: rgba(23, 33, 31, 0.13);
  --shadow: 0 24px 70px rgba(40, 35, 25, 0.16);
  --shadow-soft: 0 18px 42px rgba(42, 35, 25, 0.11);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: rgba(8, 174, 181, 0.22);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border-radius: 6px;
  background: var(--graphite);
  color: var(--white);
  padding: 10px 14px;
  font-weight: 800;
}

.skip-link:focus {
  width: auto;
  height: auto;
  overflow: visible;
  clip-path: none;
  white-space: normal;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 14px max(18px, calc((100% - var(--max)) / 2));
  border-bottom: 1px solid rgba(23, 33, 31, 0.09);
  background: rgba(255, 250, 241, 0.91);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 36px rgba(31, 26, 18, 0.08);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  width: 164px;
  min-width: 164px;
}

.brand-link img {
  width: 164px;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  min-width: 0;
}

.main-nav a {
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--ink-2);
  font-size: 0.92rem;
  font-weight: 750;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(33, 117, 95, 0.1);
  color: var(--green);
  outline: none;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 12px 18px;
  font-weight: 850;
  line-height: 1;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.header-cta {
  background: var(--graphite);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(20, 33, 31, 0.16);
}

.header-cta:hover,
.header-cta:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.section-band {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 88px 24px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 42px;
  align-items: center;
  min-height: 790px;
  padding-top: 60px;
  padding-bottom: 52px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 22px 24px auto 24px;
  height: 86%;
  z-index: -2;
  border: 1px solid rgba(214, 177, 84, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.18)),
    repeating-linear-gradient(135deg, rgba(90, 50, 30, 0.05) 0 1px, transparent 1px 18px);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 24px 24px 24px;
  height: 106px;
  z-index: -1;
  border-radius: var(--radius);
  background: var(--graphite);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.proof-copy h2,
.contact-card h2 {
  margin: 0;
  color: var(--ink);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 9ch;
  font-size: 4.35rem;
  font-weight: 950;
}

.hero-lede {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--ink-2);
  font-size: 1.24rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button-primary {
  background: var(--copper-dark);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(90, 50, 30, 0.23);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #6b3c23;
}

.button-secondary {
  border-color: rgba(23, 33, 31, 0.18);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(8, 174, 181, 0.42);
  background: rgba(8, 174, 181, 0.1);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 560px;
  margin: 34px 0 0;
}

.hero-facts div {
  min-width: 0;
  border: 1px solid rgba(23, 33, 31, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  padding: 14px;
}

.hero-facts dt {
  margin: 0 0 4px;
  color: var(--copper);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  color: var(--ink);
  font-weight: 850;
}

.hero-visual {
  min-width: 0;
}

.hero-stage {
  position: relative;
  min-height: 630px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 240, 223, 0.64)),
    radial-gradient(circle at 50% 74%, rgba(8, 174, 181, 0.2), transparent 42%);
  box-shadow: var(--shadow);
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(90, 50, 30, 0.12);
  border-radius: 6px;
}

.hero-stage::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 138px;
  background:
    linear-gradient(180deg, rgba(20, 33, 31, 0), rgba(20, 33, 31, 0.78)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 34px);
}

.mascot {
  position: absolute;
  left: 50%;
  bottom: 42px;
  z-index: 2;
  width: min(82%, 540px);
  transform: translateX(-50%);
  filter: drop-shadow(0 34px 34px rgba(44, 31, 18, 0.23));
}

.ticket,
.product-orbit {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.ticket {
  display: grid;
  gap: 2px;
  padding: 13px 16px;
}

.ticket span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.ticket strong {
  color: var(--ink);
  font-size: 0.98rem;
}

.ticket-one {
  left: 28px;
  top: 34px;
}

.ticket-two {
  right: 32px;
  top: 82px;
}

.product-orbit {
  width: 164px;
  height: 132px;
  display: grid;
  place-items: center;
  padding: 12px;
}

.product-orbit img {
  max-height: 104px;
  object-fit: contain;
}

.product-a {
  left: 30px;
  bottom: 158px;
}

.product-b {
  right: 28px;
  bottom: 172px;
}

.product-c {
  right: 88px;
  bottom: 34px;
  width: 126px;
  height: 126px;
}

.confidence-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: calc(var(--max) - 48px);
  margin: -6px auto 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--graphite);
  color: var(--white);
  box-shadow: 0 20px 48px rgba(20, 33, 31, 0.16);
}

.strip-item {
  display: grid;
  gap: 2px;
  min-width: 0;
  padding: 22px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.strip-item:last-child {
  border-right: 0;
}

.strip-kicker {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
}

.strip-item strong {
  font-size: 1.18rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.proof-copy h2,
.contact-card h2 {
  font-size: 3rem;
  font-weight: 920;
}

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

.intro-panel,
.line-card,
.flow-step,
.proof-board {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow-soft);
}

.intro-panel {
  min-height: 210px;
  padding: 24px;
}

.intro-panel h3,
.line-card h3,
.flow-step h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1.2;
}

.intro-panel p,
.line-card p,
.flow-step p,
.proof-copy p,
.contact-card p,
.site-footer p {
  margin: 14px 0 0;
  color: var(--muted);
}

.lines-section {
  max-width: none;
  padding-left: max(24px, calc((100% - var(--max)) / 2));
  padding-right: max(24px, calc((100% - var(--max)) / 2));
  background:
    linear-gradient(180deg, rgba(241, 234, 220, 0.52), rgba(255, 250, 241, 0)),
    repeating-linear-gradient(0deg, rgba(23, 33, 31, 0.035) 0 1px, transparent 1px 28px);
}

.line-showcase {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.line-card {
  overflow: hidden;
}

.line-card img {
  width: 100%;
  aspect-ratio: 1.12;
  background: #fff;
  object-fit: contain;
  padding: 16px;
}

.line-card div {
  padding: 20px;
}

.line-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 950;
}

.operation {
  padding-top: 72px;
}

.operation-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.flow-step {
  min-height: 236px;
  padding: 22px;
}

.flow-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 6px;
  background: rgba(8, 174, 181, 0.14);
  color: #056c72;
  font-weight: 950;
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 26px;
  align-items: stretch;
}

.proof-copy {
  min-width: 0;
  border-radius: var(--radius);
  background: var(--graphite);
  padding: 42px;
  color: var(--white);
}

.proof-copy .eyebrow {
  color: #7be4df;
}

.proof-copy h2 {
  color: var(--white);
}

.proof-copy p {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.72);
}

.proof-board {
  display: grid;
  align-content: stretch;
  overflow: hidden;
  background: #fff;
}

.proof-row {
  display: grid;
  grid-template-columns: minmax(110px, 0.52fr) minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 25px 28px;
  border-bottom: 1px solid var(--line);
}

.proof-row:last-child {
  border-bottom: 0;
}

.proof-row span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-row strong {
  min-width: 0;
  color: var(--ink);
  font-size: 1.2rem;
}

.contact-section {
  padding: 28px 24px 88px;
}

.contact-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  max-width: var(--max);
  margin: 0 auto;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.5)),
    var(--paper-2);
  padding: 30px;
  box-shadow: var(--shadow);
}

.contact-card > img {
  width: 132px;
  filter: drop-shadow(0 16px 18px rgba(44, 31, 18, 0.19));
}

.contact-card h2 {
  max-width: 740px;
  font-size: 2.35rem;
}

.contact-actions {
  display: grid;
  gap: 12px;
  justify-items: stretch;
}

.phone-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: var(--copper-dark);
  font-weight: 900;
}

.phone-link:hover,
.phone-link:focus-visible {
  background: rgba(90, 50, 30, 0.08);
  outline: none;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 34px max(24px, calc((100% - var(--max)) / 2));
  border-top: 1px solid rgba(23, 33, 31, 0.1);
  background: #f6efe2;
}

.site-footer img {
  width: 156px;
}

.site-footer p {
  max-width: 620px;
  margin-top: 8px;
}

.site-footer a {
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--green);
  font-weight: 900;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  background: rgba(33, 117, 95, 0.1);
  outline: none;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  border-radius: 6px;
  background: #0f8f5f;
  color: var(--white);
  padding: 0 18px;
  font-weight: 920;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  box-shadow: 0 18px 36px rgba(15, 143, 95, 0.28);
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    background 160ms ease;
}

.floating-whatsapp.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  background: #0a7b51;
  outline: none;
}

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

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

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1180px) {
  .hero h1 {
    font-size: 5.6rem;
  }

  .hero-lede {
    font-size: 1.32rem;
  }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .main-nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 48px;
  }

  .hero::before {
    height: 95%;
  }

  .hero-stage {
    min-height: 610px;
  }

  .line-showcase,
  .operation-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .proof-section,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    justify-items: start;
  }
}

@media (max-width: 720px) {
  .site-header {
    gap: 12px;
    padding: 12px 16px;
  }

  .brand-link,
  .brand-link img {
    width: 138px;
    min-width: 138px;
  }

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

  .main-nav {
    gap: 2px;
  }

  .main-nav a {
    padding: 9px 10px;
    font-size: 0.86rem;
  }

  .section-band {
    padding: 60px 18px;
  }

  .hero {
    padding-top: 38px;
    padding-bottom: 44px;
  }

  .hero::before {
    inset: 14px 14px auto 14px;
  }

  .hero::after {
    inset: auto 14px 16px 14px;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .hero-lede {
    font-size: 1.08rem;
  }

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

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

  .hero-stage {
    min-height: 500px;
  }

  .mascot {
    width: min(90%, 420px);
    bottom: 36px;
  }

  .ticket {
    padding: 10px 12px;
  }

  .ticket-two {
    right: 22px;
    top: 80px;
  }

  .product-orbit {
    width: 120px;
    height: 102px;
  }

  .product-a {
    left: 20px;
    bottom: 128px;
  }

  .product-b {
    right: 18px;
    bottom: 140px;
  }

  .product-c {
    display: none;
  }

  .confidence-strip {
    grid-template-columns: 1fr;
    margin-left: 16px;
    margin-right: 16px;
  }

  .strip-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .strip-item:last-child {
    border-bottom: 0;
  }

  .section-heading h2,
  .proof-copy h2 {
    font-size: 2.25rem;
  }

  .line-showcase,
  .operation-flow {
    grid-template-columns: 1fr;
  }

  .proof-copy {
    padding: 28px;
  }

  .proof-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 22px;
  }

  .contact-section {
    padding: 14px 18px 68px;
  }

  .contact-card {
    padding: 24px;
  }

  .contact-card > img {
    width: 108px;
  }

  .contact-card h2 {
    font-size: 2rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 28px 18px 82px;
  }

  .floating-whatsapp {
    left: 16px;
    right: 16px;
    justify-content: center;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

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