:root {
  --ink-950: #091525;
  --ink-900: #10223d;
  --ink-800: #17345f;
  --ink-700: #245293;
  --sky-500: #2c6bff;
  --sky-400: #4f86ff;
  --sun-500: #ff9f1a;
  --sun-400: #ffb84f;
  --sand-100: #fff6ea;
  --paper: #f8fafc;
  --white: #ffffff;
  --slate-100: #e6edf5;
  --slate-200: #d3dce8;
  --slate-500: #5e718b;
  --slate-600: #44566e;
  --ring: rgba(44, 107, 255, 0.18);
  --shadow-soft: 0 18px 60px rgba(7, 20, 39, 0.08);
  --shadow-card: 0 24px 80px rgba(9, 21, 37, 0.12);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1180px;
  --serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", "URW Palladio L", serif;
  --sans: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--sans);
  color: var(--ink-900);
  background:
    radial-gradient(circle at top left, rgba(255, 184, 79, 0.28), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(44, 107, 255, 0.12), transparent 26%),
    linear-gradient(180deg, #fffdf9 0%, #f8fbff 28%, #ffffff 100%);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

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

button,
input,
textarea {
  font: inherit;
}

::selection {
  background: rgba(255, 159, 26, 0.2);
}

.site-shell {
  position: relative;
  overflow-x: clip;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  z-index: -1;
  pointer-events: none;
  filter: blur(30px);
}

.site-shell::before {
  top: 5rem;
  left: -4rem;
  width: 14rem;
  height: 14rem;
  background: rgba(255, 159, 26, 0.16);
}

.site-shell::after {
  top: 18rem;
  right: -5rem;
  width: 18rem;
  height: 18rem;
  background: rgba(44, 107, 255, 0.12);
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(16, 34, 61, 0.08);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 80px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink-950);
}

.brand img {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 10px 20px rgba(16, 34, 61, 0.12));
}

.brand-copy {
  display: grid;
  gap: 0.08rem;
  line-height: 1;
}

.brand-name {
  font-size: 1.04rem;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.brand-subtitle {
  font-size: 0.67rem;
  color: var(--slate-500);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav-links a {
  color: var(--slate-600);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink-900);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(16, 34, 61, 0.1);
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink-900);
  cursor: pointer;
}

.menu-toggle:focus-visible,
.button:focus-visible,
.nav-links a:focus-visible,
.text-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--ring);
}

.hero {
  padding: 5.5rem 0 2.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 2rem;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.section-card,
.contact-card,
.legal-card {
  position: relative;
  border: 1px solid rgba(16, 34, 61, 0.08);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.hero-copy {
  padding: 3.25rem;
  overflow: hidden;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 184, 79, 0.12), transparent 30%),
    linear-gradient(315deg, rgba(44, 107, 255, 0.12), transparent 38%);
  z-index: 0;
}

.hero-copy > * {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 34, 61, 0.08);
  background: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-700);
}

.eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sun-500), var(--sky-500));
}

.hero h1,
.page-hero h1,
.section-title,
.legal-card h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.98;
  color: var(--ink-950);
}

.hero h1 {
  margin-top: 1.5rem;
  font-size: clamp(3rem, 7vw, 5.6rem);
  max-width: 12ch;
}

.hero-copy p {
  margin: 1.25rem 0 0;
  max-width: 42rem;
  font-size: 1.1rem;
  color: var(--slate-600);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 50px;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--ink-900), var(--ink-700));
  box-shadow: 0 18px 34px rgba(16, 34, 61, 0.18);
}

.button-primary:hover {
  box-shadow: 0 20px 40px rgba(16, 34, 61, 0.22);
}

.button-secondary {
  color: var(--ink-900);
  border-color: rgba(16, 34, 61, 0.12);
  background: rgba(255, 255, 255, 0.75);
}

.button-secondary:hover {
  border-color: rgba(16, 34, 61, 0.24);
}

.hero-note {
  margin-top: 1.2rem;
  font-size: 0.92rem;
  color: var(--slate-500);
}

.hero-panel {
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(12, 25, 46, 0.98), rgba(16, 34, 61, 0.93)),
    linear-gradient(145deg, rgba(255, 159, 26, 0.08), transparent 40%);
  color: var(--white);
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: auto -12% -20% auto;
  width: 15rem;
  height: 15rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 159, 26, 0.24) 0%, transparent 62%);
}

