:root {
  --bg: #f8f6f1;
  --panel: #ffffff;
  --panel-soft: #fcfbf8;
  --text: #0f172a;
  --muted: #475569;
  --muted-2: #64748b;
  --line: rgba(125, 211, 252, 0.32);
  --line-soft: rgba(148, 163, 184, 0.24);
  --sky: #0369a1;
  --sky-2: #0ea5e9;
  --sky-3: #0284c7;
  --cyan: #0f766e;
  --shadow: 0 30px 80px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.05);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.page-shell {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top, rgba(2,132,199,0.16), transparent 34%),
    radial-gradient(circle at bottom right, rgba(14,165,233,0.14), transparent 28%),
    var(--bg);
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.home-grid {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding: 64px 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(125, 211, 252, 0.45);
  background: rgba(240, 249, 255, 0.95);
  color: #0c4a6e;
  font-size: 14px;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 10px rgba(2, 132, 199, 0.06);
}

h1 {
  margin: 22px 0 0;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 0.97;
  letter-spacing: -0.045em;
  font-weight: 600;
}

.lead {
  margin-top: 22px;
  max-width: 660px;
  font-size: 22px;
  line-height: 1.7;
  color: var(--muted);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 18px;
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: #fff;
  background: var(--sky);
  box-shadow: 0 16px 40px rgba(14,165,233,0.22);
}
.btn-primary:hover { background: #075985; }
.btn-secondary {
  color: #0c4a6e;
  background: #fff;
  border: 1px solid rgba(125, 211, 252, 0.5);
}
.btn-secondary:hover { background: #f0f9ff; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 760px;
  margin-top: 44px;
}

.card {
  border-radius: 28px;
  background: #fff;
  padding: 22px 20px;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-soft);
}
.card.card-accent {
  border-color: rgba(56, 189, 248, 0.55);
  box-shadow: 0 18px 45px rgba(14,165,233,0.10);
}
.card h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 600;
  white-space: nowrap;
}
.card p {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}
.card .cta-inline {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: #075985;
}

.disclaimer {
  margin-top: 34px;
  max-width: 760px;
  font-size: 12px;
  line-height: 1.65;
  color: var(--muted-2);
}

.brand-panel {
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(125, 211, 252, 0.3);
  background: #fff;
  box-shadow: var(--shadow);
}
.brand-top {
  padding: 38px 40px;
  color: #fff;
  background: linear-gradient(135deg, #082f49 0%, #155e75 52%, #0284c7 100%);
}
.brand-top .eyebrow {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(224,242,254,0.92);
}
.brand-top h2 {
  margin: 18px 0 0;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 600;
}
.brand-top p {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(240,249,255,0.92);
}
.brand-bottom {
  display: grid;
  gap: 16px;
  padding: 28px 30px 32px;
}
.info-box {
  border-radius: 22px;
  border: 1px solid var(--line-soft);
  background: var(--panel-soft);
  padding: 20px;
}
.info-box .label {
  font-size: 14px;
  color: var(--muted-2);
}
.info-box .value {
  margin-top: 6px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
}
.info-box .body {
  margin-top: 6px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}

.back-link {
  display: inline-flex;
  align-items: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(125, 211, 252, 0.4);
  background: #f0f9ff;
  color: #0c4a6e;
  font-size: 14px;
  font-weight: 600;
}

.commercial-wrap {
  padding: 64px 0;
}
.commercial-panel {
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(125, 211, 252, 0.28);
  background: #fff;
  box-shadow: var(--shadow);
}
.commercial-toolbar {
  padding: 20px 32px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
}
.hero-watermark {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 32px 32px 0 0;
  pointer-events: none;
}
.hero-watermark img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}
.hero-watermark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(248,246,241,0.88) 0%,
    rgba(248,246,241,0.78) 34%,
    rgba(248,246,241,0.54) 56%,
    rgba(248,246,241,0.20) 76%,
    rgba(248,246,241,0.06) 100%);
}
.hero-watermark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(248,246,241,0.06) 0%,
    rgba(248,246,241,0.01) 48%,
    rgba(248,246,241,0.18) 72%,
    rgba(248,246,241,0.52) 88%,
    rgba(248,246,241,0.88) 100%);
  box-shadow: inset 0 0 110px rgba(248,246,241,0.28), inset 0 -40px 70px rgba(248,246,241,0.58), 0 0 40px rgba(125,211,252,0.08);
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 40px 40px 34px;
}
.hero-copy h1 {
  max-width: 620px;
  font-size: clamp(42px, 5vw, 64px);
}
.hero-copy .lead { max-width: 640px; }

