/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #FDFDF5;
  --yellow: #FEEB79;
  --navy: #282D3E;
  --coral: #FF7F50;
  --navy-light: #3a4057;
  --yellow-soft: #fef4b8;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--bg);
  color: var(--navy);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--navy);
  text-decoration: none;
}

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

/* ===== Layout ===== */
.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

main {
  flex: 1;
}

/* ===== Header / Nav ===== */
.site-header {
  padding: 1.25rem 0;
}

.site-header .container {
  display: flex;
  align-items: center;
}

.site-header .logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.back-link {
  font-size: 0.95rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: opacity 0.2s;
}

.back-link:hover {
  opacity: 0.7;
}

/* ===== Hero ===== */
.hero {
  text-align: center;
  padding: 6rem 0 3rem;
}


.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.hero .tagline {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--navy-light);
  margin-bottom: 4rem;
}

/* ===== App Store Badge ===== */
.app-store-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.app-store-badge {
  display: inline-block;
  cursor: default;
  transition: opacity 0.2s;
}

.app-store-badge svg {
  height: 54px;
  width: 300px;
}

.coming-soon {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--coral);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ===== Link Cards ===== */
.link-cards {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  padding: 4rem 0 3rem;
}

.link-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc((100% - 0.75rem) / 4);
  padding: 0.95rem 0.75rem;
  border-radius: 10px;
  background: var(--navy);
  color: var(--bg);
  border: 1.5px solid #ebebdf;
  box-shadow: 0 2px 8px rgba(40, 45, 62, 0.08);
  font-weight: 600;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.link-card:hover {
  box-shadow: 0 4px 16px rgba(40, 45, 62, 0.06);
  transform: translateY(-2px);
}

/* ===== Content Pages (Privacy, Support) ===== */
.page-content {
  padding: 2rem 0 4rem;
}

.page-content h1 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.page-content .subtitle {
  color: var(--navy-light);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.page-content h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.page-content p,
.page-content ul {
  margin-bottom: 1rem;
  color: var(--navy-light);
}

.page-content ul {
  padding-left: 1.5rem;
}

.page-content li {
  margin-bottom: 0.35rem;
}

.page-content a {
  color: var(--navy);
  font-weight: 600;
  border-bottom: 2px solid var(--yellow);
  transition: border-color 0.2s;
}

.page-content a:hover {
  border-color: var(--coral);
}

/* ===== FAQ ===== */
.faq-item {
  background: #fff;
  border: 1.5px solid #ebebdf;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 0.75rem;
}

.faq-item h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.faq-item p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ===== Contact Box ===== */
.contact-box {
  background: var(--navy);
  color: var(--bg);
  border-radius: 14px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2.5rem;
}

.contact-box h2 {
  color: var(--bg);
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.contact-box p {
  color: rgba(253, 253, 245, 0.75);
  margin-bottom: 1rem;
}

.contact-box a {
  color: var(--yellow);
  font-weight: 700;
  font-size: 1.1rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}

.contact-box a:hover {
  border-color: var(--yellow);
}

/* ===== Footer ===== */
.site-footer {
  padding: 2rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--navy-light);
  border-top: 1px solid #ebebdf;
}

/* ===== Responsive ===== */
@media (max-width: 600px) {
  .hero {
    padding: 4rem 0 2rem;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero .tagline {
    font-size: 1.1rem;
  }

  .link-cards {
    flex-direction: column;
    align-items: center;
  }

  .link-card {
    width: 60%;
  }

  .page-content h1 {
    font-size: 1.6rem;
  }

  .contact-box {
    padding: 1.5rem;
  }
}
