:root {
  --ink: #171b16;
  --paper: #f7f7ef;
  --paper-2: #e8ecdf;
  --green: #2f6f19;
  --green-deep: #123d06;
  --lime: #a8df45;
  --pink: #ea90b3;
  --orange: #ef8b67;
  --aqua: #4fd4ca;
  --line: rgba(23, 27, 22, 0.18);
  --white: #fffef8;
  --header-h: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  left: 20px;
  top: -100px;
  z-index: 1000;
  padding: 12px 16px;
  color: white;
  background: var(--green-deep);
}

.skip-link:focus {
  top: 20px;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.85'/%3E%3C/svg%3E");
}

.scroll-progress {
  position: fixed;
  z-index: 1001;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
}

.scroll-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: 1fr auto;
  align-items: end;
  gap: 24px;
  padding: clamp(24px, 5vw, 72px);
  color: white;
  background: var(--green-deep);
  transition: transform 0.85s cubic-bezier(0.76, 0, 0.24, 1);
}

.loader.done {
  transform: translateY(-105%);
}

.loader-brand {
  grid-column: 1 / -1;
  align-self: center;
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.7rem, 4vw, 4.5rem);
  font-weight: 700;
}

.loader-brand img {
  width: clamp(64px, 8vw, 120px);
  aspect-ratio: 1;
  border-radius: 20%;
}

.loader-track {
  height: 2px;
  background: rgba(255, 255, 255, 0.22);
}

.loader-track i {
  display: block;
  width: 0;
  height: 100%;
  background: var(--lime);
}

.loader strong {
  font: 500 1rem "Manrope", sans-serif;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(20px, 4vw, 64px);
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: color 0.3s, background 0.3s, border-color 0.3s;
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(247, 247, 239, 0.94);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font: 600 1.05rem "Manrope", sans-serif;
}

.brand img,
.footer-brand img {
  width: 38px;
  height: 38px;
  border-radius: 9px;
}

.brand b,
.footer-brand b {
  color: var(--lime);
}

.site-header.scrolled .brand b {
  color: var(--green);
}

.desktop-nav {
  display: flex;
  gap: 34px;
  font-size: 0.82rem;
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.82rem;
  font-weight: 600;
}

.store-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  color: var(--green-deep);
  background: var(--lime);
}

.store-link svg,
.button svg,
.text-link svg,
.submit-button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 0;
  color: inherit;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 6px 0;
  background: currentColor;
  transition: transform 0.3s;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 850;
  display: grid;
  place-items: center;
  color: white;
  background: var(--green-deep);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu nav {
  display: grid;
  width: min(86vw, 540px);
}

.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font: 600 clamp(1.6rem, 7vw, 3rem) "Manrope", sans-serif;
}

.mobile-menu small {
  font-size: 0.7rem;
  color: var(--lime);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: white;
  background: var(--green-deep);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(52vw, 840px);
  padding: clamp(140px, 18vh, 210px) 0 170px clamp(24px, 6vw, 96px);
}

.hero-eyebrow,
.step-number {
  margin: 0 0 24px;
  font: 600 0.72rem "Manrope", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-eyebrow::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 1px;
  margin-right: 12px;
  vertical-align: middle;
  background: var(--lime);
}

.hero h1 {
  margin: 0;
  font: 700 clamp(4rem, 8.7vw, 9.4rem)/0.83 "Manrope", sans-serif;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

.hero h1 .accent {
  color: var(--lime);
}

.hero-intro {
  width: min(620px, 86%);
  margin: 40px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.35vw, 1.28rem);
  line-height: 1.6;
}

.hero-actions,
.final-content > div {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 52px;
  padding: 0 20px;
  font-weight: 700;
}

.button-light {
  color: var(--green-deep);
  background: var(--white);
}

.text-link,
.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.hero-product {
  position: absolute;
  z-index: 1;
  top: 19%;
  right: -13%;
  width: min(68vw, 1120px);
  height: 68%;
}

.product-screen {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #171d16;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.35);
}

.browser-bar {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.58);
  background: #20271f;
  font-size: 0.62rem;
}

