:root {
  --ink: #14211f;
  --muted: #62706c;
  --paper: #fff9ef;
  --cream: #f4eddf;
  --mist: #e9f7f4;
  --line: #ded8c9;
  --red: #e51d2d;
  --red-dark: #b70f1c;
  --green: #123d31;
  --aqua: #57b4c6;
  --sun: #f1bd58;
  --white: #fff;
  --shadow: 0 28px 80px rgba(17, 33, 31, .18);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

.offer-bar {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 8px 18px;
  color: var(--white);
  background: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(18px, 5vw, 72px);
  background: rgba(255, 249, 239, .9);
  border-bottom: 1px solid rgba(20, 33, 31, .08);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  gap: 3px;
  text-decoration: none;
}

.brand span {
  width: max-content;
  padding: 5px 10px 7px;
  color: var(--white);
  background: var(--red);
  border-radius: 6px;
  font-size: 25px;
  font-weight: 950;
  line-height: .9;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.desktop-nav {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.desktop-nav a,
.button,
.header-action,
.sticky-conversion a {
  text-decoration: none;
}

.desktop-nav a:hover {
  color: var(--red);
}

.button,
.header-action,
.sticky-conversion a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 0;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 920;
  cursor: pointer;
}

.button.primary,
.header-action,
.sticky-conversion a {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 16px 34px rgba(229, 29, 45, .2);
}

.button.ghost {
  color: var(--green);
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(20, 33, 31, .12);
}

.button.light {
  color: var(--white);
  background: rgba(255, 255, 255, .16);
  border-color: rgba(255, 255, 255, .36);
}

.button:hover,
.header-action:hover,
.sticky-conversion a:hover {
  transform: translateY(-1px);
}

.hero {
  min-height: clamp(540px, 68vh, 660px);
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(400px, .9fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
  padding: clamp(26px, 3.6vw, 48px) clamp(18px, 5vw, 72px) clamp(28px, 3vw, 42px);
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 16%, rgba(87, 180, 198, .28), transparent 30%),
    radial-gradient(circle at 12% 82%, rgba(241, 189, 88, .22), transparent 28%),
    linear-gradient(135deg, var(--paper), var(--mist));
}

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

.eyebrow,
.section-kicker,
.proof-card span,
.route-card span,
.price-panel span {
  color: var(--red);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 640px;
  margin-bottom: 18px;
  font-size: clamp(38px, 4.7vw, 64px);
  line-height: .94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(36px, 5.2vw, 72px);
  line-height: .92;
  letter-spacing: 0;
}

h3 {
  letter-spacing: 0;
}

.lead {
  max-width: 650px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: clamp(17px, 1.55vw, 20px);
}

.hero-actions,
.final-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.proof-points {
  width: min(100%, 720px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.proof-points div {
  min-height: 104px;
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 14px;
  background: rgba(255, 255, 255, .74);
  border: 1px solid rgba(20, 33, 31, .1);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(20, 33, 31, .08);
}

.proof-points strong {
  color: var(--green);
  font-size: 17px;
  line-height: 1.05;
}

.proof-points p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
}

.hero-visual {
  position: relative;
  min-height: 430px;
}

.visual-shell {
  position: relative;
  height: min(46vh, 430px);
  min-height: 380px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green);
  box-shadow: var(--shadow);
}

.visual-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  width: min(70%, 460px);
  padding: 18px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(18, 61, 49, .52), rgba(18, 61, 49, .88));
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.visual-caption span {
  color: var(--sun);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.visual-caption strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: .98;
}

.campaign-hero {
  position: relative;
  min-height: clamp(570px, 74vh, 730px);
  display: block;
  isolation: isolate;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 22, 18, .88) 0%, rgba(7, 22, 18, .68) 43%, rgba(7, 22, 18, .22) 72%, rgba(7, 22, 18, .06) 100%),
    var(--hero-image);
  background-size: cover;
  background-position: var(--hero-position, center);
  padding: clamp(72px, 8vw, 110px) clamp(18px, 5vw, 72px) clamp(64px, 7vw, 96px);
}

.campaign-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 28%;
  background: linear-gradient(180deg, transparent, rgba(7, 22, 18, .5));
}

.campaign-hero .hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.campaign-hero .eyebrow {
  color: var(--sun);
}

.campaign-hero h1 {
  max-width: 760px;
  font-size: clamp(42px, 5.6vw, 76px);
  text-shadow: 0 18px 44px rgba(0, 0, 0, .32);
}

.campaign-hero .lead {
  color: rgba(255, 255, 255, .88);
  text-shadow: 0 12px 32px rgba(0, 0, 0, .24);
}

.campaign-hero .button.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, .16);
  border-color: rgba(255, 255, 255, .32);
  backdrop-filter: blur(12px);
}

.campaign-hero .proof-points div {
  background: rgba(18, 61, 49, .44);
  border-color: rgba(255, 255, 255, .18);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .16);
  backdrop-filter: blur(12px);
}

