:root {
  --ink: #161f24;
  --muted: #516068;
  --cream: #fff8ed;
  --cream-2: #fff2df;
  --paper: #fffdf8;
  --line: #ead9c4;
  --peach: #ffaf74;
  --peach-soft: #ffe1c7;
  --coral: #ffb7a9;
  --mint: #81c9ad;
  --mint-soft: #d4f2e6;
  --sky: #84bee8;
  --sky-soft: #d6ecfc;
  --lavender: #d5c7f2;
  --yellow: #ffd179;
  --shadow: 0 18px 45px rgba(43, 31, 20, 0.08);
  --soft-shadow: 0 10px 24px rgba(43, 31, 20, 0.07);
  --radius-lg: 34px;
  --radius-md: 22px;
  --container: 1180px;
  --display: "Russo One", "Arial Black", sans-serif;
  --body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);

  font-family: var(--body);
  font-size: 16px;
  line-height: 1.45;
  overflow-x: hidden;
}

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

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

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

.page-shell {
  min-height: 100vh;
  overflow: hidden;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section-pad {
  padding: 58px 0 26px;
}

section[id],
footer[id] {
  scroll-margin-top: 112px;
}

h1[id],
h2[id],
h3[id] {
  scroll-margin-top: 112px;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 0.94;
}

h1 {
  max-width: 610px;
  font-size: clamp(3.05rem, 4.75vw, 4rem);
}

h1 span {
  display: block;
  white-space: nowrap;
}

h1 span:nth-child(3) {
  font-size: 0.86em;
}

h2 {
  font-size: clamp(2.35rem, 5vw, 4rem);
}

h3 {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.08;
}

.section-head {
  margin: 0 0 28px;
}

.section-head p,
.split-head p,
.hero-copy p,
.interface-copy p,
.cta-copy p {
  color: var(--muted);
  font-weight: 600;
}

.section-head p {
  max-width: 720px;
  margin-top: 10px;
  font-size: 1.02rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 25px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(22, 31, 36, 0.14);
}

.btn:focus-visible,
.nav-links a:focus-visible,
.brand:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid rgba(132, 190, 232, 0.8);
  outline-offset: 4px;
}

.btn-dark {
  color: #fffdf8;
  background: var(--ink);
}

.btn-outline {
  background: rgba(255, 253, 248, 0.42);
}

.btn-outline:hover {
  background: #fff;
}

.btn-peach {
  background: var(--peach);
  border-color: var(--peach);
  color: var(--ink);
}

.btn-ghost {
  color: #fff8ed;
  border-color: rgba(255, 248, 237, 0.72);
  background: rgba(255, 255, 255, 0.04);
}

.site-header {
  position: fixed;
  inset: 24px 0 auto;
  z-index: 20;
  pointer-events: none;
}

.nav-wrap {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(calc(100% - 64px), 1080px);
  min-height: 64px;
  margin: 0 auto;
  padding: 9px 13px;
  border: 1px solid rgba(22, 31, 36, 0.16);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 16px 36px rgba(43, 31, 20, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(18px);
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  position: absolute;
  content: "";
  background: #fff8ed;
}

.brand-mark::before {
  width: 15px;
  height: 15px;
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
  left: 9px;
  top: 12px;
}

.brand-mark::after {
  width: 9px;
  height: 9px;
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
  right: 10px;
  bottom: 12px;
}

.brand-mark span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  right: 16px;
  top: 12px;
}

.brand-text {
  font-size: 1.42rem;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 5vw, 66px);
  font-size: 0.9rem;
  font-weight: 800;
}

.nav-links a {
  border-radius: 999px;
  transition: color 160ms ease, transform 160ms ease;
}

.nav-links a:hover {
  color: #ec8352;
  transform: translateY(-1px);
}

.nav-cta {
  min-height: 45px;
  padding: 0 24px;
  font-size: 0.87rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--ink);
}

.hero {
  padding-top: 148px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
  align-items: center;
  gap: 30px;
}

.hero-copy p {
  max-width: 430px;
  margin-top: 30px;
  font-size: 1.17rem;
}

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

.hero-art {
  position: relative;
  min-height: 490px;
}

.hero-art::before,
.hero-art::after {
  position: absolute;
  z-index: -1;
  content: "";
  border-radius: 42% 58% 53% 47% / 52% 42% 58% 48%;
  background: rgba(255, 218, 196, 0.6);
}

.hero-art::before {
  width: 190px;
  height: 155px;
  top: 6%;
  left: 8%;
}

.hero-art::after {
  width: 140px;
  height: 120px;
  right: -2%;
  bottom: 18%;
}