.browser-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
}

.browser-bar span {
  margin-left: 8px;
}

.browser-bar-light {
  color: rgba(23, 27, 22, 0.55);
  background: #eef0e8;
}

.browser-bar-light i {
  background: rgba(23, 27, 22, 0.3);
}

.hero-screen {
  position: absolute;
  inset: 2% 0 8% 0;
  transform: perspective(1400px) rotateY(-7deg) rotateX(2deg);
}

.hero-screen img {
  width: 100%;
  height: calc(100% - 34px);
  object-fit: cover;
  object-position: left top;
}

.phone-frame {
  overflow: hidden;
  border: 8px solid #121511;
  border-radius: 34px;
  background: #121511;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
}

.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 25px;
}

.hero-phone {
  position: absolute;
  z-index: 2;
  left: -4%;
  bottom: -13%;
  width: clamp(190px, 18vw, 300px);
  aspect-ratio: 912 / 2048;
  transform: rotate(-3deg);
}

.product-tag {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--lime);
  font: 700 0.65rem "Manrope", sans-serif;
}

.product-tag i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-deep);
}

.tag-web {
  top: -4%;
  left: 10%;
}

.tag-mobile {
  bottom: 4%;
  left: -8%;
  color: white;
  background: #b42d64;
}

.tag-mobile i {
  background: white;
}

.hero-footer {
  position: absolute;
  left: clamp(24px, 6vw, 96px);
  bottom: 34px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.hero-footer i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--lime);
}

.scroll-cue {
  position: absolute;
  right: clamp(24px, 4vw, 64px);
  bottom: 30px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.72rem;
}

.scroll-cue svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.statement,
.platforms,
.pricing {
  padding: clamp(90px, 12vw, 180px) clamp(22px, 6vw, 96px);
}

.section-index {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  font: 600 0.72rem "Manrope", sans-serif;
  text-transform: uppercase;
}

.section-index span:first-child {
  color: var(--green);
}

.statement-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: clamp(40px, 8vw, 150px);
  align-items: end;
  margin-top: clamp(60px, 8vw, 120px);
}

.statement h2,
.flow-copy h2,
.platform-heading h2,
.pricing-heading h2,
.payment-copy h2,
.final-content h2 {
  margin: 0;
  font: 650 clamp(3.2rem, 7vw, 8rem)/0.95 "Manrope", sans-serif;
}

h2 em {
  color: var(--green);
  font-family: Georgia, serif;
  font-weight: 400;
}

.statement-copy {
  max-width: 470px;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.65;
}

.statement-copy p + p {
  margin-top: 28px;
  color: rgba(23, 27, 22, 0.58);
}

.flow-step {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: clamp(40px, 8vw, 140px);
  overflow: hidden;
  padding: clamp(90px, 10vw, 150px) clamp(22px, 7vw, 110px);
}

.flow-copy {
  position: relative;
  z-index: 2;
}

.flow-copy h2 {
  font-size: clamp(2.8rem, 5.3vw, 6.4rem);
}

.flow-copy p {
  max-width: 570px;
  margin: 28px 0 0;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.65;
}

.step-number {
  display: block;
  color: var(--green);
}