.campaign-hero .proof-points strong {
  color: var(--white);
}

.campaign-hero .proof-points p {
  color: rgba(255, 255, 255, .78);
}

.campaign-hero .hero-visual {
  display: none;
}

.section,
.final-cta {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.section-head {
  max-width: 960px;
  margin-bottom: 34px;
}

.section-head.narrow {
  max-width: 780px;
}

.section-head p:not(.section-kicker),
.environment-copy p,
.final-cta p {
  color: var(--muted);
  font-size: 19px;
}

.proof-section {
  background: var(--green);
  color: var(--white);
}

.proof-section .section-kicker,
.proof-section .proof-card span {
  color: var(--sun);
}

.proof-section .section-head p:not(.section-kicker) {
  color: rgba(255, 255, 255, .72);
}

.usage-guide-figure {
  margin: 0 0 24px;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  box-shadow: 0 24px 68px rgba(0, 0, 0, .18);
}

.usage-guide-copy {
  max-width: 780px;
  padding: clamp(22px, 3vw, 34px) clamp(18px, 3vw, 34px) 12px;
}

.usage-guide-copy span {
  color: var(--red);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.usage-guide-copy h3 {
  max-width: 620px;
  margin: 8px 0 10px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: .94;
}

.usage-guide-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.usage-guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(14px, 2.4vw, 24px) clamp(14px, 2.4vw, 24px);
}

.usage-guide-grid article {
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.usage-guide-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #fff8ef;
}

.usage-guide-grid div {
  padding: 14px;
}

.usage-guide-grid strong {
  display: block;
  color: var(--red);
  font-size: 14px;
  font-weight: 950;
}

.usage-guide-grid span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

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

.proof-card,
.route-card {
  overflow: hidden;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
}

.route-card {
  background: var(--white);
  border-color: var(--line);
  box-shadow: 0 16px 44px rgba(20, 33, 31, .07);
}

.proof-card img,
.route-card img {
  width: 100%;
  aspect-ratio: 16 / 12;
  object-fit: contain;
  background: #f4eddf;
}

.ambient-scene {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 12;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 249, 239, .94) 0 58%, rgba(218, 203, 181, .96) 58% 100%);
}

.ambient-scene::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  background:
    linear-gradient(90deg, rgba(20, 33, 31, .08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .22), rgba(137, 115, 86, .08));
  background-size: 42px 100%, 100% 100%;
  transform: skewY(-5deg);
  transform-origin: left bottom;
}

.ambient-scene::after {
  content: "";
  position: absolute;
  left: 9%;
  top: 13%;
  width: 25%;
  height: 34%;
  border: 8px solid rgba(255, 255, 255, .72);
  background: linear-gradient(135deg, rgba(87, 180, 198, .28), rgba(255, 255, 255, .56));
  box-shadow: 0 18px 42px rgba(20, 33, 31, .08);
}

.ambient-scene[data-scene="lounge"],
.ambient-scene[data-scene="varanda"] {
  background:
    linear-gradient(180deg, rgba(18, 61, 49, .18), rgba(18, 61, 49, .32)),
    var(--scene-image);
  background-size: cover;
  background-position: center;
}

.ambient-scene[data-scene="lounge"]::before,
.ambient-scene[data-scene="varanda"]::before,
.ambient-scene[data-scene="lounge"]::after,
.ambient-scene[data-scene="varanda"]::after {
  display: none;
}

.ambient-scene .ambient-product {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 8%;
  width: 66%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 22px 26px rgba(20, 33, 31, .28));
  mix-blend-mode: multiply;
  transform: translateX(-50%);
}

.ambient-scene .ambient-product.is-wide {
  width: 78%;
  bottom: 6%;
}

.ambient-scene .ambient-product.is-tall {
  width: 50%;
}

.proof-card div,
.route-card div {
  padding: 22px;
}

.proof-card h3,
.route-card h3 {
  margin: 8px 0 10px;
  font-size: clamp(25px, 2.6vw, 40px);
  line-height: .98;
}

.proof-card p {
  color: rgba(255, 255, 255, .76);
}

.route-card p,
.price-panel p {
  color: var(--muted);
}

.composition {
  background: var(--paper);
}

.buy-path {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .48fr);
  gap: 18px;
  align-items: stretch;
  background:
    radial-gradient(circle at 15% 12%, rgba(229, 29, 45, .1), transparent 28%),
    linear-gradient(180deg, var(--mist), var(--cream));
}

.upsell-section {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(320px, .42fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
  background:
    radial-gradient(circle at 80% 12%, rgba(87, 180, 198, .22), transparent 28%),
    linear-gradient(135deg, var(--paper), var(--mist));
}

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

.upsell-copy h2 {
  max-width: 760px;
}

.upsell-copy p:not(.section-kicker) {
  max-width: 680px;
  color: var(--muted);
  font-size: 19px;
}

.upsell-media {
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, .78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(20, 33, 31, .08);
}

.upsell-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #f4eddf;
}

