:root {
  --paper: #f5f1e8;
  --light: #fbf9f4;
  --ink: #10263c;
  --deep: #091b2c;
  --soft: #536979;
  --line: #dcd5c7;
  --amber: #d9963b;
  --green: #27745d;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 0%, rgba(217, 150, 59, .12), transparent 30rem),
    linear-gradient(180deg, #fbf9f4 0, var(--paper) 42rem);
  font-family: "Segoe UI", Inter, system-ui, sans-serif;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(245, 241, 232, .96);
  backdrop-filter: blur(8px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}

.brand span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--amber);
  border: 1px solid rgba(217, 150, 59, .85);
  font: 700 24px Georgia, serif;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
  color: var(--soft);
  font-size: 13px;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid var(--deep);
  font-weight: 800;
}

.nav-cta,
.button.primary {
  color: #fff;
  background: var(--deep);
}

.button.secondary {
  color: var(--deep);
  background: transparent;
}

.hero,
.section,
.privacy {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  padding: 34px 0 28px;
}

.hero-copy {
  position: absolute;
  inset: auto auto 0 0;
  z-index: 2;
  max-width: 760px;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 6vw, 64px);
}

.eyebrow {
  margin: 0;
  color: var(--amber);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 12px 0 0;
  color: var(--deep);
  font-family: Georgia, serif;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  font-size: clamp(36px, 5vw, 72px);
}

h2 {
  max-width: 820px;
  font-size: clamp(28px, 4vw, 46px);
}

h3 {
  margin: 12px 0 0;
  color: var(--deep);
  font: 500 24px/1.15 Georgia, serif;
}

p {
  color: var(--soft);
  line-height: 1.7;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 720px;
  font-size: 18px;
}

.hero .eyebrow,
.hero h1,
.hero p {
  color: #fff;
}

.hero h1 {
  font-size: clamp(48px, 7vw, 92px);
  text-shadow: 0 18px 36px rgba(0, 0, 0, .38);
}

.hero-statement {
  margin: 16px 0 0;
  color: #f4c174 !important;
  font-size: clamp(22px, 3vw, 34px) !important;
  font-family: Georgia, serif;
  line-height: 1.14;
}

.hero .button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, .72);
  background: rgba(9, 27, 44, .42);
}

.hero .button.primary {
  border-color: #fff;
  color: var(--deep);
  background: #fff;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-media {
  position: relative;
  min-height: 640px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--deep);
  box-shadow: 0 24px 50px rgba(9, 27, 44, .16);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 27, 44, .86), rgba(9, 27, 44, .52) 44%, rgba(9, 27, 44, .12)),
    linear-gradient(0deg, rgba(9, 27, 44, .78), rgba(9, 27, 44, 0) 54%);
  pointer-events: none;
}

.signal {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  background: var(--light);
}

.signal.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
}

.signal-node {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 28px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 248, 233, .42), rgba(251, 249, 244, .96)),
    var(--light);
}

.signal.compact .signal-node {
  border-right: 1px solid var(--line);
  border-bottom: 0;
}

.signal.compact .signal-node:nth-child(3) {
  border-right: 0;
}

.signal-node span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  font: 800 12px "Cascadia Mono", monospace;
}

.signal-node.web span {
  background: #eef4f7;
}

.signal-node.suite span {
  background: #dcece5;
}

.signal-node.account span {
  background: #f1dfbd;
}

.signal-node strong,
.signal-node small {
  display: block;
}

.signal-node strong {
  color: var(--deep);
  font: 500 clamp(25px, 2.2vw, 32px)/1.12 Georgia, serif;
}

.signal-node small {
  max-width: 360px;
  color: var(--soft);
  font-size: 15px;
  line-height: 1.68;
}

.signal > p {
  grid-column: 1 / -1;
  margin: 0;
  padding: 14px 18px;
  border-left: 3px solid var(--amber);
  background: #fff8e9;
  color: var(--deep);
  font-weight: 800;
}

.section {
  padding-top: 64px;
}

#crisis {
  padding-top: 54px;
}

#crisis h2 {
  max-width: 980px;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.04;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.product-grid article,
.responsibility-grid article {
  min-height: 252px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(251, 249, 244, .9);
}

