@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  --bg: #eef3f9;
  --bg-strong: #dfe8f3;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --surface-soft: #f6f9fc;
  --ink: #102436;
  --muted: #52677b;
  --border: rgba(16, 36, 54, 0.12);
  --border-strong: rgba(16, 36, 54, 0.2);
  --brand: #f59e0b;
  --brand-dark: #d97706;
  --accent: #0f766e;
  --accent-soft: rgba(15, 118, 110, 0.12);
  --hero-start: #0b2236;
  --hero-mid: #123a58;
  --hero-end: #0d2c45;
  --shadow: 0 24px 56px rgba(12, 34, 56, 0.14);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 10%, rgba(245, 158, 11, 0.14), transparent 34%),
    radial-gradient(circle at 92% 90%, rgba(15, 118, 110, 0.12), transparent 32%),
    linear-gradient(165deg, #f7f3eb 0%, var(--bg) 54%, var(--bg-strong) 100%);
  overflow-x: hidden;
}

a,
button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  touch-action: manipulation;
}

.bg-orb {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(14px);
  opacity: 0.5;
}

.bg-orb-one {
  width: 340px;
  height: 340px;
  top: -120px;
  right: -80px;
  background: rgba(245, 158, 11, 0.24);
}

.bg-orb-two {
  width: 420px;
  height: 420px;
  left: -170px;
  bottom: -150px;
  background: rgba(15, 118, 110, 0.16);
}

.page-shell,
.tool-shell {
  width: min(1180px, calc(100% - 24px));
  margin: 0 auto;
  padding: 26px 0 42px;
}

.site-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 36px rgba(12, 34, 56, 0.08);
  backdrop-filter: blur(10px);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  min-width: 0;
}

.site-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(140deg, var(--brand) 0%, var(--brand-dark) 100%);
  box-shadow: 0 12px 24px rgba(217, 119, 6, 0.26);
}

.site-brand-copy {
  min-width: 0;
}

.site-brand-copy strong,
.site-brand-copy small {
  display: block;
}

.site-brand-copy strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.site-brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.site-nav a,
.site-nav button,
.site-install,
.hero-link,
.tool-link,
.btn {
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.site-nav a:hover,
.site-nav button:hover,
.site-install:hover,
.hero-link:hover,
.tool-link:hover,
.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 118, 110, 0.4);
}

.site-nav .is-active,
.site-install,
.hero-link,
.tool-link,
.btn-primary {
  color: #fff;
  border-color: rgba(217, 119, 6, 0.4);
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-dark) 100%);
  box-shadow: 0 12px 24px rgba(217, 119, 6, 0.2);
}

.hero {
  margin-top: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.9fr);
  gap: 18px;
}

.hero-copy,
.hero-panel,
.highlight-card,
.tool-card,
.roadmap-card,
.panel,
.page-hero,
.page-hero-side {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 28px;
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(253, 206, 116, 0.24), transparent 30%),
    linear-gradient(155deg, var(--hero-start) 0%, var(--hero-mid) 58%, var(--hero-end) 100%);
}

.hero-panel {
  padding: 24px;
  background: var(--surface);
  backdrop-filter: blur(10px);
}

.eyebrow,
.hero-panel-label,
.page-kicker,
.page-badge,
.tool-tag,
.tool-path,
.highlight-card span {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.76rem;
  font-weight: 700;
}

.eyebrow,
.page-kicker {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.7);
}

.hero h1,
.roadmap-card h2,
.tool-card h2,
.page-hero h1 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  line-height: 0.96;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  max-width: 10ch;
}

.hero-text,
.hero-panel p,
.roadmap-card p,
.tool-card p,
.page-text,
.page-hero-side p,
.tool-points li {
  line-height: 1.7;
}

.hero-text {
  margin: 14px 0 0;
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-link-secondary,
.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
  box-shadow: none;
}

.hero-panel-label,
.page-badge,
.tool-tag {
  color: var(--accent);
}

.hero-panel strong {
  display: block;
  margin-top: 10px;
  font-size: 1.45rem;
  line-height: 1.2;
}

.hero-panel p {
  margin: 12px 0 0;
  color: var(--muted);
}

.site-install-block {
  width: 100%;
  margin-top: 16px;
}

.install-status {
  margin: 12px 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.install-status[data-install-tone="success"] {
  color: #0f6b64;
}

.install-status[data-install-tone="error"] {
  color: #b42318;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.highlight-card {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(8px);
}

.highlight-card strong {
  display: block;
  margin-top: 10px;
  font-size: 1.04rem;
  line-height: 1.45;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.tool-card {
  padding: 24px;
  background: var(--surface-strong);
}

.tool-card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.tool-path {
  color: var(--muted);
}

.tool-card h2 {
  margin-top: 12px;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
}

.tool-points {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.tool-points li {
  padding: 12px 14px;
  border-radius: 16px;
  background: var(--surface-soft);
  border: 1px solid rgba(15, 118, 110, 0.1);
}

.roadmap-card {
  margin-top: 22px;
  padding: 24px 26px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.92), rgba(242, 247, 248, 0.88));
}

.roadmap-card h2 {
  margin-top: 6px;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--accent);
}

.page-hero {
  margin-top: 18px;
  padding: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.8fr);
  gap: 16px;
  background:
    linear-gradient(150deg, rgba(11, 34, 54, 0.96), rgba(18, 58, 88, 0.94)),
    var(--hero-start);
  color: #fff;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.page-text {
  margin: 12px 0 0;
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.88);
}

.page-hero-side {
  padding: 20px;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.12);
}

.page-hero-side p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.88);
}

.panel {
  margin-top: 18px;
  padding: 18px;
  background: var(--surface-strong);
}

.btn-secondary {
  color: var(--ink);
  background: var(--surface-soft);
  border-color: var(--border);
}

.muted {
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero,
  .page-hero,
  .tools-grid,
  .highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .page-shell,
  .tool-shell {
    width: min(100% - 16px, 1180px);
    padding-top: calc(14px + env(safe-area-inset-top, 0px));
    padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  }

  .site-topbar,
  .hero-copy,
  .hero-panel,
  .highlight-card,
  .tool-card,
  .roadmap-card,
  .page-hero,
  .page-hero-side,
  .panel {
    border-radius: 22px;
  }

  .site-topbar {
    padding: 14px;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .site-nav a,
  .site-nav button,
  .site-install,
  .hero-link,
  .tool-link,
  .btn {
    width: 100%;
  }

  .hero-copy,
  .hero-panel,
  .tool-card,
  .roadmap-card,
  .page-hero,
  .page-hero-side,
  .panel {
    padding: 18px;
  }

  .hero h1 {
    max-width: none;
  }
}
