:root {
  --orange: #ff7a1a;
  --orange-dark: #df5700;
  --amber: #ffb23f;
  --charcoal: #151515;
  --ink: #24201d;
  --muted: #6f655d;
  --cream: #fff8ef;
  --paper: #ffffff;
  --teal: #0c8f86;
  --mint: #dff6e7;
  --line: rgba(36, 32, 29, 0.12);
  --shadow: 0 24px 70px rgba(64, 35, 9, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 122, 26, 0.18), transparent 28rem),
    linear-gradient(180deg, #fffaf4 0%, #fff3e2 48%, #ffffff 100%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  margin: 0;
  padding: 14px max(16px, calc((100vw - 1180px) / 2));
  background: rgba(255, 250, 244, 0.68);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(255, 122, 26, 0.12);
}

.brand,
.nav-links,
.header-action {
  border: 1px solid rgba(255, 122, 26, 0.18);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 40px rgba(64, 35, 9, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
}

.brand img {
  width: clamp(126px, 12vw, 168px);
  height: auto;
  border-radius: 4px;
}

.nav-links {
  display: flex;
  gap: 4px;
  padding: 6px;
  border-radius: 999px;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--ink);
  background: #fff3e5;
}

.header-action,
.primary-button,
.ghost-button,
.signup-form button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
}

.header-action {
  padding: 0 18px;
  color: #fff;
  background: var(--charcoal);
}

.section-band {
  scroll-margin-top: 96px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  min-height: calc(100vh - 78px);
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: 52px 0 76px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(4.4rem, 10vw, 9.4rem);
  line-height: 0.85;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2.1rem, 4vw, 4.25rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
}

.hero-lead,
.section-heading p,
.cta-copy p {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.primary-button,
.signup-form button {
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  box-shadow: 0 16px 32px rgba(255, 122, 26, 0.34);
}

.primary-button {
  padding: 0 24px;
}

.ghost-button {
  padding: 0 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

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

.hero-stats div {
  padding: 18px;
  border: 1px solid rgba(255, 122, 26, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  font-size: 1.45rem;
}

.hero-stats span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-media {
  position: relative;
  isolation: isolate;
  overflow: visible;
}

.hero-media::before {
  position: absolute;
  inset: 10% 4% 2% 12%;
  z-index: -1;
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(255, 122, 26, 0.34), rgba(12, 143, 134, 0.18));
  content: "";
  filter: blur(8px);
  transform: rotate(-3deg);
}

.hero-media img {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow);
  animation: floaty 6s ease-in-out infinite;
}

.pulse-dot {
  position: absolute;
  z-index: 2;
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  color: rgba(255, 122, 26, 0.42);
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(255, 122, 26, 0.42);
  animation: pulse 2.8s ease-out infinite;
}

.dot-a {
  top: 20%;
  right: 22%;
}

.dot-b {
  right: 8%;
  bottom: 26%;
  color: rgba(12, 143, 134, 0.36);
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(12, 143, 134, 0.36);
  animation-delay: 900ms;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 260px;
  padding: 14px;
  border: 1px solid rgba(255, 122, 26, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 40px rgba(64, 35, 9, 0.16);
  backdrop-filter: blur(18px);
}

.floating-card strong,
.floating-card small {
  display: block;
}

.floating-card small {
  margin-top: 3px;
  color: var(--muted);
}

.mini-icon {
  display: grid;
  min-width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--orange);
  font-weight: 900;
}

.card-top {
  top: 5%;
  right: -4%;
  left: auto;
  animation: cardDrift 5.4s ease-in-out infinite;
}

.card-bottom {
  right: -3%;
  bottom: 12%;
  animation: cardDrift 6.2s ease-in-out infinite reverse;
}

.steps,
.categories,
.why,
.faq,
.cta {
  padding: 88px 0;
}

.ticker-band {
  overflow: hidden;
  width: 100%;
  border-block: 1px solid rgba(255, 122, 26, 0.18);
  background: rgba(255, 255, 255, 0.64);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 14px;
  padding: 16px 0;
  animation: marquee 24s linear infinite;
}

.ticker-track span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid rgba(255, 122, 26, 0.18);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--ink);
  background: #fff;
  font-size: 0.92rem;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(64, 35, 9, 0.08);
}

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

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

