﻿:root {
  --bg: #eef6f8;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --text: #133955;
  --muted: #54718b;
  --line: rgba(19, 57, 85, 0.09);
  --brand: #0b64ab;
  --brand-deep: #074c83;
  --accent: #dff2dd;
  --accent-text: #26724b;
  --shadow: 0 30px 80px rgba(11, 70, 117, 0.14);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(113, 214, 207, 0.28), transparent 28%),
    radial-gradient(circle at bottom right, rgba(11, 100, 171, 0.18), transparent 24%),
    linear-gradient(135deg, #f6fbfc 0%, #eef4f6 45%, #f9fcfd 100%);
}

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 32px 18px;
}

.ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(20px);
  opacity: 0.55;
}

.ambient-left {
  width: 240px;
  height: 240px;
  top: -40px;
  left: -60px;
  background: rgba(114, 202, 225, 0.35);
}

.ambient-right {
  width: 340px;
  height: 340px;
  right: -120px;
  bottom: -110px;
  background: rgba(11, 100, 171, 0.16);
}

.card-app {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
}

.hero-card,
.info-grid,
.contact-card,
.quote-strip {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(18px);
}

.hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 26px;
  align-items: center;
  padding: 30px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.brand-logo {
  width: 168px;
  max-width: 42vw;
}

.status-pill,
.eyebrow,
.section-label,
.note-kicker {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--accent-text);
  background: var(--accent);
  font-size: 0.9rem;
}

.eyebrow,
.section-label {
  margin: 0 0 10px;
  color: var(--brand);
  font-size: 0.82rem;
}

.hero-copy h1,
.contact-copy h2,
.story-card h2 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  line-height: 1.08;
}

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

.lead,
.story-card p,
.contact-copy p,
.contact-link strong,
.detail-list li,
.quote-strip p {
  line-height: 1.6;
}

.lead {
  margin: 20px 0 0;
  max-width: 62ch;
  font-size: clamp(1.02rem, 1.9vw, 1.35rem);
  color: var(--text);
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.98rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand) 0%, #1e8fd7 100%);
  box-shadow: 0 18px 34px rgba(11, 100, 171, 0.22);
}

.button-secondary {
  color: var(--brand-deep);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(11, 100, 171, 0.16);
}

.portrait-panel {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
  padding: 12px;
}

.portrait-ring {
  position: absolute;
  inset: 56px 28px 28px;
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(11, 100, 171, 0.14), rgba(115, 213, 208, 0.3));
}

.portrait {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 28px 50px rgba(8, 53, 89, 0.22);
}

.floating-note {
  position: absolute;
  left: 0;
  bottom: 24px;
  z-index: 2;
  max-width: 240px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 34px rgba(19, 57, 85, 0.12);
}

.note-kicker {
  display: block;
  margin-bottom: 5px;
  color: var(--brand);
  font-size: 0.72rem;
}

.floating-note strong,
.contact-link strong {
  display: block;
  font-size: 1rem;
}

.floating-note span:last-child,
.contact-label {
  color: var(--muted);
  font-size: 0.92rem;
}

.info-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  margin-top: 18px;
  padding: 18px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.info-card,
.contact-card,
.quote-strip {
  border-radius: var(--radius-lg);
}

.info-card {
  padding: 26px;
  background: rgba(255, 255, 255, 0.76);
}

.story-card h2,
.contact-copy h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.3rem);
}

.story-card p,
.contact-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
}

.detail-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  position: relative;
  padding: 0 0 0 24px;
  color: var(--text);
}

.detail-list li + li {
  margin-top: 14px;
}

.detail-list li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #6bd3db 0%, var(--brand) 100%);
}

.contact-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  margin-top: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.contact-copy,
.contact-actions {
  padding: 14px;
}

.contact-actions {
  display: grid;
  gap: 14px;
}

.contact-link {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: inherit;
  text-decoration: none;
  background: var(--surface-strong);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.contact-link:hover {
  transform: translateY(-1px);
  border-color: rgba(11, 100, 171, 0.22);
  box-shadow: 0 16px 28px rgba(10, 60, 97, 0.08);
}

.contact-label {
  display: block;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.quote-strip {
  margin-top: 18px;
  padding: 24px 28px;
  text-align: center;
  box-shadow: var(--shadow);
}

.quote-strip p {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.28rem);
}

@media (max-width: 980px) {
  .hero-card,
  .info-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .portrait-panel {
    min-height: auto;
    padding-top: 8px;
  }

  .portrait-ring {
    inset: 24px 12px 18px;
  }

  .floating-note {
    left: 16px;
    right: 16px;
    bottom: 12px;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .brand-logo {
    width: 96px;
    max-width: 30vw;
  }
}

@media (max-width: 560px) {
  .brand-logo {
    width: 82px;
    max-width: 32vw;
  }

  .status-pill {
    padding: 8px 13px;
    font-size: 0.82rem;
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding: 14px;
  }

  .card-app {
    padding: 0;
  }

  .hero-card {
    padding: 18px;
    gap: 20px;
  }

  .brand-row {
    flex-wrap: wrap;
  }

  .brand-logo {
    width: 112px;
    max-width: 26vw;
  }

  .status-pill {
    padding: 10px 18px;
    font-size: 0.92rem;
  }

  .portrait {
    width: 100%;
    max-width: none;
  }

  .info-grid,
  .contact-card {
    padding: 12px;
  }

  .info-card,
  .quote-strip {
    padding: 20px;
  }

  .contact-copy,
  .contact-actions {
    padding: 8px;
  }
}


