/*!*****************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./src/app/globals.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************/
/* ─── DineSavvy Global Styles ─── */
:root {
  --black: #000000;
  --near-black: #0a0a0a;
  --surface: #111111;
  --card: #161616;
  --card2: #1c1c1c;
  --border: #252525;
  --border-light: #333;
  --red: #e8000b;
  --red-dim: rgba(232, 0, 11, 0.35);
  --red-glow: rgba(232, 0, 11, 0.12);
  --white: #ffffff;
  --off-white: #f0ece4;
  --muted: #777777;
  --muted2: #444;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--off-white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0.75) 70%, transparent 100%);
}

.nav-logo img {
  height: 72px;
  width: auto;
  mix-blend-mode: screen;
  display: block;
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 9px 22px;
  letter-spacing: 0.1em !important;
}

.nav-cta:hover {
  opacity: 0.88 !important;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 130px 60px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 65% at 72% 55%, rgba(232, 0, 11, 0.09) 0%, transparent 65%),
    radial-gradient(ellipse 30% 45% at 8% 85%, rgba(232, 0, 11, 0.04) 0%, transparent 60%);
}

.hero-left {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 30px;
  font-weight: 600;
  opacity: 0;
  animation: fadeUp 0.6s 0.1s forwards;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--red);
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.8rem, 6vw, 6.4rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeUp 0.7s 0.25s forwards;
}

.hero-headline em {
  font-style: italic;
  color: var(--red);
  display: block;
}

.hero-sub {
  font-size: 0.93rem;
  color: var(--muted);
  max-width: 430px;
  line-height: 1.85;
  margin-bottom: 50px;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.6s 0.4s forwards;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.6s 0.55s forwards;
}

.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--red);
  color: var(--white);
  padding: 13px 28px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}

.btn-red:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--border-light);
  color: var(--white);
  padding: 13px 28px;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.15s;
}

.btn-outline:hover {
  border-color: var(--red);
  transform: translateY(-1px);
}

.hero-right {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: fadeIn 1s 0.45s forwards;
}

.phones-wrap {
  position: relative;
  width: 360px;
}

/* app screenshot card */
.phone-card {
  width: 220px;
  margin: 0 auto;
  background: #0e0e0e;
  border: 1px solid #272727;
  border-radius: 38px;
  padding: 11px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 50px 100px -15px rgba(0, 0, 0, 0.85),
    0 0 80px -10px rgba(232, 0, 11, 0.15);
}

.phone-inner {
  border-radius: 29px;
  overflow: hidden;
  background: #111;
  aspect-ratio: 9/19.5;
  position: relative;
}

.app-screen {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #111111;
  font-size: 10px;
}

.app-statusbar {
  display: flex;
  justify-content: space-between;
  padding: 10px 16px 4px;
  font-size: 0.58rem;
  color: #aaa;
  font-weight: 600;
}

.app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 14px 10px;
}

.app-loc {
  display: flex;
  align-items: center;
  gap: 5px;
}

.app-loc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}

.app-loc-text {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--white);
}

.app-loc-caret {
  font-size: 0.55rem;
  color: var(--muted);
}

.app-filter-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.app-rest-label {
  padding: 0 14px 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
}

.app-food-card {
  margin: 0 10px 8px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(160deg, #2a1200, #1a0a00, #120008);
  flex: 1 1;
}

.app-food-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  opacity: 0.85;
  background: radial-gradient(circle at 60% 40%, #3a1800 0%, #0a0400 100%);
}

.app-rating {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 6px;
  padding: 2px 7px;
  font-size: 0.58rem;
  font-weight: 700;
  color: #222;
  display: flex;
  align-items: center;
  gap: 3px;
}

.app-food-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, transparent 100%);
  padding: 24px 12px 12px;
  z-index: 2;
}

.app-food-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}

.app-food-desc {
  font-size: 0.58rem;
  color: #aaa;
  line-height: 1.4;
  margin-bottom: 6px;
}

.app-food-time {
  display: inline-block;
  background: #333;
  border-radius: 4px;
  padding: 2px 7px;
  font-size: 0.55rem;
  color: #aaa;
}

.app-idk-btn {
  margin: 0 10px 10px;
  background: var(--red);
  border-radius: 28px;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
}