.info-card,
.category-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 36px rgba(64, 35, 9, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.info-card {
  min-height: 250px;
  padding: 28px;
}

.info-card:hover,
.category-card:hover {
  border-color: rgba(255, 122, 26, 0.45);
  box-shadow: 0 22px 52px rgba(64, 35, 9, 0.14);
  transform: translateY(-6px);
}

.card-number {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--orange-dark);
  font-weight: 900;
}

.info-card p,
.feature-item p,
.trade-card p {
  color: var(--muted);
  line-height: 1.65;
}

.dark-band {
  position: relative;
  width: 100%;
  max-width: none;
  padding: 96px max(16px, calc((100vw - 1180px) / 2));
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 84% 18%, rgba(12, 143, 134, 0.22), transparent 24rem),
    linear-gradient(135deg, rgba(255, 122, 26, 0.18), transparent 38%),
    var(--charcoal);
}

.dark-band::before {
  position: absolute;
  inset: 34px max(16px, calc((100vw - 1180px) / 2)) auto auto;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.dark-band .eyebrow {
  color: var(--amber);
}

.dark-band .section-heading p,
.dark-band .feature-item p {
  color: rgba(255, 255, 255, 0.68);
}

.feature-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: clamp(26px, 6vw, 84px);
}

.phone-stage {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
}

.feature-float {
  position: absolute;
  z-index: 3;
  min-width: 154px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
  animation: cardDrift 5.8s ease-in-out infinite;
}

.feature-float strong,
.feature-float span {
  display: block;
}

.feature-float strong {
  font-size: 1.12rem;
}

.feature-float span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  font-weight: 800;
}

.float-offer {
  top: 84px;
  left: -10px;
}

.float-rating {
  right: -18px;
  bottom: 116px;
  animation-delay: 700ms;
}

.phone-shell {
  position: relative;
  z-index: 2;
  width: min(390px, 100%);
  margin: 0 auto;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 38px;
  background:
    linear-gradient(145deg, #1c1c1c, #050505);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.34);
  transform: rotate(-2deg);
  transition: transform 260ms ease;
}

.phone-stage:hover .phone-shell {
  transform: rotate(0deg) translateY(-8px);
}

.phone-top {
  width: 92px;
  height: 8px;
  margin: 8px auto 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.app-screen {
  min-height: 590px;
  padding: 20px;
  border-radius: 28px;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 4%, rgba(255, 122, 26, 0.2), transparent 8rem),
    linear-gradient(180deg, #fff8ef, #ffffff);
}

.screen-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  font-weight: 900;
}

.screen-header small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
}

.screen-header button {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: var(--orange);
  background: #ffe2c7;
}

.search-pill {
  margin-bottom: 12px;
  padding: 13px 16px;
  border-radius: 999px;
  color: var(--muted);
  background: #f3eee8;
  font-size: 0.92rem;
  font-weight: 700;
}

.category-pills {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.category-pills span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border-radius: 999px;
  padding: 0 11px;
  color: var(--muted);
  background: #f3eee8;
  font-size: 0.74rem;
  font-weight: 900;
}

.category-pills .active {
  color: #fff;
  background: var(--orange);
}

.mini-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.mini-product-grid article {
  min-height: 146px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(64, 35, 9, 0.08);
}

.product-emoji {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 16px;
  background: #fff1e4;
  font-size: 1.7rem;
}

.mini-product-grid strong,
.mini-product-grid small,
.chat-preview strong,
.chat-preview small {
  display: block;
}

.mini-product-grid strong {
  font-size: 0.92rem;
}

.mini-product-grid small,
.chat-preview small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.35;
}

.offer-panel {
  display: grid;
  grid-template-columns: 1fr 46px;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
  padding: 16px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #f26322);
  box-shadow: 0 18px 34px rgba(255, 122, 26, 0.28);
}

.offer-panel h3 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.offer-panel p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  line-height: 1.45;
}

