/* ===== Taco Tally – Website styles ===== */
:root {
  --taco-yellow: #ffda3d;
  --taco-gold: #f5b700;
  --taco-purple: #92278f;
  --taco-purple-dark: #6b1d69;
  --taco-green: #6cbe55;
  --taco-mint: #a8e6a1;
  --white: #ffffff;
  --off-white: #fefcf8;
  --gray-100: #f5f3f0;
  --gray-200: #e8e6e2;
  --gray-500: #6b6560;
  --gray-600: #504b47;
  --gray-700: #3d3935;
  --gray-900: #1c1a18;
  --font-display: "Fredoka", sans-serif;
  --font-body: "Outfit", sans-serif;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-full: 9999px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
}

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

/* Content images: rounded corners site-wide */
main img,
.page-hero img,
.section img {
  border-radius: var(--radius-md);
}

/* Centered, fluid content image wrapper (invite, android, partners, advertise) */
.content-img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 1.5rem;
}

.content-img-wrap img {
  max-width: min(100%, 380px);
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

/* Header logo image */
.logo-img {
  height: 36px;
  width: auto;
  display: block;
  border-radius: var(--radius-sm);
}

.logo--minimal .logo-img {
  height: 32px;
}

/* Footer brand logo image */
.footer-brand img {
  height: 32px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  border-radius: var(--radius-sm);
}

.site-footer--minimal .footer-brand img {
  height: 28px;
}

a {
  color: var(--taco-purple);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--taco-purple-dark);
}

/* ===== Deeplink banner ===== */
.deeplink-banner {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(135deg, var(--taco-purple), var(--taco-purple-dark));
  color: var(--white);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
}

.deeplink-banner[hidden] {
  display: none !important;
}

.deeplink-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.deeplink-message {
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
}

.deeplink-cta {
  display: inline-block;
  padding: 8px 20px;
  background: var(--taco-yellow);
  color: var(--gray-900);
  font-weight: 700;
  border-radius: var(--radius-full);
  white-space: nowrap;
  transition: transform var(--transition), box-shadow var(--transition);
}

.deeplink-cta:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
  color: var(--gray-900);
}

.deeplink-open-app {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.deeplink-open-app:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.deeplink-dismiss {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  opacity: 0.9;
}

.deeplink-dismiss:hover {
  opacity: 1;
}

@media (min-width: 768px) {
  .deeplink-banner-inner {
    position: relative;
  }
  .deeplink-dismiss {
    position: static;
    transform: none;
    margin-left: auto;
  }
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(254, 252, 248, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
}

.logo:hover {
  color: var(--taco-purple);
}

.logo-emoji {
  font-size: 1.75rem;
  line-height: 1;
}

.nav {
  display: none;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-weight: 500;
  color: var(--gray-700);
}

.nav a:hover {
  color: var(--taco-purple);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }
  .nav-toggle {
    display: none;
  }
}

.nav.nav-mobile {
  flex-basis: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 16px 0 0;
  margin-top: 8px;
  border-top: 1px solid var(--gray-200);
}

.nav.nav-mobile a {
  padding: 12px 0;
  font-weight: 500;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-200);
}

.nav.nav-mobile a:last-child {
  border-bottom: none;
}

/* ===== Container ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px 64px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--taco-yellow) 0%, var(--taco-gold) 35%, var(--taco-purple) 100%);
  z-index: 0;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L30 60M0 30L60 30' stroke='rgba(255,255,255,0.08)' stroke-width='1'/%3E%3C/svg%3E");
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
}

.hero-title {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.hero-title-line {
  display: block;
}

.hero-subtitle {
  margin: 0 0 12px;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.5;
}

.hero-tagline {
  margin: 0 0 24px;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.02em;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-primary {
  background: var(--white);
  color: var(--taco-purple);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.btn-outline {
  border: 2px solid var(--taco-purple);
  color: var(--taco-purple);
  background: transparent;
}

.btn-outline:hover {
  background: var(--taco-purple);
  color: var(--white);
}

.hero-note {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero-visual {
  position: relative;
  z-index: 1;
  margin-top: 40px;
}

.hero-phone-mock {
  width: 220px;
  height: 440px;
  background: var(--gray-900);
  border-radius: 32px;
  padding: 12px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

.hero-phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--taco-purple) 0%, var(--taco-purple-dark) 100%);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.mock-count {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--taco-yellow);
  line-height: 1;
}

.mock-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.mock-emoji {
  font-size: 2.5rem;
  margin-top: 8px;
}

@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    min-height: 85vh;
    padding: 64px 48px 80px;
  }
  .hero-content {
    text-align: left;
    flex: 1;
  }
  .hero-title-line {
    display: inline;
  }
  .hero-title-line::after {
    content: " ";
  }
  .hero-cta {
    flex-direction: row;
    align-items: flex-start;
  }
  .hero-visual {
    margin-top: 0;
    flex: 0 0 280px;
  }
  .hero-phone-mock {
    width: 260px;
    height: 520px;
  }
  .mock-count {
    font-size: 5rem;
  }
}

/* ===== Sections ===== */
.section {
  padding: 64px 0;
}