.product-grid article.featured {
  border: 2px solid var(--amber);
  background: #fff;
  box-shadow: 0 18px 28px rgba(9, 27, 44, .08);
}

.product-grid span {
  width: max-content;
  padding: 5px 8px;
  color: var(--deep);
  background: #e7eef5;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-grid p,
.responsibility-grid p {
  margin: 0;
  font-size: 14px;
  line-height: 1.68;
}

.product-grid a {
  width: max-content;
  max-width: 100%;
  margin-top: 16px;
  color: #a15f13;
  font-size: 12px;
  font-weight: 800;
}

.pilot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 42px;
  margin-top: 64px;
  border: 1px solid var(--line);
  background: #fff8e9;
}

.pilot ol {
  margin: 0;
  padding-left: 22px;
  color: var(--ink);
  line-height: 2;
  font-weight: 700;
}

.responsibility-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
  border: 1px solid var(--line);
  background: var(--line);
  gap: 1px;
}

.responsibility-grid article {
  min-height: 220px;
  background: var(--light);
}

.crisis-grid article,
.standard-card-grid article {
  min-height: 238px;
  justify-content: flex-start;
  gap: 16px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 248, 233, .48), rgba(251, 249, 244, .95)),
    var(--light);
}

.crisis-grid h3,
.standard-card-grid h3 {
  margin-top: 0;
  font-size: clamp(25px, 2.2vw, 34px);
}

.crisis-grid p,
.standard-card-grid p {
  max-width: 520px;
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.72;
}

.card-label {
  width: max-content;
  max-width: 100%;
  padding: 5px 8px;
  color: #8a5b21;
  border: 1px solid rgba(217, 150, 59, .36);
  background: #fff8e9;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.narrative > p:not(.eyebrow) {
  max-width: 860px;
  font-size: 17px;
}

.document-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.document-strip span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: var(--deep);
  border: 1px solid var(--line);
  background: var(--light);
  font-size: 12px;
  font-weight: 800;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 24px;
  border: 1px solid var(--line);
  background: var(--line);
}

.principle-grid article {
  min-height: 112px;
  display: flex;
  align-items: center;
  padding: 24px;
  color: var(--deep);
  background: var(--light);
  font: 500 22px/1.2 Georgia, serif;
}

.privacy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  margin-top: 64px;
  padding: 40px;
  color: #dbe4eb;
  background: var(--deep);
}

.privacy h2 {
  color: #fff;
}

.privacy p {
  color: #afbfca;
}

.contact {
  padding-bottom: 70px;
}

.pilot-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 920px;
  margin-top: 26px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--light);
}

.pilot-form label {
  display: grid;
  gap: 7px;
  color: var(--soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.pilot-form input,
.pilot-form select,
.pilot-form textarea {
  width: 100%;
  min-width: 0;
  padding: 12px;
  color: var(--ink);
  border: 1px solid var(--line);
  background: #fff;
  font: 14px "Segoe UI", Inter, system-ui, sans-serif;
  text-transform: none;
}

.pilot-form textarea,
.pilot-form .form-boundary,
.pilot-form .actions {
  grid-column: 1 / -1;
}

.form-boundary {
  margin: 4px 0 0;
  padding: 13px 15px;
  color: #805f39;
  border-left: 3px solid var(--amber);
  background: #fff8e9;
  font-size: 13px;
}

.pilot-form button {
  cursor: pointer;
}

@media (max-width: 1080px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .hero,
  .pilot,
  .privacy {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 620px;
  }

  .hero-media img {
    min-height: 620px;
  }

  .hero-copy {
    max-width: none;
    padding: 30px;
  }

  .responsibility-grid {
    grid-template-columns: 1fr;
  }

  .principle-grid {
    grid-template-columns: 1fr 1fr;
  }

  .signal.compact {
    grid-template-columns: 1fr;
  }

  .signal.compact .signal-node {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 620px) {
  .hero,
  .section,
  .privacy {
    width: min(100% - 28px, 1180px);
  }

  .hero-media,
  .hero-media img {
    min-height: 680px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .principle-grid {
    grid-template-columns: 1fr;
  }

  .pilot-form {
    grid-template-columns: 1fr;
  }

  .signal-node {
    padding: 24px;
  }

  .pilot,
  .privacy {
    padding: 28px;
  }
}
