@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  --navy: #0b1220;
  --navy2: #111c30;
  --paper: #f7f9fc;
  --ink: #142039;
  --muted: #64748b;
  --blue: #3974f6;
  --blue2: #6ea0ff;
  --line: #dce3ed;
  --darkline: #263958;
  --green: #2ca878;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --heading: 'Outfit', var(--sans);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
}
.skip {
  position: absolute;
  left: -999px;
}
.skip:focus {
  left: 10px;
  top: 10px;
}
.nav-shell {
  position: sticky;
  top: 0;
  background: rgba(247, 249, 252, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  z-index: 5;
}
.nav {
  max-width: 1200px;
  margin: auto;
  padding: 15px 24px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: inherit;
}
.brand img {
  width: 96px;
  object-fit: contain;
}
.brand span {
  display: grid;
  line-height: 1.05;
}
.brand strong {
  font-size: 17px;
}
.brand small {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-links {
  margin-left: auto;
  display: flex;
  gap: 26px;
}
.mobile-nav {
  display: none;
}
.nav a {
  font-size: 13px;
  text-decoration: none;
}
.button {
  display: inline-flex;
  justify-content: center;
  background: var(--blue);
  color: white !important;
  padding: 14px 19px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(57, 116, 246, 0.18);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s, box-shadow 0.2s;
}
.button:hover {
  background: #2863e5;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(57, 116, 246, 0.25);
}
.button.small {
  padding: 10px 14px;
}
.hero {
  max-width: 1200px;
  min-height: 720px;
  margin: auto;
  padding: 105px 24px 90px;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 8vw;
  align-items: center;
}
.eyebrow {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--blue);
  text-transform: uppercase;
}
.eyebrow i {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  margin-right: 8px;
}
h1,
h2,
h3 {
  font-family: var(--heading);
  margin: 0;
  line-height: 1.03;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(52px, 6.5vw, 90px);
  max-width: 760px;
}
h2 {
  font-size: clamp(40px, 4.6vw, 66px);
}
h3 {
  font-size: 25px;
}
.lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 690px;
  margin: 30px 0;
}
.actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.text-link {
  color: var(--ink);
  font-weight: 700;
}
.console-card {
  background: var(--navy);
  color: white;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 35px 90px rgba(11, 18, 32, 0.22);
  min-height: 470px;
}
.card-top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--darkline);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #aebbd0;
}
.card-top i {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  margin-right: 8px;
}
.caller {
  text-align: center;
  padding: 34px;
}
.caller > div {
  width: 90px;
  height: 90px;
  border-radius: 28px;
  background: linear-gradient(145deg, var(--blue), #758fff);
  display: grid;
  place-items: center;
  margin: auto;
  font-size: 27px;
  font-weight: 800;
}
.caller p {
  color: #91a0b8;
  margin: 16px 0 3px;
}
.caller strong {
  font-size: 20px;
}
.facts {
  border-top: 1px solid var(--darkline);
}
.facts p {
  margin: 0;
  padding: 13px 2px;
  border-bottom: 1px solid var(--darkline);
  display: flex;
  justify-content: space-between;
}
.facts span {
  color: #91a0b8;
}
.facts b {
  font-size: 13px;
}
.handoff {
  margin-top: 18px;
  padding: 15px;
  border-radius: 9px;
  background: #172641;
  display: grid;
}
.handoff span {
  font-size: 9px;
  color: var(--blue2);
  letter-spacing: 0.1em;
}
.metric-band {
  max-width: 1200px;
  margin: auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.metric-band div {
  padding: 30px 24px;
  border-right: 1px solid var(--line);
  display: grid;
}
.metric-band div:last-child {
  border: 0;
}
.metric-band strong {
  font-size: 38px;
  color: var(--blue);
}
.metric-band span {
  font-size: 12px;
  color: var(--muted);
}
.section {
  max-width: 1200px;
  margin: auto;
  padding: 120px 24px;
}
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 9vw;
}
.split > div > p:last-child,
.offer > div > p {
  color: var(--muted);
  max-width: 540px;
}
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.steps li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.steps > li > span,
.control-grid article > span {
  color: var(--blue);
  font-weight: 800;
}
.steps p,
.control-grid p {
  color: var(--muted);
  margin: 7px 0;
}
.controls {
  background: var(--navy);
  color: white;
}
.control-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 50px;
  border-top: 1px solid var(--darkline);
  border-left: 1px solid var(--darkline);
}
.control-grid article {
  padding: 34px;
  border-right: 1px solid var(--darkline);
  border-bottom: 1px solid var(--darkline);
}
.control-grid p {
  color: #91a0b8;
}
.offer {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 9vw;
}
.offer ul {
  padding: 0;
  list-style: none;
  margin-top: 30px;
  border-top: 1px solid var(--line);
}
.offer li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.offer li:before {
  content: "✓";
  color: var(--blue);
  margin-right: 10px;
}
.offer aside {
  background: var(--navy);
  color: white;
  border-radius: 16px;
  padding: 34px;
  display: grid;
  gap: 8px;
  align-self: start;
}
.offer aside > p {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--blue2);
}
.offer aside > strong {
  font-size: 72px;
  line-height: 1;
}
.offer sup {
  font-size: 25px;
}
.offer aside > span,
.offer aside > small {
  color: #9eabc0;
}
.offer aside .text-link {
  color: #c9d8f2;
}
.offer hr {
  width: 100%;
  border: 0;
  border-top: 1px solid var(--darkline);
  margin: 18px 0;
}
.offer .button {
  margin-top: 20px;
}
footer {
  max-width: 1200px;
  margin: auto;
  border-top: 1px solid var(--line);
  padding: 34px 24px;
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 11px;
  color: var(--muted);
}
footer > p {
  margin-right: auto;
}
footer > div {
  display: flex;
  gap: 18px;
}
footer a {
  color: inherit;
}
@media (max-width: 800px) {
  .nav-links,
  .nav .button.small {
    display: none;
  }
  .nav {
    padding: 12px 16px;
  }
  .mobile-nav {
    display: block;
    margin-left: auto;
    position: relative;
  }
  .mobile-nav summary {
    cursor: pointer;
    list-style: none;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 9px 13px;
    font-size: 13px;
    font-weight: 800;
    background: #fff;
  }
  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }
  .mobile-nav > div {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    width: min(78vw, 260px);
    display: grid;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 18px 50px rgba(11, 18, 32, 0.2);
  }
  .mobile-nav > div a {
    padding: 11px 12px;
    border-radius: 7px;
    color: var(--ink);
  }
  .mobile-nav > div a:hover {
    background: var(--paper);
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 70px 18px;
    gap: 55px;
  }
  h1 {
    font-size: 53px;
  }
  .actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .metric-band,
  .split,
  .control-grid,
  .offer {
    grid-template-columns: 1fr;
  }
  .metric-band div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .section {
    padding: 80px 18px;
  }
  .control-grid {
    margin-top: 35px;
  }
  .offer aside > strong {
    font-size: 60px;
  }
  footer {
    padding: 28px 18px;
    flex-wrap: wrap;
  }
  footer > p {
    margin-right: 0;
  }
  footer > div {
    width: 100%;
    flex-wrap: wrap;
  }
}

