:root {
  color-scheme: light dark;
  --ink: #242729;
  --ink-soft: #5e6468;
  --paper: #f7f7f2;
  --surface: #ffffff;
  --surface-soft: #eef3ef;
  --surface-deep: #dce9e2;
  --accent: #f4cc35;
  --accent-strong: #d5a900;
  --accent-ink: #252410;
  --line: rgba(36, 39, 41, 0.16);
  --shadow: 0 24px 68px rgba(70, 89, 78, 0.2);
  --radius: 16px;
  --display: "Arial Rounded MT Bold", "Trebuchet MS", Arial, sans-serif;
  --body: Aptos, "Segoe UI", Arial, sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #f0f1ed;
    --ink-soft: #b8bfbb;
    --paper: #171a19;
    --surface: #202523;
    --surface-soft: #262d29;
    --surface-deep: #344039;
    --accent: #e9c94c;
    --accent-strong: #f0d761;
    --accent-ink: #24230f;
    --line: rgba(240, 241, 237, 0.16);
    --shadow: 0 24px 68px rgba(2, 8, 5, 0.42);
  }
}

* { box-sizing: border-box; }

html { overflow-x: clip; scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 18% 8%, color-mix(in srgb, var(--accent) 12%, transparent), transparent 25rem),
    var(--paper);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.55;
}

img, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

:focus-visible { outline: 3px solid var(--accent-strong); outline-offset: 4px; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-160%);
}

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