.hero-panel > * {
  position: relative;
  z-index: 1;
}

.panel-caption {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.72);
}

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
  margin-top: 1rem;
}

.panel-head h2 {
  margin: 0;
  font-size: 1.7rem;
  line-height: 1.05;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-panel p {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.panel-list {
  display: grid;
  gap: 0.9rem;
  margin: 1.5rem 0 0;
}

.panel-list-item {
  display: grid;
  gap: 0.15rem;
  padding: 1rem 1.05rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-list-item strong {
  font-size: 0.95rem;
}

.panel-list-item span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.hero-rail {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.rail-chip {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 700;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}

.metric {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric strong {
  display: block;
  font-size: 1.15rem;
}

.metric span {
  display: block;
  margin-top: 0.22rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section {
  padding: 3rem 0;
}

.section-card {
  padding: 2.3rem;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem 2rem;
  align-items: end;
  margin-bottom: 1.8rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-copy {
  max-width: 42rem;
  color: var(--slate-600);
}

.company-grid,
.principles-grid,
.launch-grid,
.contact-grid,
.legal-grid,
.product-grid {
  display: grid;
  gap: 1.2rem;
}

.company-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(250px, 0.9fr);
  align-items: start;
}

.body-copy {
  color: var(--slate-600);
  font-size: 1.02rem;
}

.body-copy p {
  margin: 0 0 1rem;
}

.company-highlight {
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 246, 234, 0.95), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(255, 159, 26, 0.18);
}

.kicker {
  margin: 0 0 0.6rem;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-700);
}

.label {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-500);
}

.bullet-list {
  display: grid;
  gap: 0.85rem;
  margin: 1rem 0 0;
}

.bullet-list-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
}

.bullet-list-item::before {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  margin-top: 0.32rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sun-500), var(--sky-500));
}

.bullet-list-item strong {
  display: block;
  margin-bottom: 0.18rem;
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
  position: relative;
  min-height: 320px;
  padding: 1.55rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 34, 61, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.92));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -16% auto;
  width: 8rem;
  height: 8rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(44, 107, 255, 0.14), transparent 66%);
}

.product-card > * {
  position: relative;
  z-index: 1;
}

.product-card.featured {
  grid-column: span 2;
  background:
    linear-gradient(180deg, rgba(12, 25, 46, 0.98), rgba(16, 34, 61, 0.94)),
    linear-gradient(130deg, rgba(255, 159, 26, 0.18), transparent 46%);
  color: var(--white);
  box-shadow: var(--shadow-card);
}

.product-card.featured::after {
  width: 12rem;
  height: 12rem;
  background: radial-gradient(circle, rgba(255, 159, 26, 0.28), transparent 70%);
}

.product-card.featured .product-copy,
.product-card.featured p,
.product-card.featured .product-meta {
  color: rgba(255, 255, 255, 0.8);
}

.product-card.featured .button-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.product-symbol {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--ink-950);
  background: linear-gradient(145deg, rgba(255, 184, 79, 0.72), rgba(255, 255, 255, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.product-card.featured .product-symbol {
  color: var(--white);
  background: linear-gradient(145deg, rgba(255, 184, 79, 0.42), rgba(79, 134, 255, 0.26));
}

.product-card h3 {
  margin: 1rem 0 0.7rem;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

.product-card p {
  margin: 0;
  color: var(--slate-600);
}

.product-meta {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.2rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 34, 61, 0.08);
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-700);
}

.product-card.featured .chip {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.principles-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.principle-card,
.launch-card,
.contact-card {
  padding: 1.45rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 250, 255, 0.9));
  border: 1px solid rgba(16, 34, 61, 0.08);
}

.principle-card h3,
.launch-card h3,
.contact-card h3 {
  margin: 0.95rem 0 0.55rem;
  font-size: 1.22rem;
  letter-spacing: -0.02em;
}

.principle-card p,
.launch-card p,
.contact-card p {
  margin: 0;
  color: var(--slate-600);
}

.accent-line {
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sun-500), var(--sky-500));
}

