:root {
  --pmx-blue: #0f2f57;
  --pmx-blue-dark: #0a213d;
  --pmx-turquoise: #17b6c8;
  --pmx-text: #1f2937;
  --pmx-muted: #5b6472;
  --pmx-line: #e7edf3;
  --pmx-bg-soft: #f7fafc;
  --pmx-white: #ffffff;
  --pmx-shadow: 0 18px 40px rgba(15, 47, 87, 0.08);
  --pmx-radius: 18px;
  --pmx-max: 1180px;
}

/* Reset */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--pmx-text);
  background: var(--pmx-white);
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(var(--pmx-max), calc(100% - 40px));
  margin: 0 auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(231, 237, 243, 0.95);
}

.header-inner {
  min-height: 106px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  height: 76px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.site-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--pmx-blue-dark);
  letter-spacing: 0.02em;
  transition: 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--pmx-turquoise);
}

/* Hero */

.hero,
.page-hero {
  background:
    radial-gradient(circle at top right, rgba(23, 182, 200, 0.16) 0%, rgba(23, 182, 200, 0.08) 14%, transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%);
}

.hero {
  padding: 84px 0 64px;
}

.hero-premium {
  padding-top: 90px;
  padding-bottom: 72px;
}

.page-hero {
  padding: 84px 0 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: start;
}

.hero-copy p,
.page-hero p {
  margin: 0 0 16px;
  font-size: 18px;
  color: #334155;
  max-width: 760px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-panel {
  background: #ffffff;
  border: 1px solid var(--pmx-line);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--pmx-shadow);
}

.hero-panel h2 {
  margin: 0 0 14px;
  font-size: 20px;
  color: var(--pmx-blue-dark);
}

.hero-panel ul {
  margin: 0;
  padding-left: 18px;
}

.hero-panel li {
  margin-bottom: 10px;
  color: #475569;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.metric-box {
  background: #ffffff;
  border: 1px solid var(--pmx-line);
  border-radius: 18px;
  padding: 18px 16px;
  box-shadow: var(--pmx-shadow);
}

.metric-value {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--pmx-blue-dark);
}

.metric-label {
  font-size: 13px;
  color: var(--pmx-muted);
}

/* Trust */

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.trust-strip span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 47, 87, 0.05);
  border: 1px solid rgba(15, 47, 87, 0.08);
  font-size: 13px;
  font-weight: 600;
}

/* Typography */

.eyebrow {
  margin-bottom: 18px;
  color: var(--pmx-turquoise);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kicker-line {
  width: 82px;
  height: 4px;
  border-radius: 999px;
  background: var(--pmx-turquoise);
  margin-bottom: 20px;
}

h1 {
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.08;
  color: var(--pmx-blue-dark);
}

/* Sections */

section {
  padding: 72px 0;
}

section.alt {
  background: var(--pmx-bg-soft);
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--pmx-blue-dark);
}

.section-head p {
  color: #475569;
}

/* Grid */

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 22px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Cards */

.card {
  background: #ffffff;
  border: 1px solid var(--pmx-line);
  border-radius: var(--pmx-radius);
  padding: 24px;
  box-shadow: var(--pmx-shadow);
}

/* LOOP */

.loop-card {
  position: relative;
  padding-top: 50px;
}

.loop-letter {
  position: absolute;
  top: 18px;
  left: 24px;
  font-size: 36px;
  font-weight: 800;
  color: var(--pmx-turquoise);
  letter-spacing: 0.05em;
}

/* Quote */

.quote-box {
  border-left: 4px solid var(--pmx-turquoise);
  background: #f7fbfc;
  padding: 18px 20px;
  border-radius: 0 14px 14px 0;
  color: var(--pmx-blue-dark);
  font-weight: 600;
}

/* Buttons */

.button {
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
}

.button-primary {
  background: var(--pmx-blue);
  color: #ffffff;
}

.button-primary:hover {
  background: var(--pmx-blue-dark);
}

.button-secondary {
  border: 1px solid var(--pmx-line);
}

/* CTA */

.cta-banner {
  background: linear-gradient(135deg, var(--pmx-blue-dark), var(--pmx-blue));
  color: #ffffff;
  padding: 34px;
  border-radius: 26px;
}

/* Profile */

.profile-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
}

.profile-image img {
  border-radius: 22px;
  box-shadow: var(--pmx-shadow);
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--pmx-line);
  padding: 28px 0;
}

/* Responsive */

@media (max-width: 980px) {
  .grid-2,
  .grid-3,
  .grid-4,
  .profile-layout,
  .hero-grid,
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .brand img {
    height: 64px;
  }

  .hero {
    padding-top: 60px;
  }
}

@media (max-width: 640px) {
  .button {
    width: 100%;
  }
}