.quote-panel-wrap {
  position: relative;
  z-index: 1;
  padding: 24px 24px 24px 10px;
}
.quote-panel {
  position: relative;
  border-radius: 28px;
  padding: 40px 40px 34px;
  color: #fff;
  border: 1px solid rgba(125, 211, 252, 0.28);
  background: linear-gradient(135deg, #082f49 0%, #155e75 52%, #0284c7 100%);
  box-shadow: 0 28px 70px rgba(8, 47, 73, 0.24), 0 0 30px rgba(56, 189, 248, 0.10);
  overflow: hidden;
}
.quote-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.18), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.08), transparent 45%, rgba(255,255,255,0.03));
  pointer-events: none;
}
.quote-panel .eyebrow {
  position: relative;
  z-index: 1;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(224,242,254,0.9);
  font-weight: 600;
}
.quote-panel h2 {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 600;
}
.quote-panel p {
  position: relative;
  z-index: 1;
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(240,249,255,0.92);
}
.quote-panel .contact-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  margin-top: 28px;
}
.glass-box {
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  padding: 18px;
}
.glass-box .label {
  font-size: 14px;
  color: rgba(224,242,254,0.82);
}
.glass-box .value {
  margin-top: 6px;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 600;
}

.quote-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 0 40px 40px;
}
.quote-card {
  border-radius: 28px;
  padding: 28px;
  border: 1px solid rgba(125, 211, 252, 0.3);
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.quote-card:hover {
  transform: translateY(-2px);
  border-color: rgba(56, 189, 248, 0.5);
}
.quote-card.soft {
  background: #f9fcfe;
  box-shadow: 0 18px 50px rgba(14,165,233,0.08);
}
.pill {
  display: inline-flex;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #fff;
  background: #0369a1;
}
.pill.alt { background: #155e75; }
.quote-card h3 {
  margin: 18px 0 0;
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 600;
}
.quote-card p {
  margin: 14px 0 0;
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
}
.quote-card .cta-inline {
  margin-top: 20px;
  font-size: 15px;
  font-weight: 700;
  color: #075985;
}

.commercial-note {
  padding: 0 40px 40px;
}
.commercial-note .note-box {
  border-radius: 24px;
  border: 1px solid var(--line-soft);
  background: var(--panel-soft);
  padding: 18px 20px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

@media (max-width: 980px) {
  .home-grid,
  .hero-grid,
  .quote-cards {
    grid-template-columns: 1fr;
  }
  .home-grid { min-height: auto; }
  .cards { grid-template-columns: 1fr; max-width: none; }
  .quote-panel-wrap { padding: 0 24px 24px; }
  .hero-copy { padding-bottom: 24px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 32px, 1180px); }
  .home-grid, .commercial-wrap { padding: 32px 0; }
  .hero-copy, .quote-cards, .commercial-note { padding-left: 22px; padding-right: 22px; }
  .commercial-toolbar { padding: 18px 22px; }
  .quote-panel { padding: 28px 24px; }
  .brand-top, .brand-bottom { padding-left: 22px; padding-right: 22px; }
  .quote-card h3, .quote-panel h2, .brand-top h2 { font-size: 28px; }
  .lead { font-size: 18px; }
}