.app-navbar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 10px 14px;
  border-top: 1px solid #1e1e1e;
}

.app-nav-icon {
  font-size: 1rem;
  opacity: 0.45;
}

.app-nav-icon.active {
  opacity: 1;
  color: var(--red);
}

/* floating stat cards */
.float-card {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  white-space: nowrap;
}

.fc1 {
  top: 4%;
  right: -22%;
  animation: float 4.2s ease-in-out infinite;
}

.fc2 {
  bottom: 16%;
  left: -26%;
  animation: float 5s 1.5s ease-in-out infinite;
}

.fc-label {
  font-size: 0.57rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-weight: 500;
}

.fc-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.fc-sub {
  font-size: 0.58rem;
  color: var(--red);
  margin-top: 3px;
  font-weight: 500;
}

/* ─── QR CODE ─── */
.hero-qr-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  opacity: 0;
  animation: fadeUp 0.6s 0.75s forwards;
}

.hero-qr-img {
  width: 90px;
  height: 90px;
  border-radius: 6px;
  filter: invert(1);
  flex-shrink: 0;
}

.hero-qr-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 5px;
}

.hero-qr-desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── MARQUEE ─── */
.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 13px 0;
  overflow: hidden;
  background: #060606;
}

.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 32s linear infinite;
  width: max-content;
}

.m-item {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted2);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
}

.m-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

/* ─── SHARED SECTION STYLES ─── */
section {
  padding: 110px 60px;
}

.s-label {
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 auto 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  width: -moz-fit-content;
  width: fit-content;
}

.s-label::before,
.s-label::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--red);
}

.s-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 3.8vw, 3.9rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  max-width: 680px;
  text-align: center;
  margin: 0 auto;
}

.s-body {
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 500px;
  line-height: 1.85;
  margin-top: 18px;
  font-weight: 300;
}

/* ─── HOW IT WORKS ─── */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  margin-top: 64px;
}

.how-card {
  padding: 52px 42px;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}

.how-card:last-child {
  border-right: none;
}

.how-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}

.how-card:hover {
  background: #0d0d0d;
}

.how-card:hover::after {
  transform: scaleX(1);
}

.how-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5.5rem;
  font-weight: 300;
  color: #1e1e1e;
  line-height: 1;
  margin-bottom: 18px;
  transition: color 0.2s;
}

.how-card:hover .how-n {
  color: #262626;
}

.how-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.how-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.how-desc {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ─── AUDIENCES ─── */
.aud-bg {
  background: #080808;
}

.aud-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1px;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 64px;
}

.aud-card {
  background: var(--black);
  padding: 44px 34px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
  cursor: default;
}

.aud-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}

.aud-card:hover {
  background: #0a0a0a;
}

.aud-card:hover::before {
  transform: scaleX(1);
}

.aud-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.aud-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.75;
}

.aud-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 22px;
  font-size: 0.7rem;
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: gap 0.2s;
}

.aud-link:hover {
  gap: 10px;
}

.aud-svg-icon {
  width: 38px;
  height: 38px;
  color: var(--red);
  margin-bottom: 20px;
  display: block;
}

/* ─── MERCHANT ─── */
.merch-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 90px;
  gap: 90px;
  align-items: start;
}

.merch-steps {
  margin-top: 48px;
}

.merch-step {
  display: flex;
  gap: 26px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.merch-step:last-child {
  border-bottom: none;
}

.step-icon-wrap {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  transition: all 0.2s;
  background: transparent;
}

.merch-step:hover .step-icon-wrap {
  border-color: var(--red);
  background: rgba(232, 0, 11, 0.08);
}

.step-svg-icon {
  width: 22px;
  height: 22px;
  color: var(--red);
}

.step-t {
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.step-d {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.75;
}

.hl {
  color: var(--red);
  font-weight: 500;
}

.merch-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.m-stat {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 26px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: border-color 0.2s;
}

.m-stat:hover {
  border-color: var(--red-dim);
}

.m-stat-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.m-stat-val span {
  color: var(--red);
}

.m-stat-lbl {
  font-size: 0.73rem;
  color: var(--muted);
  margin-top: 5px;
}

.m-stat-icon {
  font-size: 2rem;
  opacity: 0.55;
}

.quote-box {
  background: linear-gradient(135deg, rgba(232, 0, 11, 0.09), rgba(232, 0, 11, 0.04));
  border: 1px solid rgba(232, 0, 11, 0.22);
  padding: 26px 28px;
}

.q-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.65;
  margin-bottom: 12px;
}

.q-attr {
  font-size: 0.62rem;
  color: var(--red);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ─── NUDGES ─── */
.nudge-bg {
  background: #080808;
}

.nudge-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 90px;
  gap: 90px;
  align-items: center;
}

.nudge-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nudge-item {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: border-color 0.2s;
}

.nudge-item:hover {
  border-color: var(--red-dim);
}

.nudge-thumb {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: #1e1e1e;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.nudge-main {
  flex: 1 1;
  min-width: 0;
}

.nudge-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
}

