:root {
  --bg: #f4efe7;
  --ink: #111111;
  --muted: #5b544b;
  --panel: rgba(255, 252, 247, 0.88);
  --line: rgba(17, 17, 17, 0.08);
  --gold: #c8902f;
  --green: #1f8f3a;
  --blue: #103a63;
  --shadow: 0 30px 80px rgba(18, 24, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Avenir Next", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(200, 144, 47, 0.22), transparent 28%),
    radial-gradient(circle at right 20%, rgba(16, 58, 99, 0.18), transparent 24%),
    linear-gradient(180deg, #fffaf4 0%, var(--bg) 100%);
}

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

.shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 36px;
}

.shell--centered {
  display: flex;
  align-items: center;
  min-height: 100vh;
}

.hero-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-card--compact {
  grid-template-columns: 1fr;
}

.hero-card--narrow {
  max-width: 720px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: #111;
  color: #fff8ef;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin-bottom: 20px;
}

.brand-logo {
  display: block;
  width: 156px;
  max-width: 52%;
  margin: 0 0 18px;
}

.brand-logo--center {
  margin-left: auto;
  margin-right: auto;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.lead {
  max-width: 620px;
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
}

.hero-copy--center {
  text-align: center;
}

.status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 0;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 700;
}

.status-pill--accent {
  background: rgba(31, 143, 58, 0.12);
  color: #16652b;
}

.cta-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.cta-grid--center {
  justify-content: center;
}

.store-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 18px;
  background: #ffffff;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.store-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.store-link img {
  display: block;
  height: 54px;
  width: auto;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
}

.quick-links--center {
  justify-content: center;
}

.quick-links a {
  padding-bottom: 2px;
  border-bottom: 2px solid rgba(16, 58, 99, 0.16);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.device-frame {
  position: relative;
  width: min(380px, 100%);
  padding: 14px;
  border-radius: 38px;
  background: linear-gradient(160deg, #171717, #383838);
  box-shadow: 0 36px 70px rgba(0, 0, 0, 0.22);
}

.device-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  width: 34%;
  height: 22px;
  transform: translateX(-50%);
  border-radius: 0 0 16px 16px;
  background: #050505;
  z-index: 3;
}

.device-screen {
  position: relative;
  overflow: hidden;
  min-height: 670px;
  padding: 44px 20px 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(200, 144, 47, 0.33), transparent 28%),
    linear-gradient(180deg, #112b44 0%, #173f34 100%);
}

.device-topline {
  width: 64px;
  height: 6px;
  margin: 0 auto 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.app-icon {
  display: block;
  width: 92px;
  height: 92px;
  margin: 0 auto 24px;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.screen-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 14px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(8px);
}

.screen-card strong {
  font-size: 18px;
  font-weight: 800;
}

.screen-card span {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.screen-card--primary {
  background: linear-gradient(135deg, rgba(200, 144, 47, 0.86), rgba(222, 182, 95, 0.72));
  color: #1d1300;
}

.screen-card--primary span {
  color: rgba(29, 19, 0, 0.82);
}

.screen-card--accent {
  background: linear-gradient(135deg, rgba(31, 143, 58, 0.88), rgba(21, 101, 43, 0.78));
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.info-strip article {
  padding: 20px 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.info-strip h2 {
  margin: 0 0 8px;
  font-size: 17px;
}

.info-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 940px) {
  .hero-card {
    grid-template-columns: 1fr;
  }

  .device-screen {
    min-height: 560px;
  }

  .info-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 20px, 1160px);
    padding-top: 10px;
  }

  .hero-card {
    padding: 18px;
    border-radius: 26px;
  }

  .hero-copy h1 {
    font-size: 40px;
  }

  .lead {
    font-size: 16px;
  }

  .store-link {
    width: 100%;
  }

  .store-link img {
    height: 50px;
  }

  .device-frame {
    width: 100%;
  }

  .device-screen {
    min-height: 500px;
    padding-left: 16px;
    padding-right: 16px;
  }
}