.upsell-media.scene-media img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.upsell-media figcaption {
  padding: 16px 18px 18px;
  color: var(--muted);
  font-weight: 760;
}

.buy-path > img {
  width: 100%;
  min-height: 560px;
  height: 58vh;
  object-fit: contain;
  border-radius: var(--radius);
  background: #f4eddf;
  box-shadow: var(--shadow);
}

.buy-path > img.scene-crop {
  object-fit: cover;
}

.price-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 44px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(20, 33, 31, .07);
}

.price-panel h2 {
  font-size: clamp(34px, 4vw, 56px);
}

.price-list {
  display: grid;
  gap: 1px;
  margin: 20px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.price-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  background: var(--white);
}

.price-list dt {
  color: var(--muted);
  font-weight: 850;
}

.price-list dd {
  margin: 0;
  color: var(--red);
  font-weight: 950;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(300px, .45fr);
  gap: 28px;
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 18%, rgba(241, 189, 88, .26), transparent 28%),
    linear-gradient(135deg, var(--red-dark), var(--red));
}

.final-cta .section-kicker {
  color: var(--sun);
}

.final-cta p {
  color: rgba(255, 255, 255, .84);
}

.final-buttons {
  justify-content: end;
}

.sticky-conversion {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 90;
  width: min(calc(100% - 32px), 620px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px;
  color: var(--white);
  background: rgba(18, 61, 49, .94);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(130%);
  transition: opacity .2s ease, transform .2s ease;
  backdrop-filter: blur(18px);
}

.sticky-conversion.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.sticky-conversion strong,
.sticky-conversion span {
  display: block;
}

.sticky-conversion span {
  color: var(--sun);
  font-size: 13px;
  font-weight: 850;
}

.sticky-conversion a {
  min-height: 42px;
  padding: 0 22px;
  background: var(--sun);
  color: var(--green);
  box-shadow: none;
}

.footer {
  padding: 30px clamp(18px, 5vw, 72px) 100px;
  color: var(--muted);
  background: var(--paper);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.footer p {
  margin: 0;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal-ready [data-reveal].is-visible,
[data-reveal] {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 1180px) {
  .hero,
  .buy-path,
  .final-cta,
  .upsell-section {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .campaign-hero {
    min-height: clamp(560px, 72vh, 680px);
  }

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

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

  .final-buttons {
    justify-content: start;
  }
}

@media (max-width: 760px) {
  .offer-bar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    text-align: center;
    font-size: 11px;
    line-height: 1.2;
  }

  .site-header {
    min-height: 66px;
  }

  .desktop-nav,
  .header-action {
    display: none;
  }

  .brand span {
    font-size: 22px;
  }

  .hero {
    min-height: auto;
    padding-top: 30px;
  }

  .campaign-hero {
    min-height: auto;
    padding: 46px 18px 58px;
    background:
      linear-gradient(180deg, rgba(7, 22, 18, .86) 0%, rgba(7, 22, 18, .6) 54%, rgba(7, 22, 18, .18) 100%),
      var(--hero-image);
    background-size: cover;
    background-position: var(--hero-mobile-position, var(--hero-position, center));
  }

  .campaign-hero h1 {
    max-width: 350px;
    font-size: clamp(31px, 8.6vw, 38px);
    line-height: 1;
  }

  .campaign-hero .lead {
    max-width: 350px;
    font-size: 17px;
  }

  h1 {
    font-size: clamp(32px, 9.4vw, 40px);
    line-height: .95;
  }

  h2 {
    font-size: clamp(26px, 7.2vw, 30px);
    line-height: 1;
  }

  .section-head p:not(.section-kicker),
  .environment-copy p,
  .final-cta p {
    max-width: 330px;
    font-size: 16px;
  }

  .campaign-hero h1 {
    max-width: 350px;
    font-size: clamp(31px, 8.6vw, 38px);
    line-height: 1;
  }

  .hero-actions,
  .final-buttons {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .proof-points,
  .proof-grid,
  .route-grid {
    grid-template-columns: 1fr;
  }

  .usage-guide-copy {
    padding: 20px 16px 10px;
  }

  .usage-guide-copy h3 {
    font-size: 34px;
  }

  .usage-guide-copy p {
    font-size: 16px;
  }

  .usage-guide-grid {
    grid-template-columns: 1fr;
    padding: 0 12px 12px;
  }

  .proof-points {
    display: none;
  }

  .proof-points div {
    min-height: auto;
    gap: 10px;
  }

  .visual-shell,
  .visual-shell img {
    height: 238px;
    min-height: 238px;
  }

  .visual-caption {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: auto;
    padding: 16px;
  }

  .visual-caption strong {
    font-size: 21px;
  }

  .buy-path > img {
    min-height: 390px;
    height: 390px;
  }

  .price-panel {
    padding: 22px;
  }

  .price-list div {
    display: grid;
    gap: 4px;
  }
}
