/* SquidStudios — per-app landing page styles
   Used by: /yacht-zee/, /card-club/, /word-blitz/, /golf-caddy/, /family-nest/
*/

.app-hero {
  position: relative;
  padding: 32px 0 48px;
}

.app-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 36px;
  align-items: center;
}

.app-hero-copy .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 14px;
  color: var(--teal-dark);
  font-size: 14px; font-weight: 800; text-transform: uppercase;
}
.app-hero-copy .eyebrow::before {
  content: ""; width: 30px; height: 4px; border-radius: 999px; background: var(--aqua);
}

.app-hero h1 {
  color: var(--navy);
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 800; line-height: 0.92; text-transform: uppercase;
}

.app-hero .lede {
  margin-top: 16px;
  color: var(--navy-soft);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.45;
  max-width: 560px;
}

.app-hero-meta {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px;
}

.tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px;
  background: var(--sky); color: var(--teal-dark);
  font-size: 13px; font-weight: 800; letter-spacing: 0.02em; text-transform: uppercase;
}

.app-hero-art {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  min-height: 360px;
}

.app-hero-art img {
  width: min(100%, 540px);
  height: auto;
  border-radius: 24px;
  box-shadow: var(--shadow-strong);
}

/* ---------- Section: features grid ---------- */
.features {
  padding: 56px 0;
}

.features h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 800; text-transform: uppercase;
  color: var(--navy);
  text-align: center;
  margin-bottom: 24px;
}

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

.feature-tile {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.feature-tile .icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--sky); color: var(--teal-dark);
  margin-bottom: 12px;
}

.feature-tile .icon svg { width: 24px; height: 24px; }

.feature-tile h3 {
  color: var(--navy);
  font-size: 18px; font-weight: 800; text-transform: uppercase;
  line-height: 1;
}

.feature-tile p {
  margin-top: 8px;
  color: var(--navy-soft);
  font-size: 15px; line-height: 1.45;
}

/* ---------- FAQ ---------- */
.faq {
  padding: 40px 0 60px;
}

.faq h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 800; text-transform: uppercase;
  color: var(--navy);
  text-align: center;
  margin-bottom: 22px;
}

.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 10px;
  box-shadow: 0 6px 14px rgba(5, 55, 93, 0.06);
}

.faq details[open] { box-shadow: var(--shadow); }

.faq summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 17px;
  color: var(--navy);
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  font-size: 26px; line-height: 1;
  color: var(--teal-dark);
  margin-left: 16px;
}

.faq details[open] summary::after { content: "\2013"; }

.faq details p {
  margin-top: 12px;
  color: var(--navy-soft);
  font-size: 16px; line-height: 1.55;
}

/* ---------- CTA band ---------- */
.cta-band {
  padding: 48px 0;
  text-align: center;
  background:
    radial-gradient(120px 80px at 18% 30%, rgba(83, 214, 232, 0.34), transparent 68%),
    radial-gradient(150px 90px at 78% 18%, rgba(83, 214, 232, 0.22), transparent 70%),
    linear-gradient(180deg, #058da6, #044f78 52%, #063457);
  color: var(--white);
}

.cta-band h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800; text-transform: uppercase;
}

.cta-band p {
  margin: 12px auto 22px;
  max-width: 560px;
  font-size: 18px; line-height: 1.4;
  color: rgba(255, 255, 255, 0.86);
}

.cta-band .store-row { justify-content: center; }

/* ---------- Notify form (Family Nest, etc.) ---------- */
.notify-card {
  margin: 26px auto;
  max-width: 520px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  text-align: center;
}

.notify-card h3 {
  color: var(--navy);
  font-size: 22px; font-weight: 800; text-transform: uppercase;
}

.notify-card p {
  margin-top: 8px; color: var(--navy-soft); font-size: 15px;
}

.notify-card form { margin-top: 14px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .app-hero-grid { grid-template-columns: 1fr; text-align: center; }
  .app-hero-copy .eyebrow { margin-left: auto; margin-right: auto; }
  .app-hero .lede { margin-left: auto; margin-right: auto; }
  .app-hero-meta { justify-content: center; }
  .app-hero-art img { width: min(360px, 88vw); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

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