.hero-art img {
  width: min(690px, 100%);
  margin-left: auto;
  filter: drop-shadow(0 14px 20px rgba(43, 31, 20, 0.05));
}

.marquee-wrap {
  width: min(calc(100% - 42px), 1270px);
  margin: 28px auto 0;
  overflow: hidden;
  border: 1.5px solid #ff9f67;
  border-radius: 999px;
  background: rgba(255, 244, 229, 0.78);
}

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 32px;
  padding: 18px 28px;
  font-size: 0.93rem;
  font-weight: 800;
  white-space: nowrap;
  animation: marquee 34s linear infinite;
}

.marquee-track b {
  font-size: 1.35rem;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.steps-grid,
.feature-grid,
.event-grid,
.why-grid {
  display: grid;
  gap: 22px;
}

.steps-grid {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1088px;
  margin-inline: auto;
  gap: 28px;
}

.step-card {
  position: relative;
  min-height: 362px;
  overflow: hidden;
  padding: 18px 22px 50px;
  border-radius: 28px;
  isolation: isolate;
}

.step-card::before,
.step-card::after {
  position: absolute;
  content: "";
}

/* .step-card::before {
  right: -20%;
  left: -20%;
  bottom: -68px;
  height: 120px;
  background:
    radial-gradient(ellipse at 18% 40%, #fff 0 62px, transparent 63px),
    radial-gradient(ellipse at 50% 54%, #fff 0 86px, transparent 87px),
    radial-gradient(ellipse at 82% 38%, #fff 0 62px, transparent 63px);
} */

.step-card::after {
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
}

.step-peach {
  background: #ffd7bd;
}

.step-blue {
  background: #cce8fb;
}

.step-mint {
  background: #c8eadb;
}

.blob {
  position: absolute;
  z-index: 1;
  border-radius: 40% 60% 50% 50% / 55% 42% 58% 45%;
  opacity: 0.64;
}

.step-peach .blob {
  background: #f28f5e;
}

.step-blue .blob {
  background: #78bae8;
}

.step-mint .blob {
  background: #64c29e;
}

.blob-a {
  width: 112px;
  height: 112px;
  top: -38px;
  left: -34px;
}

.blob-b {
  width: 122px;
  height: 108px;
  top: -36px;
  right: -36px;
}

.step-card img {
  position: relative;
  z-index: 2;
  width: 150px;
  height: 128px;
  object-fit: contain;
  margin: 0 auto 14px;
}

.step-title-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 31px 1fr;
  gap: 10px;
  align-items: start;
}

.step-num {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--peach);
  font-size: 0.92rem;
  font-weight: 900;
}

.step-card h3 {
  font-size: clamp(1.03rem, 1.45vw, 1.24rem);
  line-height: 1.08;
}

.step-blue .step-num {
  background: var(--sky);
}

.step-mint .step-num {
  background: var(--mint);
}

.step-card p {
  position: relative;
  z-index: 2;
  margin: 14px 0 0 41px;
  font-size: clamp(0.78rem, 1vw, 0.9rem);
  font-weight: 600;
  line-height: 1.43;
}

.split-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 28px;
}

.split-head h2 span {
  color: #6fbd9d;
}

.split-head p {
  max-width: 640px;
  margin-top: 10px;
  font-size: 1.04rem;
}

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