.launch-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.launch-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 159, 26, 0.14), rgba(44, 107, 255, 0.12));
  color: var(--ink-900);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.cta-band {
  padding: 2.4rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(12, 25, 46, 0.98), rgba(16, 34, 61, 0.95)),
    linear-gradient(125deg, rgba(255, 159, 26, 0.16), transparent 55%);
  color: var(--white);
  box-shadow: var(--shadow-card);
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem 2rem;
  align-items: center;
}

.cta-band h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
}

.cta-band p {
  margin: 0.75rem 0 0;
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.76);
}

.contact-hero {
  padding: 4rem 0 2.2rem;
}

.page-hero {
  padding: 2.8rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(16, 34, 61, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.92)),
    linear-gradient(140deg, rgba(255, 184, 79, 0.1), transparent 36%);
  box-shadow: var(--shadow-soft);
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-top: 1rem;
}

.page-hero p {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: var(--slate-600);
  font-size: 1.05rem;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.96fr) minmax(280px, 1.04fr);
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 1rem;
}

.contact-card {
  box-shadow: var(--shadow-soft);
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: var(--ink-900);
  background: linear-gradient(145deg, rgba(255, 184, 79, 0.4), rgba(44, 107, 255, 0.16));
}

.contact-cta {
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(16, 34, 61, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 255, 0.92)),
    linear-gradient(135deg, rgba(255, 184, 79, 0.12), transparent 36%);
  box-shadow: var(--shadow-soft);
}

.contact-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 2rem;
  letter-spacing: -0.03em;
}

.contact-cta p {
  color: var(--slate-600);
}

.contact-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.3rem 0 1.6rem;
}

.contact-list-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
}

.contact-list-item::before {
  content: "";
  width: 0.68rem;
  height: 0.68rem;
  margin-top: 0.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sun-500), var(--sky-500));
}

.mail-link {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink-900);
}

.mail-link:hover {
  color: var(--ink-700);
}

.text-link {
  color: var(--ink-700);
  font-weight: 800;
}

.legal-hero {
  padding: 3.5rem 0 2rem;
}

.legal-grid {
  grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
  align-items: start;
}

.legal-aside {
  position: sticky;
  top: 104px;
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 34, 61, 0.08);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-soft);
}

.legal-aside p {
  margin: 0.65rem 0 0;
  color: var(--slate-600);
  font-size: 0.95rem;
}

.legal-card {
  padding: 2.4rem;
}

.legal-card h1 {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
}

.legal-card .legal-meta {
  margin-top: 1rem;
  color: var(--slate-500);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 800;
}

.legal-card p,
.legal-card li {
  color: var(--slate-600);
}

.legal-card h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.28rem;
  letter-spacing: -0.02em;
}

.legal-card ul {
  margin: 0.8rem 0 0;
  padding-left: 1.2rem;
}

.legal-card li + li {
  margin-top: 0.55rem;
}

.footer {
  padding: 3.5rem 0 2rem;
}

.footer-panel {
  padding: 2rem 2.1rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(16, 34, 61, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 0.8fr));
  gap: 1.5rem 2rem;
}

.footer-brand h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.9rem;
  letter-spacing: -0.03em;
}

.footer-brand p {
  max-width: 30rem;
  margin: 0.8rem 0 0;
  color: var(--slate-600);
}

.footer-column h3 {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-500);
}

.footer-links {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 0;
}

.footer-links a {
  color: var(--ink-900);
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--ink-700);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(16, 34, 61, 0.08);
  color: var(--slate-500);
  font-size: 0.92rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1080px) {
  .hero-grid,
  .company-grid,
  .contact-grid,
  .legal-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-aside {
    position: static;
  }

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

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: relative;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    min-width: 240px;
    padding: 1rem;
    border-radius: 20px;
    border: 1px solid rgba(16, 34, 61, 0.08);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-soft);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 0.7rem 0.85rem;
    border-radius: 14px;
  }

  .nav-links a:hover {
    background: rgba(44, 107, 255, 0.06);
  }

  .hero-copy,
  .hero-panel,
  .page-hero,
  .section-card,
  .cta-band,
  .contact-cta,
  .legal-card,
  .footer-panel {
    padding: 1.6rem;
  }

  .principles-grid,
  .launch-grid,
  .metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .hero {
    padding-top: 3.5rem;
  }

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

  .product-card.featured {
    grid-column: span 1;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .container {
    width: min(var(--container), calc(100% - 1.2rem));
  }
}