.nudge-meta {
  font-size: 0.68rem;
  color: var(--muted);
}

.nudge-by {
  font-size: 0.6rem;
  color: var(--red);
  font-weight: 500;
  margin-top: 2px;
}

.nudge-right {
  text-align: right;
  flex-shrink: 0;
}

.n-timer {
  font-family: 'Montserrat', monospace;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--white);
  background: #1e1e1e;
  padding: 3px 8px;
  border-radius: 4px;
  display: block;
  margin-bottom: 4px;
}

.n-stock {
  font-size: 0.58rem;
  color: var(--red);
}

.food-svg-icon {
  width: 28px;
  height: 28px;
  color: var(--red);
  flex-shrink: 0;
}

.nudge-thumb svg {
  width: 28px;
  height: 28px;
  color: var(--red);
}

/* ─── AI ─── */
.ai-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 90px;
  gap: 90px;
  align-items: start;
}

.ai-feats {
  margin-top: 44px;
}

.ai-feat {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.ai-feat:last-child {
  border-bottom: none;
}

.ai-feat-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.ai-feat-t {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 5px;
}

.ai-feat-d {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.75;
}

.pref-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 24px;
  margin-bottom: 12px;
}

.pref-lbl {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
  font-weight: 600;
}

.pref-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.p-tag {
  display: inline-block;
  background: rgba(200, 16, 46, 0.08);
  border: 1px solid rgba(200, 16, 46, 0.25);
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
}

.p-tag.on {
  background: rgba(200, 16, 46, 0.08);
  border-color: rgba(200, 16, 46, 0.25);
  color: rgba(255, 255, 255, 0.75);
}

.p-tag.off {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.35);
}

.reco-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 20px;
}

.reco-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.reco-badge {
  background: rgba(232, 0, 11, 0.14);
  border: 1px solid rgba(232, 0, 11, 0.3);
  padding: 3px 11px;
  font-size: 0.58rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.1em;
}

.reco-sub {
  font-size: 0.73rem;
  color: var(--muted);
}

.reco-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #111;
  padding: 11px;
  margin-bottom: 7px;
}

.reco-row:last-child {
  margin-bottom: 0;
}

.rr-emoji {
  font-size: 1.5rem;
}

.rr-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
}

.rr-meta {
  font-size: 0.65rem;
  color: var(--muted);
}

.rr-score {
  margin-left: auto;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--red);
}

/* ─── INVESTORS ─── */
.inv-bg {
  background: #080808;
}

.inv-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 90px;
  gap: 90px;
  align-items: start;
}

.inv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1px;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 48px;
}

.inv-box {
  background: var(--black);
  padding: 30px 26px;
}

.inv-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}

.inv-lbl {
  font-size: 0.73rem;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.5;
}

/* ─── DOWNLOAD CTA ─── */
.dl-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.dl-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 0, 11, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.dl-section .s-label {
  justify-content: center;
}

.dl-section .s-heading {
  max-width: none;
  margin: 0 auto;
  font-size: clamp(2.8rem, 4.5vw, 4.6rem);
}

.dl-section .s-body {
  text-align: center;
  margin: 18px auto 44px;
}

.dl-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 16px 30px;
  text-decoration: none;
  color: var(--white);
  transition: border-color 0.2s, transform 0.15s;
}

.dl-btn:hover {
  border-color: var(--red);
  transform: translateY(-2px);
}

