/* index.html only — every locale shares this file. */

body { line-height: 1.5; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--clay);
  background: rgba(184,105,63,0.08);
  border: 1px solid rgba(184,105,63,0.35);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
}

/* ---------- Hero ---------- */

.hero {
  padding: 88px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(closest-side, rgba(184,105,63,0.10), transparent 70%);
  pointer-events: none;
}

h1.headline {
  font-weight: 500;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.12;
  margin: 0 0 22px;
  letter-spacing: -0.01em;
}

h1.headline em {
  color: var(--clay);
  font-style: normal;
}

.sub {
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 40px;
}

.cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.cta-note {
  font-size: 13px;
  color: var(--ink-soft);
  opacity: 0.8;
}

/* ---------- Screenshot mockups ---------- */
/* Images already include a realistic device frame, shadow, and
   transparent background — no extra styling needed around them. */

.mockup-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}

.mockup-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 320px;
}

.mockup-col img {
  display: block;
  width: 100%;
  height: auto;
}

.mockup-caption {
  text-align: center;
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 8px;
}

.standby-row {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.standby-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.standby-frame {
  position: relative;
  width: 520px;
  height: 358px;
}

.standby-frame img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 358px;
  height: 520px;
  transform: translate(-50%, -50%) rotate(-90deg);
}

/* ---------- Sections ---------- */

section {
  padding: 96px 0;
  scroll-margin-top: 84px;
}

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}

.section-head .eyebrow {
  margin-bottom: 18px;
}

h2.section-title {
  font-weight: 500;
  font-size: clamp(28px, 4vw, 38px);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}

.section-head p {
  color: var(--ink-soft);
  font-size: 17px;
  margin: 0;
}

/* ---------- Feature grid ---------- */

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

.feature-card {
  background: var(--paper-raised);
  border: 1px solid var(--hairline);
  border-radius: 24px;
  padding: 32px 28px;
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px;
}

.feature-card p {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0;
}

/* ---------- How it works ---------- */

.how {
  background: var(--paper-raised);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  margin: 0 auto 18px;
}

.step h3 {
  font-size: 17px;
  margin: 0 0 8px;
}

.step p {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0;
  max-width: 260px;
  margin: 0 auto;
}

/* ---------- Footer CTA ---------- */

.final-cta {
  text-align: center;
  padding-bottom: 120px;
}

.final-cta h2 {
  font-weight: 500;
  font-size: clamp(28px, 4.5vw, 42px);
  margin: 0 0 18px;
}

.final-cta p {
  color: var(--ink-soft);
  font-size: 17px;
  max-width: 480px;
  margin: 0 auto 36px;
}

/* ---------- Responsive ---------- */

@media (max-width: 760px) {
  .features { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 44px; }
  .mockup-col { width: 220px; }
  .standby-frame { width: 340px; height: 234px; }
  .standby-frame img { width: 234px; height: 340px; }
}