.section-shell { width: min(1220px, calc(100% - 40px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 9px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(16px);
}

.brand { flex: 0 0 auto; }
.brand img { width: 146px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  white-space: nowrap;
  font-size: 0.92rem;
  font-weight: 800;
}

.site-nav a:not(.nav-cta) { color: var(--ink-soft); transition: color 180ms ease; }
.site-nav a:not(.nav-cta):hover { color: var(--ink); }

.nav-cta, .button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta { padding: 0 20px; background: var(--ink); color: var(--paper); }
.button { min-width: 154px; padding: 0 24px; }
.button-primary { background: var(--accent); color: var(--accent-ink); box-shadow: 0 12px 26px color-mix(in srgb, var(--accent) 32%, transparent); }
.button-dark { background: var(--ink); color: var(--paper); }
.nav-cta:hover, .button:hover { transform: translateY(-2px); }
.nav-cta:active, .button:active { transform: translateY(1px) scale(0.98); }

.hero {
  display: grid;
  min-height: calc(100dvh - 70px);
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(24px, 4vw, 72px);
  padding: clamp(38px, 6vh, 70px) clamp(20px, 5vw, 78px);
}

.hero-copy { max-width: 610px; }
.eyebrow {
  margin: 0 0 16px;
  color: color-mix(in srgb, var(--ink) 72%, var(--accent-strong));
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1, h2, h3, .promise-strip strong { font-family: var(--display); }

.hero h1 {
  margin: 0;
  max-width: 670px;
  font-size: clamp(3rem, 4.3vw, 4.7rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.hero-lead { max-width: 500px; margin: 24px 0 0; color: var(--ink-soft); font-size: clamp(1.05rem, 1.45vw, 1.28rem); }
.hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 28px; }
.text-link { border-bottom: 2px solid var(--accent); font-weight: 900; }

.hero-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--accent) 35%, var(--line));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  border: 10px solid color-mix(in srgb, var(--surface) 56%, transparent);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.hero-media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }

.promise-strip {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  align-items: center;
  gap: 18px;
  padding: 19px clamp(20px, 5vw, 78px);
  background: var(--accent);
  color: var(--accent-ink);
  text-align: center;
}

.promise-strip strong { text-align: left; font-size: 1.05rem; }
.promise-strip span { border-left: 1px solid rgba(36, 36, 16, 0.28); font-weight: 800; }

.experience {
  display: grid;
  grid-template-columns: minmax(310px, 0.7fr) minmax(0, 1.3fr);
  align-items: center;
  gap: clamp(48px, 9vw, 120px);
  padding-block: clamp(78px, 10vw, 140px);
}

.phone-stage { text-align: center; }
.phone-shell {
  position: relative;
  width: min(310px, 82vw);
  margin-inline: auto;
  overflow: hidden;
  border: 9px solid var(--ink);
  border-radius: 38px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.phone-shell::before {
  position: absolute;
  top: 6px;
  left: 50%;
  z-index: 2;
  width: 74px;
  height: 18px;
  border-radius: 999px;
  background: var(--ink);
  content: "";
  transform: translateX(-50%);
}

.phone-shell video { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; border-radius: 29px; background: #111; }
.phone-stage > p { margin: 16px auto 0; color: var(--ink-soft); font-size: 0.9rem; }

.video-loading, .video-error {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-content: center;
  padding: 30px;
  background: var(--surface-soft);
  color: var(--ink);
  text-align: center;
}

.video-loading[hidden], .video-error[hidden] { display: none; }
.video-loading span, .video-error span { color: var(--ink-soft); font-size: 0.88rem; }

.experience-copy h2, .products-heading h2, .themes-copy h2, .value-head h2, .sales-title h2, .access-copy h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4.8vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.marker-steps { display: grid; gap: 0; margin: 42px 0 0; padding: 0; list-style: none; }
.marker-steps li { position: relative; padding: 26px 10px 26px 52px; border-top: 1px solid var(--line); }
.marker-steps li:last-child { border-bottom: 1px solid var(--line); }
.marker-steps strong { display: block; font-family: var(--display); font-size: 1.2rem; }
.marker-steps p { max-width: 580px; margin: 7px 0 0; color: var(--ink-soft); }
.marker-line { position: absolute; top: 34px; left: 4px; width: 27px; height: 10px; border-radius: 999px; background: var(--accent); transform: rotate(-7deg); }

.products { padding-block: clamp(88px, 11vw, 150px); }
.products-heading { max-width: 750px; }
.products-heading p, .themes-copy p, .value-head p, .access-copy p { max-width: 610px; margin: 22px 0 0; color: var(--ink-soft); font-size: 1.06rem; }
.mug-line { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-top: 48px; }
.mug-item { position: relative; margin: 0; padding: 0 0 12px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); color: var(--ink); transition: transform 200ms ease, box-shadow 200ms ease; }
.mug-item:hover { transform: translateY(-7px) rotate(-0.5deg); box-shadow: var(--shadow); }
.mug-item img { width: 100%; aspect-ratio: 1 / 0.84; object-fit: contain; }
.mug-item figcaption { font-family: var(--display); font-weight: 900; text-align: center; }
.gallery-note { margin: 18px 0 0; color: var(--ink-soft); font-size: 0.85rem; }

.themes { padding-block: clamp(76px, 9vw, 120px); background: linear-gradient(130deg, var(--surface-deep), var(--surface-soft)); }
.themes-inner { display: grid; grid-template-columns: minmax(270px, 0.62fr) minmax(0, 1.38fr); align-items: center; gap: clamp(38px, 8vw, 110px); }
.theme-cloud { display: flex; flex-wrap: wrap; gap: 12px; align-content: center; }
.theme-cloud span { padding: 14px 20px; border: 2px solid var(--ink); border-radius: 999px; background: var(--surface); color: var(--ink); font-family: var(--display); font-size: clamp(1rem, 1.7vw, 1.35rem); font-weight: 900; }
.theme-cloud span:nth-child(3n + 1) { transform: rotate(-2deg); }
.theme-cloud span:nth-child(3n + 2) { transform: rotate(1.5deg); }

.value { padding-block: clamp(88px, 11vw, 150px); }
.value-head { max-width: 820px; }
.value-layout { display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr; grid-template-rows: repeat(2, auto); gap: 14px; margin-top: 48px; }
.value-layout article { padding: clamp(24px, 3vw, 38px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.value-layout article strong { display: block; font-family: var(--display); font-size: clamp(1.25rem, 2vw, 1.7rem); line-height: 1.05; }
.value-layout article p { margin: 14px 0 0; color: var(--ink-soft); }
.value-main { grid-row: 1 / 3; display: flex; min-height: 390px; flex-direction: column; justify-content: flex-end; background: url("../assets/colorir/hero-canecas-colorir.png") center / cover !important; color: #242729; isolation: isolate; }
.value-main::before { position: absolute; inset: 0; z-index: -1; border-radius: inherit; background: linear-gradient(0deg, rgba(247, 247, 242, 0.94) 0%, rgba(247, 247, 242, 0.12) 75%); content: ""; }
.value-main { position: relative; overflow: hidden; }
.value-main p { color: #404548 !important; }
.value-accent { background: var(--accent) !important; color: var(--accent-ink); }
.value-accent p { color: color-mix(in srgb, var(--accent-ink) 76%, transparent) !important; }

.sales { padding-block: clamp(82px, 10vw, 132px); border-block: 1px solid var(--line); background: var(--surface-soft); }
.sales-title { max-width: 760px; }
.sales-map { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 52px; margin-top: 52px; }
.sales-map article { display: grid; grid-template-columns: 0.38fr 0.9fr 1fr; gap: 18px; align-items: start; padding-block: 28px; border-top: 1px solid var(--line); }
.sales-map span { color: var(--ink-soft); font-size: 0.85rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.08em; }
.sales-map h3 { margin: 0; font-size: 1.24rem; line-height: 1.1; }
.sales-map p { margin: 0; color: var(--ink-soft); }

.access { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr); align-items: center; gap: clamp(38px, 7vw, 90px); padding-block: clamp(88px, 11vw, 150px); }
.access-products { position: relative; min-height: 500px; }
.access-products::before { position: absolute; inset: 12% 8%; z-index: -1; border-radius: 48% 52% 45% 55%; background: var(--accent); content: ""; transform: rotate(-5deg); }
.access-products img { position: absolute; width: 68%; filter: drop-shadow(0 24px 20px rgba(60, 72, 65, 0.2)); }
.access-products img:first-child { left: 0; bottom: 2%; transform: rotate(-5deg); }
.access-products img:last-child { right: -2%; top: 3%; transform: rotate(6deg); }
.access-copy > img { width: 172px; margin-bottom: 30px; }
.access-copy .button { margin-top: 28px; }
.site-footer { padding: 24px 20px; border-top: 1px solid var(--line); color: var(--ink-soft); text-align: center; font-size: 0.9rem; }

.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 650ms ease, transform 650ms cubic-bezier(0.16, 1, 0.3, 1); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .site-nav a:not(.nav-cta) { display: none; }
  .hero { grid-template-columns: 0.95fr 1.05fr; }
  .sales-map { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .section-shell { width: min(100% - 32px, 620px); }
  .site-header { min-height: 64px; padding: 8px 16px; }
  .brand img { width: 118px; }
  .nav-cta { min-height: 42px; padding-inline: 15px; font-size: 0.82rem; }
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 30px; padding: 38px 16px 42px; }
  .hero h1 { font-size: clamp(2.8rem, 12vw, 4.3rem); }
  .hero-media { transform: none; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 15px; }
  .promise-strip { grid-template-columns: 1fr 1fr; gap: 14px 8px; padding: 16px; font-size: 0.82rem; }
  .promise-strip strong { grid-column: 1 / -1; text-align: center; }
  .promise-strip span { padding-left: 8px; }
  .promise-strip span:nth-of-type(2) { border-left: 0; }
  .experience, .themes-inner, .access { grid-template-columns: 1fr; }
  .experience { gap: 52px; padding-block: 76px; }
  .phone-stage { order: 2; }
  .experience-copy h2, .products-heading h2, .themes-copy h2, .value-head h2, .sales-title h2, .access-copy h2 { font-size: clamp(2.4rem, 12vw, 4rem); }
  .marker-steps li { padding-left: 43px; }
  .mug-line { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .themes-inner { gap: 38px; }
  .theme-cloud { gap: 9px; }
  .theme-cloud span { padding: 11px 15px; }
  .value-layout { grid-template-columns: 1fr; grid-template-rows: auto; }
  .value-main { grid-row: auto; min-height: 360px; }
  .sales-map article { grid-template-columns: 1fr; gap: 8px; }
  .sales-map span { margin-bottom: 3px; }
  .access { gap: 18px; }
  .access-products { min-height: 370px; }
  .access-copy { padding-bottom: 30px; }
}

@media (max-width: 430px) {
  .mug-item figcaption { font-size: 0.86rem; }
}

@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; }
  .js .reveal { opacity: 1; transform: none; }
  .hero-media, .theme-cloud span, .mug-item { transform: none; }
}