.dl-btn-icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 6px;
}

.dl-btn-emoji {
  font-size: 1.8rem;
}

.dl-btn-sub {
  font-size: 0.58rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
}

.dl-btn-name {
  font-size: 0.92rem;
  font-weight: 600;
}

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid var(--border);
  padding: 62px 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  grid-gap: 48px;
  gap: 48px;
  background: #050505;
}

.f-logo img {
  height: 60px;
  width: auto;
  margin-bottom: 14px;
  display: block;
  mix-blend-mode: screen;
}

.f-tag {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 220px;
}

.f-copy {
  font-size: 0.68rem;
  color: var(--muted2);
  margin-top: 20px;
}

.f-col-title {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  font-weight: 600;
}

.f-col a {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.f-col a:hover {
  color: var(--white);
}

/* ─── MERCHANTS PAGE ─── */
.merch-page-hero {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 60px 80px;
  position: relative;
}

.merch-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(232, 0, 11, 0.06) 0%, transparent 70%);
}

.merch-page-hero .s-heading {
  max-width: 700px;
  text-align: center;
}

.merch-page-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.merch-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1px;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 64px;
}

.merch-step-card {
  background: var(--black);
  padding: 52px 42px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}

.merch-step-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}

.merch-step-card:hover {
  background: #0d0d0d;
}

.merch-step-card:hover::after {
  transform: scaleX(1);
}

.merch-step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5.5rem;
  font-weight: 300;
  color: #1e1e1e;
  line-height: 1;
  margin-bottom: 18px;
}

.merch-step-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.merch-step-desc {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.75;
}

.merch-ai-section {
  background: #080808;
}

.merch-ai-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.merch-ai-inner .s-heading {
  max-width: none;
  margin: 0 auto;
}

.merch-ai-inner .s-body {
  max-width: 600px;
  margin: 18px auto 0;
  text-align: center;
}

/* ─── PRIVACY PAGE ─── */
.privacy-page {
  padding: 160px 60px 80px;
  max-width: 800px;
  margin: 0 auto;
}

.privacy-page h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 30px;
}

.privacy-page p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 20px;
}

.privacy-page h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin: 40px 0 16px;
}

.privacy-page h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin: 24px 0 10px;
}

.privacy-page ul,
.privacy-page ol {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.85;
  margin: 12px 0 20px 20px;
}

.privacy-page li {
  margin-bottom: 6px;
}

.privacy-page a {
  color: var(--red);
  text-decoration: none;
}

.privacy-page a:hover {
  text-decoration: underline;
}

/* ─── ABOUT PAGE ─── */
.about-hero {
  padding: 160px 64px 80px;
  text-align: center;
}

.about-hero .s-label {
  margin-bottom: 16px;
}

.about-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  max-width: 700px;
  margin: 0 auto 24px;
  line-height: 1.15;
}

.about-hero p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.about-story {
  padding: 80px 64px;
}

.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 64px;
  gap: 64px;
  align-items: center;
}

.about-story h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.about-story p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 16px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 24px;
  gap: 24px;
  padding: 80px 64px;
  max-width: 1200px;
  margin: 0 auto;
}

.value-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
}

.value-card .value-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(200, 16, 46, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.7;
}

.about-team {
  padding: 80px 64px;
  text-align: center;
}

.about-team h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.about-team>p {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 48px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 32px;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 52px 32px;
  text-align: center;
}

.team-avatar {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: rgba(200, 16, 46, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  overflow: hidden;
}

.team-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.team-card .team-role {
  font-size: 1rem;
  color: var(--red);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.team-prefs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-top: 14px;
}

.pref-tag {
  display: inline-block;
  background: rgba(200, 16, 46, 0.08);
  border: 1px solid rgba(200, 16, 46, 0.25);
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
}

.pref-tag.allergy-tag {
  background: rgba(255, 152, 0, 0.12);
  border-color: rgba(255, 152, 0, 0.4);
  color: #ffb74d;
}

.pref-tag.intolerance-tag {
  background: rgba(156, 39, 176, 0.12);
  border-color: rgba(156, 39, 176, 0.4);
  color: #ce93d8;
}

/* ─── CONTACT PAGE ─── */
.contact-hero {
  padding: 160px 64px 80px;
  text-align: center;
}

.contact-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.contact-hero p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 24px;
  gap: 24px;
  padding: 0 64px 80px;
}