.event-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: var(--paper);
  box-shadow: var(--soft-shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.event-art {
  min-height: 198px;
  padding: 10px;
  border-radius: 18px 18px 42% 42% / 18px 18px 16% 16%;
}

.event-art img {
  width: 100%;
  height: 185px;
  object-fit: contain;
}

.event-lavender {
  background: #d9c9f0;
}

.event-coral {
  background: #ffb4a7;
}

.event-green {
  background: #bfe5d0;
}

.event-yellow {
  background: #ffc675;
}

.event-body {
  padding: 0 20px 22px;
  background: var(--paper);
}

.tag {
  display: inline-flex;
  margin: -13px 0 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #fff;
  color: #647179;
  font-size: 0.72rem;
  font-weight: 900;
  box-shadow: 0 5px 12px rgba(43, 31, 20, 0.08);
}

.event-body h3 {
  margin-bottom: 12px;
}

.event-body p,
.event-body small {
  color: #334047;
  font-weight: 700;
}

.event-body small {
  position: relative;
  display: block;
  margin-top: 18px;
  padding-left: 22px;
  font-size: 0.86rem;
}

.event-body small::before {
  position: absolute;
  left: 0;
  content: "♙";
  color: #59676e;
}

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

.feature-card {
  min-height: 252px;
  padding: 22px 20px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 10px 22px rgba(43, 31, 20, 0.045);
}

.feature-card img,
.line-illustration {
  width: 104px;
  height: 76px;
  object-fit: contain;
  margin-bottom: 16px;
}

.feature-card img {
  object-position: left center;
}

.feature-card h3 {
  margin-bottom: 10px;
}

.feature-card p {
  color: #405059;
  font-size: 0.93rem;
  font-weight: 600;
}

.line-illustration {
  position: relative;
}

.gift::before,
.gift::after {
  position: absolute;
  content: "";
}

.gift::before {
  width: 76px;
  height: 58px;
  left: 12px;
  bottom: 0;
  border: 4px solid var(--ink);
  border-radius: 8px;
  background: #ffe0b9;
}

.gift::after {
  width: 44px;
  height: 25px;
  top: 2px;
  left: 28px;
  border: 4px solid var(--ink);
  border-bottom: 0;
  border-radius: 50px 50px 0 0;
}

.cup::before,
.cup::after {
  position: absolute;
  content: "";
}

.cup::before {
  width: 76px;
  height: 52px;
  left: 6px;
  bottom: 5px;
  border: 4px solid var(--ink);
  border-radius: 7px 7px 28px 28px;
  background: #fff6e8;
}

.cup::after {
  width: 25px;
  height: 27px;
  right: 2px;
  bottom: 19px;
  border: 4px solid var(--ink);
  border-left: 0;
  border-radius: 0 20px 20px 0;
}

.topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 16px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.topic {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 37px;
  padding: 0 18px;
  border: 1.7px solid currentColor;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.74);
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 7px 15px rgba(43, 31, 20, 0.04);
}

.topic span {
  font-size: 1.05rem;
}

.topic-blue {
  color: #5a79db;
}

.topic-sky {
  color: #5797dc;
}

.topic-rose {
  color: #d3796f;
}

.topic-plum {
  color: #9d78a9;
}

.topic-mint {
  color: #5c9887;
}

.topic-green {
  color: #5ca56f;
}

.topic-yellow {
  color: #bca247;
}

.topic-orange {
  color: #cf895d;
}

.topic-pink {
  color: #ce78a5;
}

.topic-gold {
  color: #c68b45;
}

.topic-coral {
  color: #c67766;
}

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

.why-card {
  position: relative;
  min-height: 268px;
  overflow: hidden;
  padding: 26px 145px 24px 24px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: rgba(255, 253, 248, 0.74);
  box-shadow: 0 10px 22px rgba(43, 31, 20, 0.045);
}

.why-num {
  display: block;
  margin-bottom: 13px;
  font-family: var(--display);
  font-size: clamp(3.2rem, 4.5vw, 4.65rem);
  line-height: 0.82;
}

.num-orange {
  color: #f28f5e;
}

.num-blue {
  color: #76b4e1;
}

.num-green {
  color: #75b99d;
}

.why-card h3 {
  max-width: 360px;
  margin-bottom: 14px;
  font-size: clamp(1.12rem, 1.35vw, 1.6rem);
}

.why-card p {
  color: #405059;
  font-size: clamp(0.88rem, 1vw, 1.08rem);
  font-weight: 700;
  line-height: 1.38;
}