.feature-points {
  display: grid;
  gap: 0;
  max-width: 560px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.feature-points li {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}

.feature-points li::before {
  content: "↳";
  margin-right: 12px;
  color: var(--green);
}

.flow-step-register {
  background: #dfe8d3;
}

.flow-visual {
  position: relative;
  height: min(78vh, 850px);
}

.phone-main {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(370px, 34vw);
  aspect-ratio: 912 / 2048;
  transform: translate(-50%, -50%) rotate(3deg);
}

.color-key {
  position: absolute;
  right: 0;
  bottom: 8%;
  display: grid;
  gap: 9px;
}

.color-key span {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 11px;
  color: white;
  background: var(--key);
  font-size: 0.65rem;
  font-weight: 600;
}

.flow-step-agenda {
  grid-template-columns: 1.25fr 0.75fr;
  color: white;
  background: #1c201b;
}

.flow-step-agenda h2 em,
.flow-step-team h2 em {
  color: var(--lime);
}

.flow-step-agenda .step-number,
.flow-step-team .step-number {
  color: var(--lime);
}

.agenda-stage {
  position: relative;
  height: min(72vh, 740px);
}

.agenda-screen {
  position: absolute;
  top: 50%;
  left: 48%;
  width: min(62vw, 980px);
  transform: translate(-50%, -50%);
}

.agenda-phone {
  position: absolute;
  z-index: 2;
  right: -2%;
  bottom: -10%;
  width: min(220px, 18vw);
  aspect-ratio: 912 / 2048;
  border-color: #f8f8f0;
  background: #f8f8f0;
}

.flow-step-collect {
  color: #4d0b28;
  background: var(--pink);
}

.flow-step-collect h2 em {
  color: #fff8f0;
}

.flow-step-collect .step-number {
  color: #6e0e39;
}

.collect-gallery {
  position: relative;
  height: min(80vh, 850px);
}

.collect-gallery figure {
  position: absolute;
  width: min(335px, 28vw);
  aspect-ratio: 912 / 2048;
  margin: 0;
  border-color: #fffdf7;
  background: #fffdf7;
}

.collect-back {
  top: 2%;
  left: 5%;
  transform: rotate(-6deg);
}

.collect-front {
  right: 7%;
  bottom: -10%;
  transform: rotate(5deg);
}

.mini-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  max-width: 580px;
  margin-top: 45px;
  background: rgba(77, 11, 40, 0.22);
}

.mini-features div {
  display: grid;
  gap: 8px;
  padding: 20px;
  background: var(--pink);
}

.mini-features span {
  font-size: 0.8rem;
  opacity: 0.72;
}

.flow-step-team {
  grid-template-columns: 1.15fr 0.85fr;
  color: white;
  background: var(--green-deep);
}

.team-screen {
  width: min(64vw, 1060px);
}

.team-screen img {
  width: 100%;
}

.inline-link {
  margin-top: 38px;
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
}

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

.platform-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px 90px;
}

.platform-heading .section-index {
  grid-column: 1 / -1;
}

.platform-heading h2,
.pricing-heading h2 {
  font-size: clamp(3rem, 6vw, 7rem);
}

.platform-heading > p {
  align-self: end;
  max-width: 480px;
  line-height: 1.6;
}

.platform-showcase {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 18px;
  margin-top: clamp(60px, 8vw, 110px);
}

.platform-card {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  padding: 28px;
}

.platform-mobile {
  color: white;
  background: #b33768;
}

.platform-web {
  background: var(--orange);
}

