@import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@400;600;700&family=Source+Sans+3:wght@300;400;600&display=swap');

:root {
  color-scheme: dark;
  --bg: #0e0b14;
  --bg-2: #1a1224;
  --ink: #f6f2ff;
  --ink-soft: #c6bddb;
  --accent: #f4b36c;
  --accent-2: #d6a86f;
  --card: rgba(28, 22, 40, 0.8);
  --stroke: rgba(255, 255, 255, 0.08);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 20%, rgba(88, 52, 140, 0.35), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(255, 190, 128, 0.18), transparent 60%),
    linear-gradient(160deg, var(--bg), var(--bg-2));
  min-height: 100vh;
}

h1,
h2,
h3 {
  font-family: 'Fraunces', 'Georgia', serif;
  margin: 0 0 12px;
}

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

.page {
  position: relative;
  overflow-x: hidden;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(0);
  z-index: 0;
}

.bg-orb--one {
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(118, 70, 190, 0.35), transparent 70%);
  top: -160px;
  right: -140px;
}

.bg-orb--two {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(244, 179, 108, 0.2), transparent 70%);
  bottom: 80px;
  left: -160px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 7vw;
  background: rgba(12, 9, 18, 0.8);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--stroke);
}

.nav__brand {
  font-family: 'Fraunces', 'Georgia', serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav__links {
  display: flex;
  gap: 20px;
  font-size: 15px;
  color: var(--ink-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--primary {
  background: linear-gradient(120deg, #f4b36c, #f8d28a);
  color: #1b120c;
  box-shadow: var(--shadow);
}

.btn--primary:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  padding: 90px 7vw 60px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--accent-2);
  margin: 0 0 12px;
}

.lead {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 20px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.chip {
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
}

.muted {
  color: var(--ink-soft);
  font-size: 13px;
}

.device {
  background: #0e0b14;
  border-radius: 36px;
  padding: 14px;
  width: min(420px, 100%);
  margin: 0 auto;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.device__screen {
  background: linear-gradient(160deg, #1a1326, #130f1d);
  border-radius: 28px;
  padding: 24px;
  display: grid;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.screen__card {
  background: rgba(32, 24, 44, 0.9);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--stroke);
}

.screen__card--accent {
  background: rgba(61, 39, 81, 0.85);
}

.screen__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-2);
  margin: 0 0 6px;
}

.screen__tag {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(244, 179, 108, 0.18);
}

.section {
  padding: 70px 7vw 40px;
  position: relative;
  z-index: 1;
}

.section__header {
  display: grid;
  gap: 6px;
  margin-bottom: 26px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.card {
  padding: 22px;
  background: rgba(26, 20, 36, 0.8);
  border-radius: 20px;
  border: 1px solid var(--stroke);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.screens {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.screen-shot {
  background: rgba(26, 20, 36, 0.8);
  border-radius: 20px;
  border: 1px solid var(--stroke);
  padding: 18px;
}

.screen-shot__label {
  font-size: 13px;
  margin-bottom: 10px;
  color: var(--accent-2);
}

.screen-shot__image {
  height: 220px;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(115, 70, 188, 0.4), rgba(244, 179, 108, 0.2));
  border: 1px dashed rgba(244, 179, 108, 0.35);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.cta {
  margin: 60px 7vw 90px;
  padding: 40px;
  background: linear-gradient(130deg, #1a1224, #27183b);
  color: #fff2e7;
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer {
  padding: 40px 7vw 60px;
  display: grid;
  gap: 10px;
  color: var(--ink-soft);
}

.footer__links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.simple-header {
  padding: 24px 7vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--stroke);
  background: rgba(12, 9, 18, 0.85);
  backdrop-filter: blur(10px);
}

.simple-header__brand {
  font-family: 'Fraunces', 'Georgia', serif;
  font-weight: 700;
}

.legal {
  padding: 60px 7vw 80px;
  max-width: 860px;
}

.legal h2 {
  margin-top: 26px;
}

.legal ul {
  padding-left: 18px;
}

@media (max-width: 860px) {
  .nav {
    flex-wrap: wrap;
    gap: 12px;
  }

  .nav__links {
    flex-wrap: wrap;
  }

  .cta {
    align-items: flex-start;
  }
}
