/* =========================================================
   Fumoo — splash / tanıtım sitesi
   Palet: #0A0A0F ink · #14141C surface · #F97316 brand
          #FBBF24 gold · #FFFFFF / #9CA3AF metin
   ========================================================= */

:root {
  --ink: #0a0a0f;
  --surface: #14141c;
  --surface-2: #1a1a24;
  --line: #2a2a3a;
  --brand: #f97316;
  --gold: #fbbf24;
  --silver: #94a3b8;
  --text: #ffffff;
  --muted: #9ca3af;

  --shell: 1200px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 30px;

  --font-display: 'Sora', ui-sans-serif, system-ui, sans-serif;
  --font-body: 'Inter', ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ink);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--brand);
  color: #fff;
  padding: 10px 16px;
  z-index: 100;
  border-radius: 0 0 10px 0;
}
.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 6px;
}

.shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography helpers ---------- */
.display {
  font-size: clamp(2.6rem, 6.2vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.display--sm {
  font-size: clamp(2rem, 4.6vw, 3.2rem);
}
.display em,
.h2 em {
  font-style: normal;
  color: var(--brand);
}
.h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 600;
  text-wrap: balance;
}
.lede {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  line-height: 1.65;
  max-width: 46ch;
  text-wrap: pretty;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  background: rgb(255 255 255 / 0.03);
  padding: 7px 14px;
  border-radius: 999px;
}
.eyebrow__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgb(249 115 22 / 0.18);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.btn--sm {
  padding: 10px 18px;
  font-size: 0.875rem;
}
.btn--brand {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 30px -10px rgb(249 115 22 / 0.7);
}
.btn--brand:hover {
  background: #fb8a3c;
  transform: translateY(-2px);
}
.btn--ghost {
  border-color: var(--line);
  color: var(--text);
  background: rgb(255 255 255 / 0.02);
}
.btn--ghost:hover {
  border-color: #43435a;
  transform: translateY(-2px);
}

/* ---------- Store badges ---------- */
.stores {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.stores--center {
  justify-content: center;
}
.store {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 20px 11px 18px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #1c1c26, #12121a);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.store:hover {
  transform: translateY(-3px);
  border-color: rgb(249 115 22 / 0.5);
  box-shadow: 0 14px 34px -18px rgb(0 0 0 / 0.9);
}
.store__mark {
  width: 22px;
  height: 24px;
  stroke: none;
  flex: none;
}
.store__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.store__text small {
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.store__text strong {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
}
.store--mini {
  padding: 9px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  gap: 9px;
}
.store--mini .store__mark {
  width: 16px;
  height: 18px;
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgb(10 10 15 / 0.72);
  backdrop-filter: blur(16px) saturate(160%);
  border-bottom-color: rgb(255 255 255 / 0.07);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 76px;
}
.nav__logo img {
  height: 30px;
  width: auto;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  font-size: 0.92rem;
  color: var(--muted);
}
.nav__links a {
  transition: color 0.18s ease;
}
.nav__links a:hover {
  color: var(--text);
}
.nav__toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgb(255 255 255 / 0.03);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
}
.nav__drawer {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 24px 24px;
  background: rgb(10 10 15 / 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav__drawer a {
  padding: 12px 0;
  color: var(--muted);
  border-bottom: 1px solid rgb(255 255 255 / 0.05);
}
.nav__drawer .btn {
  margin-top: 14px;
  color: #fff;
  border-bottom: 0;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: 150px 0 90px;
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  top: -280px;
  left: 50%;
  width: 1100px;
  height: 700px;
  transform: translateX(-58%);
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgb(249 115 22 / 0.22) 0%,
    rgb(249 115 22 / 0.06) 45%,
    transparent 72%
  );
  filter: blur(10px);
  pointer-events: none;
}
.hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgb(255 255 255 / 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.035) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(120% 80% at 50% 0%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(120% 80% at 50% 0%, #000 20%, transparent 75%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
}
.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
}
.hero__note {
  font-size: 0.82rem;
  color: #6b7280;
}

/* ---------- Phone ---------- */
.hero__device {
  position: relative;
  display: flex;
  justify-content: center;
}
.phone {
  position: relative;
  width: 320px;
  aspect-ratio: 320 / 660;
  border-radius: 52px;
  padding: 11px;
  background: linear-gradient(160deg, #35353f 0%, #101016 38%, #2b2b35 100%);
  box-shadow: 0 60px 120px -40px rgb(0 0 0 / 0.95), 0 0 0 1px rgb(255 255 255 / 0.07),
    inset 0 0 0 1px rgb(255 255 255 / 0.04);
  animation: float 7s ease-in-out infinite;
}
.phone__shadow {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  height: 60px;
  background: radial-gradient(50% 50% at 50% 50%, rgb(249 115 22 / 0.28), transparent 70%);
  filter: blur(14px);
}
.phone__screen {
  position: relative;
  height: 100%;
  border-radius: 42px;
  overflow: hidden;
  background: var(--ink);
}
.phone__map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}
.phone__status {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 26px 0;
  font-size: 0.72rem;
  font-weight: 600;
}
.phone__status-right {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
}
.phone__status-right i {
  display: block;
  width: 3px;
  background: #fff;
  border-radius: 2px;
}
.phone__status-right i:nth-child(1) {
  height: 5px;
}
.phone__status-right i:nth-child(2) {
  height: 8px;
}
.phone__status-right i:nth-child(3) {
  height: 11px;
}
.phone__search {
  position: relative;
  margin: 16px 16px 0;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgb(26 26 36 / 0.72);
  backdrop-filter: blur(12px);
  border: 1px solid rgb(255 255 255 / 0.08);
  color: var(--muted);
  font-size: 0.82rem;
}
.phone__search svg {
  width: 15px;
  height: 15px;
  flex: none;
}

.pin {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 3px rgb(249 115 22 / 0.22), 0 0 14px rgb(249 115 22 / 0.7);
  transform: translate(-50%, -50%);
}
.pin b {
  position: absolute;
  inset: -9px;
  border-radius: 50%;
  border: 2px solid currentColor;
  animation: pulse 2.6s ease-out infinite;
}
.pin--gold {
  width: 15px;
  height: 15px;
  color: var(--gold);
  background: var(--gold);
  box-shadow: 0 0 0 5px rgb(251 191 36 / 0.18), 0 0 26px rgb(251 191 36 / 0.8);
}
.pin--silver {
  width: 13px;
  height: 13px;
  color: var(--silver);
  background: var(--silver);
  box-shadow: 0 0 0 4px rgb(148 163 184 / 0.18), 0 0 18px rgb(148 163 184 / 0.6);
}

.peek {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px;
  border-radius: 20px;
  background: rgb(26 26 36 / 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid rgb(255 255 255 / 0.08);
}
.peek img {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  object-fit: cover;
  flex: none;
}
.peek__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.peek__body strong {
  font-family: var(--font-display);
  font-size: 0.9rem;
}
.peek__body span {
  font-size: 0.7rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.peek__rate {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  flex: none;
}
.peek__rate svg {
  width: 13px;
  height: 13px;
  fill: var(--gold);
  stroke: none;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
@keyframes pulse {
  0% {
    transform: scale(0.7);
    opacity: 0.9;
  }
  100% {
    transform: scale(2.1);
    opacity: 0;
  }
}

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0d0d14;
  overflow: hidden;
  padding: 18px 0;
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 26px;
  width: max-content;
  animation: slide 34s linear infinite;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: #6b7280;
  white-space: nowrap;
}
.marquee__track i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand);
  opacity: 0.75;
  flex: none;
}
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* =========================================================
   SECTIONS
   ========================================================= */
.section {
  padding: 104px 0;
}
.section--alt {
  background: linear-gradient(180deg, transparent, #0d0d14 30%, #0d0d14 70%, transparent);
}
.section__head {
  max-width: 620px;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section__sub {
  color: var(--muted);
  line-height: 1.7;
  text-wrap: pretty;
}

/* ---------- Feature grid ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 26px;
  border-radius: var(--r-xl);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform 0.22s ease, border-color 0.22s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: #3a3a4d;
}
.card--wide {
  grid-row: span 2;
  padding: 0;
  overflow: hidden;
  gap: 0;
}
.card--wide .card__body {
  padding: 24px 26px 28px;
}
.card__media {
  position: relative;
  flex: 1;
  min-height: 230px;
  overflow: hidden;
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}
.card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, var(--surface));
}
.card__pin {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 14px rgb(249 115 22 / 0.9);
}
.card__pin--gold {
  left: 32%;
  top: 30%;
  width: 14px;
  height: 14px;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgb(251 191 36 / 0.2), 0 0 22px rgb(251 191 36 / 0.85);
}
.card__pin--a {
  left: 62%;
  top: 24%;
}
.card__pin--b {
  left: 52%;
  top: 46%;
}
.card__icon {
  width: 46px;
  height: 46px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(249 115 22 / 0.12);
  border: 1px solid rgb(249 115 22 / 0.28);
  color: var(--brand);
}
.card__icon svg {
  width: 22px;
  height: 22px;
}
.card__body {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.card__body h3 {
  font-size: 1.16rem;
}
.card__body p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}
.card--brand {
  grid-column: span 3;
  padding: 30px 34px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(120deg, rgb(249 115 22 / 0.16), var(--surface) 62%);
  border-color: rgb(249 115 22 / 0.32);
}
.card__link {
  margin-top: 6px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--brand);
}
.card__plus {
  flex: none;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 300;
  color: #fff;
  background: var(--brand);
  box-shadow: 0 16px 40px -12px rgb(249 115 22 / 0.8);
}

/* ---------- Tiers ---------- */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.tier {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 30px 26px;
  border-radius: var(--r-xl);
  background: var(--surface-2);
  border: 1px solid var(--line);
}
.tier h3 {
  font-size: 1.3rem;
}
.tier p {
  color: var(--muted);
  font-size: 0.94rem;
}
.tier ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
  width: 100%;
  border-top: 1px solid rgb(255 255 255 / 0.07);
  padding-top: 16px;
}
.tier li {
  position: relative;
  padding-left: 20px;
  font-size: 0.9rem;
  color: #c9cad3;
}
.tier li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid var(--brand);
}
.tier__badge {
  display: inline-flex;
  padding: 5px 13px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  background: rgb(255 255 255 / 0.06);
  border: 1px solid var(--line);
  color: #cbd5e1;
}
.tier--gold {
  border-color: rgb(251 191 36 / 0.45);
  background: linear-gradient(165deg, rgb(251 191 36 / 0.1), var(--surface-2) 55%);
  box-shadow: 0 0 60px -20px rgb(251 191 36 / 0.35);
}
.tier--gold .tier__badge {
  background: rgb(251 191 36 / 0.16);
  border-color: rgb(251 191 36 / 0.5);
  color: var(--gold);
}
.tier--gold li::before {
  border-color: var(--gold);
}
.tier--silver {
  border-color: rgb(148 163 184 / 0.35);
}
.tier--silver .tier__badge {
  background: rgb(148 163 184 / 0.14);
  border-color: rgb(148 163 184 / 0.4);
  color: #cbd5e1;
}
.tier--silver li::before {
  border-color: var(--silver);
}

/* ---------- How it works ---------- */
.how {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.how__copy {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.steps li {
  display: flex;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgb(255 255 255 / 0.07);
}
.steps li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.steps__no {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brand);
  padding-top: 2px;
  flex: none;
}
.steps h3 {
  font-size: 1.08rem;
  margin-bottom: 5px;
}
.steps p {
  color: var(--muted);
  font-size: 0.94rem;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.gallery figure {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.gallery img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery figure:hover img {
  transform: scale(1.06);
}
.gallery figure:nth-child(2) {
  margin-top: 26px;
}
.gallery figure:nth-child(3) {
  margin-top: -26px;
}

/* ---------- Owners ---------- */
.owners {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding: 44px;
  border-radius: var(--r-xl);
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
}
.owners__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.owners__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}
.owners__art {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.owners__art img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.owners__art::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, var(--surface) 0%, transparent 55%);
}

/* ---------- Download ---------- */
.download {
  position: relative;
  padding: 110px 0 120px;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.download__glow {
  position: absolute;
  bottom: -320px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 620px;
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgb(249 115 22 / 0.26),
    rgb(249 115 22 / 0.05) 50%,
    transparent 73%
  );
  pointer-events: none;
}
.download__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
}
.download__logo {
  height: 42px;
  width: auto;
  margin-bottom: 6px;
}
.download .lede {
  max-width: 40ch;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  background: #0d0d14;
  padding: 56px 0 28px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.1fr;
  gap: 32px;
}
.footer__brand img {
  height: 26px;
  width: auto;
  margin-bottom: 14px;
}
.footer__brand p {
  color: var(--muted);
  font-size: 0.88rem;
  max-width: 26ch;
}
.footer__col,
.footer__stores {
  display: flex;
  flex-direction: column;
  gap: 11px;
  align-items: flex-start;
}
.footer h4 {
  font-size: 0.76rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 3px;
}
.footer__col a {
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 0.18s ease;
}
.footer__col a:hover {
  color: var(--brand);
}
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgb(255 255 255 / 0.06);
  font-size: 0.8rem;
  color: #6b7280;
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal--slow {
  transition-delay: 0.14s;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1000px) {
  .nav__links,
  .nav__cta {
    display: none;
  }
  .nav__toggle {
    display: flex;
  }
  .nav.is-open .nav__drawer {
    display: flex;
  }
  .nav.is-open {
    background: rgb(10 10 15 / 0.96);
    backdrop-filter: blur(16px);
  }

  .hero {
    padding: 122px 0 70px;
  }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .hero__copy {
    align-items: center;
    text-align: center;
  }
  .hero__copy .lede {
    max-width: 52ch;
  }

  .features,
  .tiers {
    grid-template-columns: 1fr 1fr;
  }
  .card--wide {
    grid-row: auto;
    grid-column: span 2;
  }
  .card--wide .card__media {
    min-height: 200px;
  }
  .tier--gold {
    grid-column: span 2;
  }

  .how,
  .owners {
    grid-template-columns: 1fr;
  }
  .owners {
    padding: 30px;
  }
  .owners__art {
    order: -1;
  }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer__brand {
    grid-column: span 2;
  }
}

@media (max-width: 620px) {
  .shell {
    padding: 0 18px;
  }
  .section {
    padding: 72px 0;
  }
  .features,
  .tiers {
    grid-template-columns: 1fr;
  }
  .card--wide,
  .card--brand,
  .tier--gold {
    grid-column: auto;
  }
  .card--brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .phone {
    width: 272px;
  }
  .gallery figure:nth-child(2),
  .gallery figure:nth-child(3) {
    margin-top: 0;
  }
  .stores {
    width: 100%;
  }
  .store {
    flex: 1 1 auto;
  }
  .footer__inner {
    grid-template-columns: 1fr;
  }
  .footer__brand {
    grid-column: auto;
  }
}

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