.section-title {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--gray-900);
  text-align: center;
}

.section-intro {
  margin: 0 0 12px;
  font-size: 1.125rem;
  color: var(--gray-700);
  text-align: center;
  line-height: 1.5;
}

.section-body {
  margin: 0 auto 24px;
  max-width: 640px;
  font-size: 1rem;
  color: var(--gray-600);
  text-align: center;
  line-height: 1.6;
}

.section-cta {
  margin: 0;
  text-align: center;
}

/* ===== Invite page ===== */
.invite-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
}
.invite-content {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}
.invite-intro {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin: 0 0 32px;
  line-height: 1.6;
}
.invite-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

/* Invite prequel: referrer + group cards from Firestore */
.invite-prequel {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 24px;
}

.invite-prequel__block {
  min-width: 0;
}

.invite-prequel__block[hidden] {
  display: none !important;
}

.invite-prequel__card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  text-align: left;
  max-width: 320px;
}

.invite-prequel__card--referrer .invite-prequel__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.invite-prequel__avatar--placeholder {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-500);
  flex-shrink: 0;
}

.invite-prequel__card-body {
  min-width: 0;
}

.invite-prequel__label {
  margin: 0 0 4px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-500);
}

.invite-prequel__name {
  margin: 0 0 2px;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
}

.invite-prequel__display-name {
  margin: 0 0 4px;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.invite-prequel__stat {
  margin: 0;
  font-size: 0.875rem;
  color: var(--gray-500);
}

.invite-prequel__group-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* ===== Tacos = Life (home) ===== */
.tacos-life {
  background: var(--white);
}

/* ===== What You Can Do (home) ===== */
.what-you-can-do {
  background: var(--gray-100);
}

/* ===== How it works ===== */
.how-it-works {
  background: var(--white);
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 32px;
  counter-reset: step;
}

.step {
  position: relative;
  padding-left: 72px;
  counter-increment: step;
}

.step-num {
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--taco-yellow), var(--taco-gold));
  color: var(--gray-900);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.step h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
}

.step p {
  margin: 0;
  color: var(--gray-500);
  font-size: 1rem;
}

@media (min-width: 640px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .step {
    padding-left: 0;
    padding-top: 64px;
    text-align: center;
  }
  .step-num {
    left: 50%;
    top: 0;
    transform: translateX(-50%);
  }
}

/* ===== Features ===== */
.features {
  background: var(--gray-100);
}

.feature-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

.feature-card {
  background: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.feature-icon {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 16px;
  line-height: 1;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gray-900);
}

.feature-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.5;
}

@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .feature-grid-home {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== Download ===== */
.download {
  background: linear-gradient(180deg, var(--taco-purple) 0%, var(--taco-purple-dark) 100%);
  color: var(--white);
}

.download .section-title {
  color: var(--white);
}

.download-intro {
  text-align: center;
  margin: 0 0 32px;
  font-size: 1.125rem;
  opacity: 0.95;
}

.download-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.store-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 14px 28px;
  background: var(--gray-900);
  color: var(--white);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 600;
  transition: transform var(--transition), background var(--transition);
}

.store-btn:hover:not([aria-disabled="true"]) {
  transform: scale(1.03);
  background: var(--gray-700);
  color: var(--white);
}

.store-btn[aria-disabled="true"] {
  opacity: 0.7;
  cursor: not-allowed;
}

.store-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.store-name {
  font-size: 1.25rem;
}

.store-coming {
  font-size: 0.75rem;
  opacity: 0.8;
  margin-top: 4px;
}

@media (min-width: 480px) {
  .download-buttons {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ===== Partners & Advertise preview ===== */
.partners-preview,
.advertise-preview {
  background: var(--white);
}

.partners-preview-text,
.advertise-preview-text {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 24px;
  color: var(--gray-500);
  font-size: 1.05rem;
}

.partners-preview .btn,
.advertise-preview .btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--gray-900);
  color: var(--gray-200);
  padding: 48px 24px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 28px;
  margin-bottom: 24px;
}

.footer-nav a {
  color: var(--gray-200);
}

.footer-nav a:hover {
  color: var(--taco-yellow);
}

.footer-copy {
  margin: 0;
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* ===== Page: Partners ===== */
.page-hero {
  padding: 56px 24px 48px;
  background: linear-gradient(145deg, var(--taco-green) 0%, var(--taco-mint) 100%);
  text-align: center;
}

.page-hero h1 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--gray-900);
}

.page-hero p {
  margin: 0;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
  color: var(--gray-700);
}