.offer-panel .tag {
  margin-bottom: 16px;
  color: var(--orange-dark);
  background: rgba(255, 255, 255, 0.9);
}

.offer-panel button {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--orange-dark);
  background: #fff;
  font-size: 1.25rem;
  font-weight: 900;
}

.chat-preview {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  font-weight: 900;
}

.bottom-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 16px;
  padding: 12px 18px 4px;
}

.bottom-nav span {
  height: 5px;
  border-radius: 999px;
  background: #e5ded6;
}

.bottom-nav .active {
  background: var(--orange);
}

.tag {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--orange-dark);
  background: #fff1e4;
  font-size: 0.78rem;
  font-weight: 900;
}

.tag.teal {
  color: #066a64;
  background: #dff8f5;
}

.feature-list {
  display: grid;
  gap: 16px;
}

.feature-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.feature-item:hover {
  border-color: rgba(255, 178, 63, 0.34);
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(8px);
}

.feature-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  color: var(--charcoal);
  background: var(--amber);
  font-size: 1.45rem;
  font-weight: 900;
}

.feature-summary {
  padding: 22px;
  border: 1px solid rgba(255, 122, 26, 0.28);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 122, 26, 0.22), rgba(255, 255, 255, 0.06));
}

.feature-summary span,
.feature-summary strong {
  display: block;
}

.feature-summary span {
  margin-bottom: 8px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-summary strong {
  line-height: 1.5;
}

.category-card {
  min-height: 158px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(255, 122, 26, 0.12), rgba(12, 143, 134, 0.08)),
    rgba(255, 255, 255, 0.82);
}

.category-card span,
.category-card strong {
  display: block;
}

.category-card span {
  margin-bottom: 54px;
  color: var(--muted);
  font-weight: 800;
}

.category-card strong {
  font-size: 1.75rem;
}

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

.why-card {
  position: relative;
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 122, 26, 0.1), rgba(12, 143, 134, 0.06)),
    #fff;
  box-shadow: 0 18px 42px rgba(64, 35, 9, 0.09);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.why-card::after {
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(255, 122, 26, 0.22);
  border-radius: 50%;
  content: "";
  transform: scale(1);
  transition: transform 240ms ease;
}

.why-card:hover {
  border-color: rgba(255, 122, 26, 0.42);
  box-shadow: 0 28px 70px rgba(64, 35, 9, 0.16);
  transform: translateY(-8px);
}

.why-card:hover::after {
  transform: scale(1.2);
}

.why-card.large {
  grid-column: span 2;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 178, 63, 0.16), transparent 42%),
    var(--charcoal);
}

.why-card.wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 22px;
}

.why-card h3 {
  margin: 24px 0 10px;
}

.why-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.why-card.large p {
  color: rgba(255, 255, 255, 0.7);
}

.why-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--orange);
  font-size: 1.4rem;
  font-weight: 900;
  animation: iconBob 4.2s ease-in-out infinite;
}

.why-icon.teal {
  background: var(--teal);
}

.why-icon.green {
  color: var(--charcoal);
  background: #a8c66c;
}

.why-icon.dark {
  background: var(--charcoal);
}

.why-meter {
  height: 10px;
  margin-top: 28px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.why-meter span {
  display: block;
  width: var(--fill);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  animation: meterFill 1.4s ease-out both;
}

.why-stats {
  min-width: 150px;
  padding: 18px;
  border: 1px solid rgba(255, 122, 26, 0.18);
  border-radius: 8px;
  background: #fff7ed;
}

.why-stats strong,
.why-stats span {
  display: block;
}

.why-stats strong {
  font-size: 2.4rem;
  line-height: 1;
  color: var(--orange-dark);
}

.why-stats span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.4;
}

.community {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 520px);
  align-items: center;
  gap: 42px;
  padding: 92px 0;
}

.community-copy p {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.7;
}

.community-panel {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 122, 26, 0.16);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 243, 229, 0.82));
  box-shadow: var(--shadow);
}

.community-panel::before {
  position: absolute;
  top: -18px;
  right: 28px;
  width: 84px;
  height: 6px;
  border-radius: 999px;
  background: var(--orange);
  content: "";
  animation: slideMark 3.6s ease-in-out infinite;
}

