:root {
  --soft-blue: #005b9f;
  --soft-blue-deep: #003f6e;
  --sutra-orange: #ff6b00;
  --paper: #f8fbff;
  --surface: rgba(255, 255, 255, 0.82);
  --line: rgba(15, 23, 42, 0.1);
  --text-main: #0f172a;
  --text-copy: #334155;
  --text-soft: #64748b;
  --shadow-xl: 0 28px 72px rgba(15, 23, 42, 0.14);
  --shadow-lg: 0 14px 32px rgba(15, 23, 42, 0.08);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --shell: min(1080px, calc(100% - 2rem));
  --font-body: "Segoe UI Variable", "Trebuchet MS", Verdana, sans-serif;
  --font-display: "Bahnschrift", "Franklin Gothic Demi", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text-main);
  background:
    radial-gradient(circle at 12% 10%, rgba(0, 91, 159, 0.15), transparent 28%),
    radial-gradient(circle at 88% 0%, rgba(255, 107, 0, 0.16), transparent 24%),
    linear-gradient(180deg, #fcfdff 0%, var(--paper) 100%);
}

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

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.page {
  padding: 2rem 0 4rem;
}

.hero,
.section,
.footer-card {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xl);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero {
  padding: 2rem;
}

.brand-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

.brand__soft {
  color: var(--soft-blue);
}

.brand__sutra {
  color: var(--sutra-orange);
}

.hero__eyebrow,
.section__eyebrow {
  margin: 1.25rem 0 0;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--soft-blue);
}

.hero__title,
.section__title {
  margin: 0.5rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 0.95;
}

.hero__title span,
.section__title span {
  color: var(--sutra-orange);
}

.hero__copy,
.section__copy,
.footer-card p,
.detail-list {
  color: var(--text-copy);
  line-height: 1.65;
}

.chip-row,
.actions,
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(0, 91, 159, 0.08);
  border: 1px solid rgba(0, 91, 159, 0.12);
  color: var(--soft-blue-deep);
  font-weight: 700;
}

.actions {
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-weight: 700;
}

.button--primary {
  background: linear-gradient(135deg, var(--soft-blue) 0%, var(--soft-blue-deep) 100%);
  color: #fff;
}

.button--secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--text-main);
  border-color: rgba(15, 23, 42, 0.12);
}

.layout {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.section {
  padding: 1.6rem;
}

.detail-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.detail-list li + li {
  margin-top: 0.7rem;
}

.footer-grid {
  margin-top: 1.25rem;
}

.footer-card {
  flex: 1 1 280px;
  padding: 1.3rem;
  box-shadow: var(--shadow-lg);
}

.footer-card h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
}

.footer-card p {
  margin: 0;
}

.legal {
  margin: 1rem 0 0;
  color: var(--text-soft);
  font-size: 0.95rem;
}

@media (max-width: 720px) {
  .page {
    padding-top: 1rem;
  }

  .hero,
  .section,
  .footer-card {
    padding: 1.25rem;
  }

  .hero__title,
  .section__title {
    font-size: clamp(2rem, 12vw, 3rem);
  }
}