.platform-label {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.platform-label > span {
  font-size: 0.7rem;
  opacity: 0.65;
}

.platform-label div {
  display: grid;
  gap: 3px;
}

.platform-label strong {
  font: 650 1.5rem "Manrope", sans-serif;
}

.platform-label small {
  opacity: 0.68;
}

.platform-device {
  position: absolute;
}

.platform-mobile .platform-device {
  top: 110px;
  left: 50%;
  width: min(320px, 75%);
  height: 710px;
  transform: translateX(-50%);
}

.platform-web .platform-device {
  top: 150px;
  left: 7%;
  width: 105%;
  transform: rotate(2deg);
  border-color: rgba(23, 27, 22, 0.2);
}

.platform-web .platform-device img {
  width: 100%;
}

.platform-card > p {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 25px;
  max-width: 320px;
  margin: 0;
  padding: 15px;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
}

.feature-marquee {
  overflow: hidden;
  padding: 28px 0;
  color: white;
  background: var(--ink);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  animation: marquee 26s linear infinite;
  font: 600 clamp(1.3rem, 2vw, 2.2rem) "Manrope", sans-serif;
}

.marquee-track i {
  color: var(--lime);
  font-style: normal;
}

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

.pricing {
  background: #d9eee9;
}

.pricing-heading {
  display: grid;
  gap: clamp(50px, 7vw, 100px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 80px;
  background: rgba(23, 27, 22, 0.2);
  border: 1px solid rgba(23, 27, 22, 0.2);
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 560px;
  padding: clamp(24px, 3vw, 48px);
  background: #d9eee9;
}

.price-featured {
  color: white;
  background: var(--green);
}

.price-top {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid currentColor;
}

.price-top span,
.price-top em {
  font-size: 0.68rem;
  font-style: normal;
  text-transform: uppercase;
}

.price-top strong {
  font: 650 1.25rem "Manrope", sans-serif;
}

.price-card > p {
  min-height: 78px;
  margin: 30px 0;
  line-height: 1.55;
}

.price {
  font: 650 clamp(2.8rem, 4vw, 5.2rem) "Manrope", sans-serif;
}

.price sup {
  font-size: 0.35em;
  vertical-align: top;
}

.price small {
  font: 500 0.8rem "DM Sans", sans-serif;
}

.price-card ul {
  display: grid;
  gap: 14px;
  margin: 35px 0;
  padding: 0;
  list-style: none;
  font-size: 0.88rem;
}

.price-card li::before {
  content: "✓";
  margin-right: 10px;
}

.choose-plan {
  width: 100%;
  min-height: 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding: 0 18px;
  color: inherit;
  border: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
}

.choose-plan:hover {
  color: white;
  background: var(--ink);
}

.price-featured .choose-plan:hover {
  color: var(--green-deep);
  background: var(--lime);
}

.payment {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(50px, 8vw, 140px);
  padding: clamp(90px, 12vw, 180px) clamp(22px, 7vw, 110px);
  background: var(--paper);
}

.payment-copy h2 {
  font-size: clamp(2.7rem, 5vw, 5.7rem);
}

.payment-copy p {
  max-width: 480px;
  margin-top: 30px;
  line-height: 1.65;
}

.payment-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 18px;
  align-self: start;
  padding: clamp(24px, 4vw, 54px);
  border: 1px solid var(--line);
  background: var(--white);
}

.form-field {
  display: grid;
  gap: 9px;
}

.form-field-full,
.submit-button,
.form-note {
  grid-column: 1 / -1;
}

.form-field label,
.field-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.form-field input,
.form-field select {
  width: 100%;
  height: 54px;
  padding: 0 15px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  background: transparent;
}

.form-field input:focus,
.form-field select:focus {
  border-color: var(--green);
}

.plan-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.plan-selector input {
  position: absolute;
  opacity: 0;
}

.plan-selector span {
  min-height: 65px;
  display: grid;
  place-content: center;
  gap: 3px;
  border: 1px solid var(--line);
  cursor: pointer;
  text-align: center;
  font-size: 0.8rem;
}

.plan-selector b {
  font-size: 0.7rem;
}

.plan-selector input:checked + span {
  color: white;
  border-color: var(--green);
  background: var(--green);
}

.submit-button {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  color: white;
  border: 0;
  background: var(--green-deep);
  cursor: pointer;
  font-weight: 700;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.6;
}

.form-note {
  margin: -7px 0 0;
  color: rgba(23, 27, 22, 0.55);
  font-size: 0.72rem;
}

.final-cta {
  position: relative;
  min-height: 90svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: white;
  text-align: center;
}

.final-cta > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7);
}

.final-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 24, 4, 0.9);
}

.final-content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  padding: 80px 22px;
}

.final-content > img {
  width: 84px;
  border-radius: 18px;
}

.final-content > p {
  margin: 24px 0 30px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.final-content h2 {
  font-size: clamp(4rem, 9vw, 10rem);
}

.final-content h2 em {
  color: var(--lime);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 50px clamp(22px, 6vw, 96px);
  color: white;
  background: var(--ink);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 600 1.1rem "Manrope", sans-serif;
}

.site-footer > p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}

.site-footer nav {
  display: flex;
  gap: 20px;
  font-size: 0.75rem;
}