.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 28px;
  text-align: center;
  transition: border-color 0.3s;
}

.contact-card:hover {
  border-color: var(--red);
}

.contact-card .contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(200, 16, 46, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.contact-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.contact-card p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.contact-card a.contact-email {
  display: inline-block;
  color: var(--red);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  padding: 10px 24px;
  border: 1px solid var(--red);
  border-radius: 8px;
  transition: all 0.3s;
}

.contact-card a.contact-email:hover {
  background: var(--red);
  color: var(--white);
}

.contact-location {
  padding: 0 64px 80px;
  text-align: center;
}

.contact-location h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 12px;
}

.contact-location p {
  color: var(--muted);
  font-size: 0.92rem;
}

/* ─── CAREERS PAGE ─── */
.careers-hero {
  padding: 160px 64px 80px;
  text-align: center;
}

.careers-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.careers-hero p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.7;
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 24px;
  gap: 24px;
  padding: 0 64px 80px;
}

.culture-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
}

.culture-card .culture-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(200, 16, 46, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.culture-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.culture-card p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.7;
}

.careers-openings {
  padding: 0 64px 80px;
}

.careers-openings h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 32px;
  text-align: center;
}

.careers-none {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 60px 40px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.careers-none p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.careers-none a {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
}

/* ─── PRESS PAGE ─── */
.press-hero {
  padding: 160px 64px 80px;
  text-align: center;
}

.press-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.press-hero p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

.press-kit {
  padding: 0 64px 80px;
}

.press-kit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 32px;
  gap: 32px;
}

.press-kit-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
}

.press-kit-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.press-kit-card p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.press-contact {
  padding: 0 64px 80px;
  text-align: center;
}

.press-contact h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 12px;
}

.press-contact p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 20px;
}

.press-contact a {
  color: var(--red);
  font-weight: 600;
  text-decoration: none;
}

/* ─── TERMS PAGE ─── */
.terms-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 160px 32px 80px;
}

.terms-page h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 30px;
}

.terms-page h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin: 40px 0 16px;
}

.terms-page p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 20px;
}

.terms-page ul {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.85;
  margin: 12px 0 20px 20px;
}

.terms-page li {
  margin-bottom: 6px;
}

.terms-page a {
  color: var(--red);
  text-decoration: none;
}


/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes float {

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

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

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

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

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  nav {
    padding: 16px 24px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 999;
  }

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

  .nav-links a {
    font-size: 1.2rem;
  }

  .mobile-menu-btn {
    display: block;
    z-index: 1000;
  }

  section {
    padding: 70px 24px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 110px 24px 60px;
  }

  .hero-right {
    margin-top: 56px;
  }

  .fc1,
  .fc2 {
    display: none;
  }

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

  .how-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

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

  .merch-inner,
  .nudge-inner,
  .ai-inner,
  .inv-inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  footer {
    grid-template-columns: 1fr 1fr;
    padding: 48px 24px;
  }

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

  .merch-page-hero {
    padding: 120px 24px 60px;
  }

  .about-hero,
  .contact-hero,
  .careers-hero,
  .press-hero {
    padding: 120px 24px 60px;
  }

  .about-hero h1,
  .contact-hero h1,
  .careers-hero h1,
  .press-hero h1 {
    font-size: 2.2rem;
  }

  .about-story-inner {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
    padding: 40px 24px;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
    padding: 0 24px 60px;
  }

  .culture-grid {
    grid-template-columns: 1fr;
    padding: 0 24px 60px;
  }

  .press-kit-inner {
    grid-template-columns: 1fr;
  }

  .press-kit,
  .press-contact,
  .contact-location,
  .careers-openings {
    padding-left: 24px;
    padding-right: 24px;
  }

  .about-story,
  .about-team {
    padding: 60px 24px;
  }

  .privacy-page,
  .terms-page {
    padding: 120px 24px 60px;
  }
}

@media (max-width:540px) {
  .aud-grid {
    grid-template-columns: 1fr;
  }

  footer {
    grid-template-columns: 1fr;
  }

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

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

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