:root {
  --bg: hsl(35 25% 96%);
  --bg-soft: hsl(36 30% 93%);
  --surface: hsla(0 0% 100% / 0.72);
  --surface-strong: hsla(0 0% 100% / 0.84);
  --line: hsla(205 20% 24% / 0.12);
  --text: hsl(210 22% 15%);
  --text-muted: hsl(210 12% 38%);
  --accent: hsl(195 38% 31%);
  --accent-soft: hsl(195 45% 90%);
  --accent-alt: hsl(140 25% 38%);
  --shadow: 0 24px 60px hsla(210 30% 20% / 0.08);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, hsla(193 52% 74% / 0.28), transparent 30%),
    radial-gradient(circle at top right, hsla(37 64% 77% / 0.32), transparent 34%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

body::before {
  top: -80px;
  right: -120px;
  background: hsla(197 44% 58% / 0.18);
}

body::after {
  bottom: -120px;
  left: -80px;
  background: hsla(44 60% 56% / 0.12);
}

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

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 24px 0 40px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: hsla(0 0% 100% / 0.48);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid hsla(195 40% 26% / 0.16);
  border-radius: 14px;
  background: linear-gradient(135deg, hsla(195 36% 88% / 1), hsla(42 50% 92% / 1));
  color: var(--accent);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
}

.brand-name,
.site-nav a,
.button,
.status-pill,
.app-tag {
  font-size: 0.95rem;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  color: var(--text-muted);
}