.site-footer small {
  grid-column: 1 / -1;
  padding-top: 28px;
  color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.toast {
  position: fixed;
  z-index: 1200;
  right: 24px;
  bottom: 24px;
  max-width: min(420px, calc(100vw - 48px));
  padding: 16px 18px;
  color: white;
  background: var(--ink);
  transform: translateY(120px);
  opacity: 0;
  transition: transform 0.35s, opacity 0.35s;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast.success {
  background: var(--green);
}

.toast.error {
  background: #a52a2a;
}

.reveal,
.reveal-line {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible,
.reveal-line.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-line:nth-child(2) {
  transition-delay: 0.12s;
}

@media (max-width: 1080px) {
  .desktop-nav,
  .header-actions {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
  }

  .menu-open .menu-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-open .menu-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .hero-copy {
    width: 68vw;
  }

  .hero-product {
    right: -31%;
    width: 78vw;
  }

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

  .statement-copy {
    margin-left: auto;
  }

  .flow-step,
  .flow-step-agenda,
  .flow-step-team {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .platform-card {
    min-height: 680px;
  }

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

@media (max-width: 760px) {
  :root {
    --header-h: 66px;
  }

  .site-header {
    padding: 0 18px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .hero {
    min-height: 920px;
  }

  .hero-copy {
    width: 100%;
    padding: 120px 20px 0;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 18vw, 5.8rem);
  }

  .hero-intro {
    width: 100%;
    margin-top: 26px;
    font-size: 1rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-top: 26px;
  }

  .hero-product {
    top: 535px;
    right: -42%;
    width: 115vw;
    height: 340px;
  }

  .hero-screen {
    inset: 0;
  }

  .hero-phone {
    left: 5%;
    bottom: -25%;
    width: 145px;
  }

  .tag-web {
    top: -10%;
    left: 40%;
  }

  .tag-mobile {
    left: 3%;
    bottom: -13%;
  }

  .hero-footer {
    display: none;
  }

  .scroll-cue {
    right: 18px;
    bottom: 18px;
  }

  .scroll-cue span {
    display: none;
  }

  .statement,
  .platforms,
  .pricing {
    padding: 90px 20px;
  }

  .statement-grid {
    margin-top: 55px;
  }

  .statement h2 {
    font-size: 3.25rem;
  }

  .flow-step,
  .flow-step-agenda,
  .flow-step-team {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 90px 20px;
  }

  .flow-step-register .flow-copy,
  .flow-step-collect .flow-copy {
    order: 1;
  }

  .flow-step-register .flow-visual,
  .flow-step-collect .collect-gallery {
    order: 2;
  }

  .flow-copy h2 {
    font-size: 3.1rem;
  }

  .flow-visual,
  .collect-gallery,
  .agenda-stage {
    height: 620px;
  }

  .phone-main {
    width: 270px;
  }

  .color-key {
    right: -8px;
  }

  .agenda-screen {
    left: 38%;
    width: 155vw;
  }

  .agenda-phone {
    right: 0;
    bottom: -4%;
    width: 185px;
  }

  .collect-gallery figure {
    width: 245px;
  }

  .collect-back {
    left: -9%;
  }

  .collect-front {
    right: -10%;
  }

  .team-screen {
    width: 150vw;
    transform: translateX(-30%);
  }

  .platform-heading {
    grid-template-columns: 1fr;
  }

  .platform-heading h2,
  .pricing-heading h2 {
    font-size: 3.15rem;
  }

  .platform-showcase,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .platform-card {
    min-height: 650px;
  }

  .platform-mobile .platform-device {
    width: 270px;
  }

  .platform-web {
    min-height: 500px;
  }

  .platform-web .platform-device {
    top: 145px;
    left: 5%;
    width: 165%;
  }

  .price-card {
    min-height: 500px;
  }

  .payment {
    padding: 90px 20px;
  }

  .payment-copy h2 {
    font-size: 3.1rem;
  }

  .payment-form {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .form-field-full,
  .submit-button,
  .form-note {
    grid-column: auto;
  }

  .plan-selector {
    grid-template-columns: 1fr;
  }

  .final-cta {
    min-height: 740px;
  }

  .final-content h2 {
    font-size: 4.2rem;
  }

  .final-content > div {
    flex-direction: column;
    gap: 20px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 42px 20px;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }
}

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

  .reveal,
  .reveal-line {
    opacity: 1;
    transform: none;
  }
}