.mini {
  position: absolute;
  right: 20px;
  bottom: 22px;
  width: 104px;
  height: 104px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.laptop {
  background-image: none;
}

.laptop::before {
  position: absolute;
  right: 16px;
  bottom: 34px;
  display: grid;
  width: 82px;
  height: 58px;
  place-items: center;
  border: 4px solid var(--ink);
  border-radius: 5px 5px 2px 2px;
  background: #fff7e8;
  color: var(--ink);
  content: "• 1live";
  font-size: 0.78rem;
  font-weight: 900;
  transform: rotate(2deg);
}

.laptop::after {
  position: absolute;
  right: 7px;
  bottom: 22px;
  width: 100px;
  height: 12px;
  border-radius: 0 0 6px 6px;
  background: var(--ink);
  clip-path: polygon(0 0, 100% 36%, 100% 100%, 0 58%);
  content: "";
}

.chat {
  background-image: url("assets/optimized/step-people-chat.png");
}

.door {
  background-image: none;
}

.mini.laptop,
.mini.door {
  position: absolute;
}

.door::before {
  position: absolute;
  inset: 8px 30px 6px;
  content: "";
  border: 4px solid var(--ink);
  border-radius: 40px 40px 14px 14px;
  background: #9bd8bd;
}

.door::after {
  position: absolute;
  width: 20px;
  height: 20px;
  right: 42px;
  bottom: 38px;
  content: "";
  border: 3px solid var(--ink);
  border-radius: 50%;
}

.interface {
  position: relative;
  padding-bottom: 24px;
}

.table-band {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 260px;
  background:
    linear-gradient(90deg, rgba(142, 86, 45, 0.1) 1px, transparent 1px) 0 0 / 34px 100%,
    linear-gradient(#efc99d, #e7bb83);
  opacity: 0.72;
}

.interface-grid {
  position: relative;
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  align-items: end;
  min-height: 585px;
  gap: 20px;
}

.interface-copy {
  align-self: center;
  padding-bottom: 132px;
}

.interface-copy h2 {
  max-width: 305px;
  font-size: clamp(2.15rem, 4vw, 3.35rem);
}

.interface-copy p {
  max-width: 285px;
  margin-top: 18px;
  font-size: 1rem;
}

.tablet-scene {
  position: relative;
  min-height: 560px;
}

.tablet-scene img {
  position: relative;
  z-index: 2;
  width: min(890px, 108%);
  max-width: none;
  margin: 8px 42px -8px auto;
  filter: drop-shadow(0 21px 22px rgba(43, 31, 20, 0.18));
}

.scene-cup,
.scene-plant {
  position: absolute;
  z-index: 1;
  bottom: 0;
}

.scene-cup {
  width: 155px;
  height: 118px;
  left: -286px;
  bottom: 26px;
  border: 5px solid rgba(22, 31, 36, 0.32);
  border-top: 0;
  border-radius: 0 0 54px 54px;
  background: linear-gradient(180deg, #5e9d84 0 23px, #8dc3a8 24px 100%);
  box-shadow: 22px 14px 0 -2px #f5ece0;
}

.scene-cup::before {
  position: absolute;
  width: 52px;
  height: 44px;
  right: -40px;
  top: 28px;
  content: "";
  border: 5px solid rgba(22, 31, 36, 0.32);
  border-left: 0;
  border-radius: 0 28px 28px 0;
}

.scene-plant {
  width: 130px;
  height: 210px;
  right: -8px;
  bottom: 24px;
  border-radius: 0 0 32px 32px;
  background: linear-gradient(180deg, transparent 0 49%, #ecd4b6 50% 100%);
}

.scene-plant::before {
  position: absolute;
  inset: 0 0 72px;
  content: "";
  background:
    radial-gradient(ellipse at 38% 60%, #769d65 0 22px, transparent 23px),
    radial-gradient(ellipse at 65% 48%, #6f985f 0 25px, transparent 26px),
    radial-gradient(ellipse at 50% 22%, #84aa73 0 24px, transparent 25px);
}

.cta-section {
  position: relative;
  margin-top: 8px;
  padding-bottom: 0;
}

.cta-wide {
  width: 100%;
  margin: 0;
}

.cta-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 480px);
  align-items: center;
  min-height: 320px;
  overflow: hidden;
  padding: 48px max(6vw, 52px);
  border-radius: 38px 38px 0 0;
  background:
    radial-gradient(circle at 7% 24%, #ffca93 0 7px, transparent 8px),
    radial-gradient(circle at 73% 18%, #ffca93 0 4px, transparent 5px),
    #111b20;
  color: #fff8ed;
}

.cta-copy {
  position: relative;
  z-index: 2;
  justify-self: center;
  max-width: 680px;
  text-align: center;
}

.cta-copy h2 {
  font-size: clamp(2.2rem, 4.2vw, 4rem);
}

.cta-copy h2 span {
  color: var(--peach);
}

.cta-copy p {
  max-width: 520px;
  margin: 12px auto 0;
  color: rgba(255, 248, 237, 0.78);
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
}

.cta-card>img {
  position: relative;
  z-index: 2;
  width: min(430px, 100%);
  justify-self: end;
  align-self: end;
  margin-bottom: -42px;
}

.cta-blob {
  position: absolute;
  border-radius: 42% 58% 52% 48% / 55% 43% 57% 45%;
}

.cta-peach {
  width: 160px;
  height: 160px;
  left: -50px;
  bottom: -56px;
  background: var(--peach);
}

.cta-blue {
  width: 118px;
  height: 138px;
  right: -42px;
  top: 54px;
  background: #83bde8;
}

.star {
  position: absolute;
  z-index: 1;
  color: #ffd179;
  font-weight: 900;
}

.s1 {
  left: 95px;
  top: 51px;
}

.s2 {
  left: 680px;
  top: 54px;
}

.s3 {
  left: 72px;
  bottom: 61px;
  color: #81c9ad;
  font-size: 2rem;
}

.site-footer {
  background: #fffaf1;
  border-radius: 34px 34px 0 0;
  box-shadow: 0 -10px 30px rgba(43, 31, 20, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  min-height: 70px;
  font-size: 0.84rem;
  font-weight: 700;
  color: #6a747a;
}

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

.footer-grid .brand-mark {
  width: 34px;
  height: 34px;
}

.footer-grid .brand-mark::before {
  width: 12px;
  height: 12px;
  left: 7px;
  top: 9px;
}

.footer-grid .brand-mark::after {
  width: 7px;
  height: 7px;
  right: 8px;
  bottom: 9px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 48px;
}

.footer-links a:hover,
.footer-grid p a:hover {
  color: var(--ink);
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy h1,
  .hero-copy p {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

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

  .hero-art img {
    margin-inline: auto;
  }

  .steps-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: 360px;
  }

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

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

  .interface-copy {
    padding-bottom: 0;
    text-align: center;
  }

  .interface-copy h2,
  .interface-copy p {
    margin-inline: auto;
  }

  .scene-cup {
    left: 0;
  }

  .tablet-scene img {
    margin-right: 70px;
  }

  .cta-card {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cta-card>img {
    justify-self: center;
    margin-bottom: -56px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .site-header {
    inset: 14px 0 auto;
  }

  .nav-wrap {
    width: min(calc(100% - 24px), 1080px);
    grid-template-columns: auto auto;
    min-height: 60px;
    padding: 8px 10px;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 14px;
    border: 1px solid rgba(22, 31, 36, 0.12);
    border-radius: 24px;
    background: #fffdf8;
    box-shadow: var(--soft-shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 10px 14px;
  }

  .nav-cta {
    display: none;
  }

  .hero.section-pad {
    padding-top: 118px;
  }

  h1 {
    font-size: clamp(2.74rem, 13vw, 4.2rem);
  }

  h1 span:nth-child(3) {
    font-size: 1em;
  }

  h2 {
    font-size: clamp(2.15rem, 10vw, 3.25rem);
  }

  .section-pad {
    padding: 45px 0 20px;
  }

  .split-head {
    align-items: start;
    flex-direction: column;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .step-card {
    clip-path: none;
    border-radius: 30px;
    padding-bottom: 34px;
  }

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

  .why-card {
    padding-right: 128px;
  }

  .tablet-scene {
    min-height: 340px;
  }

  .tablet-scene img {
    width: min(680px, 120%);
    max-width: none;
    margin: 16px -20px -14px auto;
  }

  .scene-cup {
    width: 102px;
    height: 82px;
    bottom: 8px;
  }

  .scene-plant {
    width: 82px;
    height: 140px;
  }

  .cta-card {
    padding: 32px 22px;
    border-radius: 28px 28px 0 0;
  }

  .cta-blue {
    right: -108px;
    top: 50px;
    width: 112px;
    height: 138px;
  }

  .cta-card>img {
    width: min(330px, 100%);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
    padding: 22px 0;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    gap: 18px;
  }
}

@media (max-width: 640px) {
  h1 span {
    white-space: normal;
  }

  .event-grid {
    display: flex;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
  }

  .event-card {
    flex: 0 0 min(82vw, 310px);
    scroll-snap-align: start;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: clamp(2.2rem, 10.5vw, 3rem);
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-text {
    font-size: 1.25rem;
  }

  .hero-copy p {
    margin-top: 20px;
    font-size: 1rem;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-art img {
    width: 112%;
    max-width: none;
    margin-left: -6%;
  }

  .marquee-wrap {
    width: calc(100% - 20px);
    margin-top: 20px;
  }

  .marquee-track {
    padding: 13px 18px;
    gap: 22px;
    font-size: 0.82rem;
  }

  .step-card {
    padding: 18px 18px 28px;
  }

  .step-card img {
    width: 170px;
    height: 140px;
  }

  .step-card p {
    margin-left: 0;
  }

  .step-title-row {
    grid-template-columns: 34px 1fr;
  }

  .topic {
    min-height: 34px;
    padding: 0 13px;
    font-size: 0.82rem;
  }

  .why-card {
    padding-right: 24px;
  }

  .mini {
    justify-self: end;
    position: relative;
    right: auto;
    bottom: auto;
    margin: -38px 0 0 auto;
  }

  .interface-grid {
    min-height: auto;
  }

  .table-band {
    height: 130px;
  }

  .tablet-scene {
    min-height: 285px;
  }

  .tablet-scene img {
    width: 128%;
    margin: 20px -54px -10px auto;
  }

  .scene-cup {
    left: -20px;
  }

  .scene-plant {
    right: -18px;
  }
}