.hearband {
  background: var(--navy);
  color: #fff;
}
.hearband h2 {
  color: #fff;
}
.faq {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
}
.faq summary:hover {
  color: var(--blue);
}
.faq p {
  color: var(--muted);
  margin: 12px 0 4px;
  max-width: 720px;
}

/* v0.5 public-site refinement: additive to the owner-restored identity. */
.hero {
  min-height: 660px;
  padding-top: 88px;
}
.hero h1 {
  font-size: clamp(48px, 5.8vw, 78px);
  max-width: 740px;
}
.launch-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  margin-top: 26px;
  font-size: 12px;
  color: var(--muted);
}
.launch-note span {
  padding: 5px 8px;
  border-radius: 999px;
  background: #e8efff;
  color: #2458c8;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.launch-note a {
  color: var(--ink);
  font-weight: 700;
}
.proof-strip {
  max-width: 1200px;
  margin: -30px auto 60px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}
.proof-strip div {
  background: #fff;
  border: 1px solid var(--line);
  padding: 22px;
}
.proof-strip div:first-child {
  border-radius: 14px 0 0 14px;
}
.proof-strip div:last-child {
  border-radius: 0 14px 14px 0;
}
.proof-strip b,
.proof-strip span {
  display: block;
}
.proof-strip b {
  font-size: 14px;
}
.proof-strip span {
  color: var(--muted);
  font-size: 11px;
  margin-top: 4px;
}
.workspace-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 7vw;
  align-items: center;
}
.workspace-copy {
  color: var(--muted);
  font-size: 17px;
  max-width: 610px;
  margin: 24px 0;
}
.workspace-points {
  list-style: none;
  padding: 0;
  margin: 26px 0 32px;
  border-top: 1px solid var(--line);
}
.workspace-points li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.workspace-points li:before {
  content: "✓";
  color: var(--blue);
  font-weight: 900;
  margin-right: 10px;
}
.workspace-preview {
  background: var(--navy);
  color: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 30px 80px rgba(11, 18, 32, 0.2);
}
.preview-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #aebbd0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.preview-top i {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  margin-right: 6px;
}
.preview-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 24px 0;
}
.preview-metrics article {
  padding: 16px;
  background: #122038;
  border: 1px solid #243752;
  border-radius: 11px;
}
.preview-metrics small,
.preview-metrics strong,
.preview-metrics span {
  display: block;
}
.preview-metrics small {
  color: #9eabc0;
  font-size: 10px;
}
.preview-metrics strong {
  font-size: 30px;
  margin: 5px 0;
}
.preview-metrics span {
  color: #7f91aa;
  font-size: 9px;
}
.preview-list {
  border-top: 1px solid var(--darkline);
}
.preview-list > div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 2px;
  border-bottom: 1px solid var(--darkline);
}
.initials {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: #3974f6;
  font-size: 11px;
  font-weight: 850;
}
.initials.alt {
  background: #6a55c9;
}
.initials.gold {
  background: #ad7117;
}
.preview-list p {
  display: grid;
  margin: 0 auto 0 0;
}
.preview-list p b {
  font-size: 12px;
}
.preview-list p small {
  color: #91a0b8;
}
.preview-list em {
  font-style: normal;
  color: #79d4b3;
  background: #123a31;
  border-radius: 999px;
  padding: 4px 7px;
  font-size: 9px;
}
.preview-list em.callback {
  color: #b9d0ff;
  background: #19315a;
}
.preview-list em.urgent {
  color: #ffd4a0;
  background: #4a2a10;
}
.usecase-heading {
  max-width: 780px;
}
.usecases {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 42px;
}
.usecases article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 26px;
  min-height: 230px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.usecases article:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(11, 18, 32, 0.08);
}
.usecases article > span {
  color: var(--blue);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.1em;
}
.usecases h3 {
  font-size: 21px;
  margin: 28px 0 12px;
}
.usecases p {
  color: var(--muted);
  font-size: 13px;
}
.final-cta {
  max-width: 1152px;
  margin-bottom: 100px;
  border-radius: 22px;
  background: linear-gradient(135deg, #0b1220, #162b4d);
  color: #fff;
  padding: 70px;
}
.final-cta h2 {
  max-width: 820px;
}
.final-cta > p:not(.eyebrow) {
  color: #b4c2d5;
  max-width: 620px;
  font-size: 17px;
}
.final-cta .text-link {
  color: #fff;
}
.final-cta .actions {
  margin-top: 30px;
}
@media (max-width: 920px) {
  .proof-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .proof-strip div:first-child,
  .proof-strip div:last-child {
    border-radius: 0;
  }
  .workspace-section {
    grid-template-columns: 1fr;
  }
  .usecases {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 800px) {
  .hero {
    min-height: auto;
  }
  .proof-strip {
    margin-top: -20px;
    padding: 0 18px;
  }
  .workspace-section {
    gap: 45px;
  }
  .preview-metrics {
    grid-template-columns: 1fr;
  }
  .usecases {
    grid-template-columns: 1fr;
  }
  .usecases article {
    min-height: 0;
  }
  .final-cta {
    margin: 0 18px 70px;
    padding: 48px 28px;
  }
  .final-cta .actions {
    align-items: flex-start;
  }
}

/* Keep the existing header artwork; refine only the RingQuay wordmark. */
.nav .brand {
  gap: 14px;
}
.nav .brand span {
  align-content: center;
  row-gap: 5px;
  line-height: 1;
}
.nav .brand strong {
  font-size: 19px;
}
.nav .brand small {
  font-size: 9.5px;
  line-height: 1.2;
}