.activity-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.activity-row.active {
  border-color: rgba(255, 122, 26, 0.34);
  background: #fff7ed;
}

.activity-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--orange);
  font-weight: 900;
}

.activity-row small,
.activity-row strong {
  display: block;
}

.activity-row small {
  margin-top: 4px;
  color: var(--muted);
}

.faq {
  padding-top: 70px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.faq-item {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 122, 26, 0.08), rgba(12, 143, 134, 0.05)),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 36px rgba(64, 35, 9, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.faq-item:hover {
  border-color: rgba(255, 122, 26, 0.34);
  box-shadow: 0 22px 52px rgba(64, 35, 9, 0.13);
  transform: translateY(-5px);
}

.faq-item h3 {
  max-width: 560px;
  margin-bottom: 14px;
}

.faq-item p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.cta {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 480px);
  align-items: center;
  gap: 34px;
  margin-bottom: 40px;
  padding: 42px;
  border: 1px solid rgba(255, 122, 26, 0.16);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff, #fff1df);
  box-shadow: var(--shadow);
}

.signup-form {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.signup-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 900;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.signup-form input {
  min-width: 0;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font: inherit;
}

.signup-form button {
  padding: 0 22px;
  cursor: pointer;
}

.form-message {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--teal);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 36px;
  color: var(--muted);
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.delay-1 {
  transition-delay: 120ms;
}

.delay-2 {
  transition-delay: 220ms;
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes cardDrift {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 currentColor;
    opacity: 0.95;
    transform: scale(1);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(255, 122, 26, 0);
    opacity: 0.2;
    transform: scale(1.16);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 122, 26, 0);
    opacity: 0.9;
    transform: scale(1);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

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

@keyframes slideMark {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-36px);
  }
}

@keyframes iconBob {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes meterFill {
  from {
    transform: scaleX(0);
    transform-origin: left;
  }

  to {
    transform: scaleX(1);
    transform-origin: left;
  }
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

  .hero,
  .feature-layout,
  .community,
  .cta {
    grid-template-columns: 1fr;
  }

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

  .hero-media {
    order: -1;
  }

  .step-grid,
  .category-grid,
  .why-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-card.large,
  .why-card.wide {
    grid-column: span 2;
  }

  .card-top {
    top: auto;
    right: 4%;
    bottom: -18px;
  }

  .card-bottom {
    right: auto;
    bottom: 14%;
    left: -2%;
  }

  .phone-stage {
    min-height: auto;
    padding: 30px 0;
  }

  .phone-shell {
    transform: none;
  }

  .phone-stage:hover .phone-shell {
    transform: translateY(-6px);
  }

  .float-offer {
    top: 4px;
    left: 8%;
  }

  .float-rating {
    right: 8%;
    bottom: 8px;
  }

  .cta {
    padding: 28px;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: 100%;
    padding-inline: 12px;
  }

  .header-action {
    display: none;
  }

  .section-band {
    width: min(100% - 24px, 1180px);
  }

  .hero {
    padding-bottom: 52px;
  }

  h1 {
    font-size: clamp(4rem, 22vw, 6rem);
  }

  .hero-stats,
  .step-grid,
  .category-grid,
  .why-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .why-card.large,
  .why-card.wide {
    grid-column: span 1;
  }

  .why-card.wide {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .form-row {
    grid-template-columns: 1fr;
  }

  .primary-button,
  .ghost-button,
  .signup-form button {
    width: 100%;
  }

  .floating-card {
    position: static;
    max-width: none;
    margin-top: 10px;
  }

  .pulse-dot {
    display: none;
  }

  .steps,
  .categories,
  .why,
  .faq,
  .cta {
    padding: 62px 0;
  }

  .dark-band {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .phone-stage {
    padding: 0;
  }

  .feature-float {
    display: none;
  }

  .phone-shell {
    width: 100%;
    max-width: 340px;
  }

  .app-screen {
    min-height: auto;
    padding: 16px;
  }

  .category-pills {
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .mini-product-grid {
    grid-template-columns: 1fr;
  }

  .cta {
    padding: 24px;
  }
}

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