.site-nav a {
  transition: color 180ms cubic-bezier(0.4, 0, 0.2, 1);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

main {
  display: grid;
  gap: 32px;
  padding-top: 32px;
}

main > * {
  animation: rise-in 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

main > *:nth-child(2) {
  animation-delay: 90ms;
}

main > *:nth-child(3) {
  animation-delay: 180ms;
}

.hero,
.beta-section,
.contact-section,
.apps-section,
.about-section {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 32px;
  padding: 56px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, hsla(195 45% 80% / 0.4), transparent 68%);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

h1,
h2 {
  letter-spacing: -0.04em;
}

h1 {
  max-width: 11ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.96;
}

h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  line-height: 1;
}

h3 {
  font-size: 1.6rem;
  letter-spacing: -0.03em;
}

.hero-copy {
  display: grid;
  gap: 24px;
  align-content: start;
}

.hero-text,
.section-copy,
.app-card p,
.tile-copy {
  color: var(--text-muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 56ch;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 8px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 600;
  transition:
    transform 180ms cubic-bezier(0.4, 0, 0.2, 1),
    background-color 180ms cubic-bezier(0.4, 0, 0.2, 1),
    border-color 180ms cubic-bezier(0.4, 0, 0.2, 1);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: hsl(40 30% 97%);
}

.button-secondary {
  border: 1px solid var(--line);
  background: hsla(0 0% 100% / 0.56);
}

.hero-panel {
  position: relative;
  display: grid;
  gap: 20px;
  align-content: start;
  padding: 24px;
  border: 1px solid hsla(195 20% 24% / 0.1);
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
}

.panel-topline,
.app-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.panel-topline,
.signal-label,
.app-tag {
  color: var(--text-muted);
}

.panel-topline,
.status-pill,
.signal-label,
.app-tag {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-card {
  display: grid;
  gap: 8px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, hsla(195 40% 92% / 0.5), hsla(0 0% 100% / 0.72));
}

.signal-value {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
}

.signal-grid {
  display: grid;
  gap: 12px;
}

.signal-tile {
  display: flex;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: hsla(0 0% 100% / 0.56);
  transition:
    transform 180ms cubic-bezier(0.4, 0, 0.2, 1),
    border-color 180ms cubic-bezier(0.4, 0, 0.2, 1);
}

.signal-tile:hover,
.signal-tile:focus-within {
  transform: translateY(-2px);
  border-color: hsla(195 34% 32% / 0.18);
}

.tile-dot {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  margin-top: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px hsla(195 42% 52% / 0.12);
}

.tile-dot-alt {
  background: var(--accent-alt);
  box-shadow: 0 0 0 6px hsla(140 24% 44% / 0.12);
}

.tile-title {
  margin-bottom: 4px;
  font-weight: 700;
}

.beta-section,
.contact-section,
.apps-section,
.about-section {
  padding: 40px;
}

.section-heading {
  display: grid;
  gap: 12px;
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding-top: 28px;
}

.beta-section {
  display: grid;
  gap: 28px;
  background:
    radial-gradient(circle at top right, hsla(195 44% 82% / 0.34), transparent 32%),
    linear-gradient(180deg, hsla(0 0% 100% / 0.76), hsla(45 36% 95% / 0.86));
}

.beta-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.beta-card {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: hsla(0 0% 100% / 0.72);
  transition:
    transform 180ms cubic-bezier(0.4, 0, 0.2, 1),
    border-color 180ms cubic-bezier(0.4, 0, 0.2, 1);
}

.beta-card:hover,
.beta-card:focus-within {
  transform: translateY(-3px);
  border-color: hsla(195 34% 32% / 0.18);
}

.beta-card-accent {
  background: linear-gradient(180deg, hsla(195 50% 92% / 0.88), hsla(0 0% 100% / 0.74));
}

.beta-figure {
  display: grid;
  gap: 12px;
  padding: 12px;
  border: 1px solid hsla(195 26% 28% / 0.1);
  border-radius: var(--radius-md);
  background: hsla(0 0% 100% / 0.68);
}

.beta-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid hsla(205 20% 24% / 0.12);
}

.beta-figure figcaption {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.beta-label,
.app-meta {
  color: var(--text-muted);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.beta-label {
  font-weight: 700;
}

.beta-note {
  max-width: 68ch;
  padding: 16px 20px;
  border: 1px solid hsla(195 24% 28% / 0.1);
  border-radius: var(--radius-md);
  background: hsla(0 0% 100% / 0.56);
  color: var(--text-muted);
}

.contact-section {
  display: grid;
  gap: 28px;
  background:
    radial-gradient(circle at bottom left, hsla(42 58% 82% / 0.28), transparent 30%),
    linear-gradient(180deg, hsla(0 0% 100% / 0.74), hsla(195 28% 95% / 0.82));
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: hsla(0 0% 100% / 0.72);
}

.app-card {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: hsla(0 0% 100% / 0.68);
  transition:
    transform 180ms cubic-bezier(0.4, 0, 0.2, 1),
    border-color 180ms cubic-bezier(0.4, 0, 0.2, 1);
}

.app-card:hover,
.app-card:focus-within {
  transform: translateY(-3px);
  border-color: hsla(195 34% 32% / 0.18);
}

.status-pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
}

.narrow {
  max-width: 720px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 8px 8px;
  color: var(--text-muted);
  font-size: 0.94rem;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 900px) {
  .page-shell {
    width: min(100% - 32px, 1120px);
  }

  .site-header,
  .hero,
  .beta-section,
  .contact-section,
  .apps-section,
  .about-section {
    border-radius: 24px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 40px 24px;
  }

  .beta-section,
  .contact-section,
  .apps-section,
  .about-section {
    padding: 32px 24px;
  }

  .beta-layout,
  .apps-grid {
    grid-template-columns: 1fr;
  }
}

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

  .site-header,
  .contact-card,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header {
    padding: 20px;
    border-radius: 24px;
  }

  .site-nav {
    gap: 16px;
  }

  h1 {
    max-width: 100%;
  }

  .hero-panel,
  .beta-card,
  .signal-card,
  .app-card {
    padding: 20px;
  }

  .panel-topline,
  .app-head {
    align-items: flex-start;
    flex-direction: column;
  }
}