.page-content {
  padding: 48px 0 64px;
}

.page-content .container {
  max-width: 720px;
}

.page-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 32px 0 12px;
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content p {
  margin: 0 0 16px;
  color: var(--gray-600);
  line-height: 1.65;
}

.page-content ul {
  margin: 0 0 16px;
  padding-left: 24px;
  color: var(--gray-600);
}

.page-content a {
  font-weight: 600;
}

/* ===== Page: Advertise ===== */
.page-hero.advertise-hero {
  background: linear-gradient(145deg, var(--taco-purple) 0%, var(--taco-purple-dark) 100%);
}

.page-hero.advertise-hero h1,
.page-hero.advertise-hero p {
  color: var(--white);
}

.page-hero.advertise-hero p {
  opacity: 0.95;
}

.page-hero.android-hero {
  background: linear-gradient(145deg, var(--taco-green) 0%, var(--taco-mint) 100%);
}

.page-hero.android-hero h1,
.page-hero.android-hero p {
  color: var(--gray-900);
}

/* ===== Utility ===== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== Minimal layout (app showcase) ===== */
body.minimal {
  background: var(--white);
  color: var(--gray-900);
}

.site-header--minimal {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.site-header--minimal .nav a {
  color: var(--gray-600);
  font-size: 0.9375rem;
}

.site-header--minimal .nav a:hover {
  color: var(--gray-900);
}

.logo--minimal {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--gray-900);
}

.logo--minimal:hover {
  color: var(--gray-900);
  opacity: 0.8;
}

.hero-minimal {
  padding: 80px 24px 100px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 48px;
  align-items: center;
  text-align: center;
}

.hero-minimal__content {
  order: 1;
}

.hero-minimal__title {
  margin: 0 0 16px;
  font-family: var(--font-body);
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--gray-900);
}

.hero-minimal__subtitle {
  margin: 0 0 32px;
  font-size: 1.125rem;
  color: var(--gray-500);
  font-weight: 500;
}

.hero-minimal__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.hero-minimal__visual {
  order: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-minimal__img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
  background: var(--gray-100);
  min-height: 400px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .hero-minimal {
    grid-template-columns: 1fr 1fr;
    padding: 100px 48px 120px;
    text-align: left;
    gap: 64px;
  }
  .hero-minimal__content {
    order: 0;
  }
  .hero-minimal__visual {
    order: 1;
  }
  .hero-minimal__cta {
    justify-content: flex-start;
  }
  .hero-minimal__img {
    max-width: 320px;
    min-height: 520px;
  }
}

.showcase {
  padding: 64px 0 80px;
  background: var(--gray-100);
}

.showcase__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.showcase__item {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.showcase__item img {
  width: 100%;
  height: auto;
  display: block;
  background: var(--gray-100);
  min-height: 480px;
  object-fit: cover;
}

@media (min-width: 640px) {
  .showcase__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .showcase__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .showcase__item img {
    min-height: 520px;
  }
}

.download-minimal {
  padding: 80px 24px;
  text-align: center;
}

.download-minimal__title {
  margin: 0 0 24px;
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
}

.download-minimal__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 16px;
}

.download-minimal__note {
  margin: 0;
  font-size: 0.875rem;
  color: var(--gray-500);
}

.about-app {
  padding: 48px 24px 56px;
  background: var(--gray-100);
}

.about-app__content {
  max-width: 640px;
  margin: 0 auto;
}

.about-app__content p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--gray-600);
}

.faq-section {
  padding: 56px 24px 64px;
  background: var(--white);
}

.faq-section .container {
  max-width: 640px;
  margin: 0 auto;
}

.faq-section h2 {
  margin: 0 0 24px;
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gray-900);
}

.faq-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.faq-list dt {
  margin: 20px 0 6px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--gray-900);
}

.faq-list dt:first-child {
  margin-top: 0;
}

.faq-list dd {
  margin: 0 0 0 0;
  padding: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--gray-600);
}

/* Minimal buttons */
body.minimal .btn--primary {
  background: var(--gray-900);
  color: var(--white);
}

body.minimal .btn--primary:hover {
  background: var(--gray-700);
  color: var(--white);
}

body.minimal .btn--secondary {
  border: 1px solid var(--gray-300);
  color: var(--gray-700);
  background: transparent;
}

body.minimal .btn--secondary:hover {
  background: var(--gray-100);
  color: var(--gray-900);
}

.site-footer--minimal {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 32px 24px;
}

.site-footer--minimal .footer-brand {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.site-footer--minimal .footer-nav a {
  color: var(--gray-500);
  font-size: 0.875rem;
}

.site-footer--minimal .footer-nav a:hover {
  color: var(--gray-900);
}

.site-footer--minimal .footer-copy {
  margin: 16px 0 0;
  font-size: 0.8125rem;
  color: var(--gray-500);
}
