:root {
  --navy: #071a2b;
  --navy-soft: #123049;
  --blue: #1568b0;
  --blue-deep: #0d4f8a;
  --teal: #1f9a90;
  --teal-soft: #6ec4bc;
  --mist: #edf4f7;
  --paper: #f6fafb;
  --white: #ffffff;
  --ink: #122536;
  --muted: #5d7080;
  --line: #d3e0e8;
  --shadow: 0 20px 55px rgba(7, 26, 43, 0.1);
  --shadow-soft: 0 10px 30px rgba(7, 26, 43, 0.06);
  --radius: 6px;
  --max: 1160px;
  --font: "Sora", sans-serif;
  --display: "Fraunces", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(900px 420px at 0% -5%, rgba(110, 196, 188, 0.18), transparent 55%),
    radial-gradient(800px 380px at 100% 0%, rgba(21, 104, 176, 0.12), transparent 50%),
    linear-gradient(180deg, #f3f8fa 0%, var(--paper) 35%, #ffffff 100%);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
video,
iframe,
figure,
.wp-block-image,
.wp-block-gallery {
  max-width: 100%;
}

img {
  display: block;
  height: auto;
}

.wp-block-columns,
.wp-block-column,
.wp-block-gallery,
.wp-block-image {
  min-width: 0;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin: 0 0 0.85rem;
  font-weight: 600;
}

p {
  margin: 0 0 1.05rem;
  color: var(--muted);
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1;
}

.container {
  width: min(100% - 2.75rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: 5.5rem 0;
}

.section-head {
  max-width: 38rem;
  margin-bottom: 2.75rem;
}

.section-head h2 {
  font-size: clamp(1.85rem, 2.8vw, 2.55rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  width: 1.4rem;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.8rem 1.45rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  transition:
    transform 0.28s ease,
    background 0.28s ease,
    color 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(21, 104, 176, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 16px 34px rgba(21, 104, 176, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--navy);
  border-color: rgba(11, 31, 51, 0.2);
}

.btn-secondary:hover {
  border-color: var(--navy);
  background: rgba(11, 31, 51, 0.04);
}

.btn-on-dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.btn-on-dark:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #fff;
}

.page-hero {
  padding: 4.75rem 0 2rem;
  position: relative;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 220px;
  background:
    radial-gradient(500px 180px at 10% 0%, rgba(110, 196, 188, 0.16), transparent 70%),
    radial-gradient(420px 160px at 90% 10%, rgba(21, 104, 176, 0.1), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.page-hero h1 {
  font-size: clamp(2.3rem, 4.4vw, 3.5rem);
  max-width: 14ch;
}

.page-hero > p {
  max-width: 40rem;
  font-size: 1.06rem;
}

.status-note {
  display: inline-flex;
  align-items: center;
  margin-top: 0.35rem;
  padding: 0.55rem 1rem;
  border-left: 3px solid var(--teal);
  background: rgba(31, 154, 144, 0.1);
  color: var(--navy-soft);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.feature-item {
  position: relative;
  padding: 1.75rem 1.4rem 1.55rem;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfc 100%);
  border: 1px solid rgba(211, 224, 232, 0.9);
  border-top: 3px solid var(--teal-soft);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-item .feature-index {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--blue);
  margin-bottom: 0.85rem;
}

.feature-item h3 {
  font-size: 1.28rem;
  margin-bottom: 0.65rem;
}

.feature-item p {
  margin: 0;
  font-size: 0.96rem;
}

.panel {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  padding: 1.9rem;
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius);
}

.stack-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.stack-list li {
  padding: 0.95rem 1.1rem;
  background: linear-gradient(90deg, rgba(237, 244, 247, 0.95), rgba(255, 255, 255, 0.9));
  border-left: 3px solid var(--blue);
  color: var(--navy);
  font-weight: 600;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.stages {
  display: grid;
  gap: 0;
}

.stage {
  display: grid;
  grid-template-columns: 2.7rem 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line);
}

.stage:last-child {
  border-bottom: 0;
}

.stage-num {
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--navy), var(--navy-soft));
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 8px 18px rgba(7, 26, 43, 0.2);
}

.stage h3 {
  font-size: 1.08rem;
  margin: 0;
  font-family: var(--font);
  font-weight: 600;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.75rem;
  align-items: center;
}

.split-media {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.split-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(0deg, rgba(7, 26, 43, 0.35), transparent);
  pointer-events: none;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
}

.notice {
  margin-top: 2rem;
  padding: 1.3rem 1.45rem;
  background: linear-gradient(90deg, rgba(7, 26, 43, 0.05), rgba(31, 154, 144, 0.08));
  border: 1px solid var(--line);
  border-left: 3px solid var(--teal);
  color: var(--navy);
  font-weight: 600;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.fade-up {
  animation: fadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .feature-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    max-width: none;
  }
}

.page-content {
  max-width: 44rem;
}

.page-content h2,
.page-content h3 {
  margin-top: 2rem;
}

.page-content ul {
  padding-left: 1.2rem;
  color: var(--muted);
}

.page-content a {
  color: var(--blue);
  font-weight: 600;
}

body.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 781px) {
  .wp-block-columns,
  .wp-block-columns.is-layout-flex {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: wrap !important;
  }

  .wp-block-columns > .wp-block-column {
    flex-basis: 100% !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .wp-block-gallery,
  .wp-block-gallery.has-nested-images {
    display: block !important;
    width: 100% !important;
  }

  .wp-block-gallery figure.wp-block-image,
  .wp-block-gallery img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.4rem, var(--max));
  }

  .section {
    padding: 3.75rem 0;
  }

  .btn {
    width: 100%;
  }

  body.admin-bar .site-header {
    top: 46px;
  }
}
