:root {
  --bg: #fff6df;
  --panel: #fff0c1;
  --panel-strong: #ffcb4c;
  --accent: #ff7a00;
  --accent-deep: #f35b04;
  --ink: #1d160f;
  --muted: #5e5244;
  --line: rgba(29, 22, 15, 0.1);
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(95, 48, 0, 0.18);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Outfit", sans-serif;
  color: var(--ink);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 166, 0, 0.18), transparent 30%),
    linear-gradient(180deg, #fffaf0 0%, var(--bg) 100%);
}

.shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px 28px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 26px;
  align-items: center;
  min-height: calc(100vh - 44px);
}

.hero-copy {
  padding: 10px 0 10px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.32rem;
  font-weight: 700;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.eyebrow {
  margin: 18px 0 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

h1,
h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 0.98;
}

h1 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 4.7vw, 4.7rem);
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.lead {
  max-width: 56ch;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin: 24px 0 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #ffb000 100%);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.button.disabled {
  pointer-events: none;
  opacity: 0.55;
}

.version-badge {
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255, 122, 0, 0.1);
  color: var(--accent-deep);
  font-weight: 700;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 660px;
}

.meta-grid div {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
}

.meta-grid dt {
  margin-bottom: 6px;
  font-size: 0.84rem;
  color: var(--muted);
}

.meta-grid dd {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 44px 22px 44px 110px;
  border-radius: 72px;
  background: linear-gradient(160deg, #ffb400 0%, #ff6b00 100%);
  box-shadow: var(--shadow);
}

.visual-frame {
  position: relative;
  z-index: 1;
  width: min(510px, 92%);
  transform: translateX(18px);
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 50px rgba(29, 22, 15, 0.24));
}

.screen-version {
  margin-top: 24px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 700;
}

.floating-card {
  position: absolute;
  right: 10px;
  bottom: 24px;
  z-index: 2;
  max-width: 220px;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 248, 229, 0.88);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.floating-card strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.08rem;
}

.floating-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--muted);
}

@media (max-width: 1024px) {
  body {
    overflow-y: auto;
  }

  .shell {
    padding: 24px 22px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    padding-right: 0;
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-visual::before {
    inset: 20px;
  }

  .visual-frame {
    width: min(460px, 92%);
    transform: none;
  }
}

@media (max-width: 720px) {
  .shell {
    padding: 20px;
  }

  .meta-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 360px;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .floating-card {
    right: 10px;
    bottom: 8px;
    max-width: 190px;
    padding: 14px;
  }

  h1 {
    max-width: 13ch;
    font-size: clamp(2.6rem, 11vw, 3.8rem);
  }
}
