* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6f8fc;
  --surface: #ffffff;
  --text: #132033;
  --muted: #677285;
  --line: #dfe5ee;
  --primary: #075bbb;
  --primary-dark: #034b9d;
  --primary-soft: #e8f7fa;
  --navy: #071925;
  --navy-2: #0d2b3a;
  --success: #00a9b5;
  --radius: 22px;
  --shadow: 0 20px 60px rgba(22, 34, 60, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

h1, h2, h3, .brand-name {
  font-family: "Manrope", sans-serif;
}

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  max-width: 940px;
}

.center {
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(223, 229, 238, 0.8);
  background: rgba(246, 248, 252, 0.92);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--primary), #7a66d7);
  box-shadow: 0 10px 22px rgba(72, 89, 200, .22);
}

.brand-name {
  font-size: 1.05rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: .92rem;
  color: #475269;
}

.desktop-nav a:hover {
  color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: 700;
  transition: .2s ease;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
}

.btn-small {
  min-height: 42px;
  padding: 0 18px;
  font-size: .9rem;
}

.btn-large {
  min-height: 54px;
  padding: 0 23px;
  font-size: .96rem;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 26px rgba(72, 89, 200, .24);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-outline {
  border-color: #cbd2e1;
  background: rgba(255,255,255,.7);
}

.btn-outline:hover,
.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-ghost {
  border-color: #d6dce6;
  background: white;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 86px;
  background:
    radial-gradient(circle at 80% 20%, rgba(89,102,218,.12), transparent 32%),
    linear-gradient(180deg, #f9fbff 0%, #f4f7fc 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: 72px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border: 1px solid #d7deef;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  color: #46516a;
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #27a680;
  box-shadow: 0 0 0 4px rgba(39,166,128,.11);
}

.hero h1 {
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  line-height: .99;
  letter-spacing: -.055em;
  max-width: 760px;
}

.hero h1 span {
  color: var(--primary);
}

.hero-lead {
  font-size: 1.18rem;
  color: #5c677a;
  margin-top: 26px;
  max-width: 680px;
}

.trust-statement {
  margin-top: 24px;
  padding: 18px 20px;
  border-left: 3px solid var(--primary);
  border-radius: 0 14px 14px 0;
  background: rgba(237,240,255,.75);
  color: #303f72;
  max-width: 690px;
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 26px;
  color: #667187;
  font-size: .88rem;
}

.hero-proof div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.proof-icon {
  color: var(--success);
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.server-card {
  position: absolute;
  inset: 40px 0 auto;
  background: rgba(255,255,255,.93);
  border: 1px solid rgba(205,213,227,.85);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: rotate(1.3deg);
}

.server-top {
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.mini-label {
  color: #8790a1;
  font-size: .69rem;
  letter-spacing: .13em;
  font-weight: 800;
}

.server-top h3 {
  margin-top: 6px;
  font-size: 1.25rem;
}

.online-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #eefaf6;
  color: #137357;
  font-size: .76rem;
  font-weight: 700;
}

.online-pill span {
  width: 7px;
  height: 7px;
  background: #1a9d75;
  border-radius: 50%;
}

.server-metrics {
  padding: 20px 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  background: #f9fbfd;
  border-bottom: 1px solid var(--line);
}

.metric span,
.metric strong {
  display: block;
}

.metric span {
  color: #8a94a4;
  font-size: .71rem;
  margin-bottom: 4px;
}

.metric strong {
  font-size: .83rem;
}

.mail-panel {
  padding: 14px;
}

.mail-row {
  display: grid;
  grid-template-columns: 42px 1fr 24px;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 14px;
}

.mail-row:hover {
  background: #f7f9fc;
}

.avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 800;
}

.mail-row strong {
  display: block;
  font-size: .86rem;
}

.mail-row span {
  display: block;
  color: #8a93a3;
  font-size: .73rem;
  margin-top: 2px;
}

.lock {
  color: #2a9b78;
  font-size: .72rem;
}

.server-footer {
  border-top: 1px solid var(--line);
  padding: 16px 28px;
  color: #7b8596;
  font-size: .74rem;
  background: #fafbfd;
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 17px;
  border-radius: 15px;
  background: rgba(255,255,255,.96);
  border: 1px solid #dce2ec;
  box-shadow: 0 16px 40px rgba(30,43,70,.12);
}

.floating-card small,
.floating-card strong {
  display: block;
}

.floating-card small {
  color: #8c95a3;
  font-size: .67rem;
}

.floating-card strong {
  font-size: .83rem;
}

.float-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 800;
}

.floating-card-one {
  left: -34px;
  top: 24px;
}

.floating-card-two {
  right: -22px;
  bottom: 22px;
}

.logo-strip {
  padding: 22px 0;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #697386;
  font-size: .9rem;
  font-weight: 600;
}

.section {
  padding: 104px 0;
}

.section-kicker {
  color: var(--primary);
  font-weight: 800;
  letter-spacing: .12em;
  font-size: .74rem;
  margin-bottom: 14px;
}

.section-kicker.light {
  color: #bbc5ff;
}

.section h2 {
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 1.06;
  letter-spacing: -.04em;
}

.section-intro {
  margin: 22px auto 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-intro.left {
  margin-left: 0;
}

.problem-section {
  background: white;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
}

.info-card,
.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.info-card {
  background: #fafbfd;
}

.card-number {
  color: var(--primary);
  font-weight: 800;
  font-size: .78rem;
  margin-bottom: 34px;
}

.info-card h3,
.feature-card h3 {
  font-size: 1.08rem;
  margin-bottom: 10px;
}

.info-card p,
.feature-card p {
  color: var(--muted);
  font-size: .92rem;
}

.statement-box {
  margin-top: 24px;
  padding: 34px;
  border-radius: 20px;
  background: var(--navy);
  color: #d3daeb;
  text-align: center;
  font-size: 1.15rem;
}

.statement-box strong {
  display: block;
  color: white;
  font-size: 1.45rem;
  margin-top: 3px;
}

.two-column {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: start;
}

.philosophy-section {
  background: #f1f4fa;
}

.large-copy {
  font-size: 1.14rem;
  color: #586477;
}

.large-copy p + p {
  margin-top: 16px;
}

.large-copy strong {
  display: inline-block;
  margin-top: 20px;
  color: var(--primary);
}

.solution-section {
  background: white;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 54px;
}

.feature-card {
  min-height: 248px;
}

.feature-card.featured {
  background: linear-gradient(145deg, var(--primary), #5968d5);
  color: white;
  border-color: transparent;
}

.feature-card.featured p {
  color: #e4e8ff;
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 14px;
  font-weight: 800;
  margin-bottom: 30px;
}

.featured .feature-icon {
  background: rgba(255,255,255,.14);
  color: white;
}

.family-section {
  background: var(--navy);
  color: white;
}

.family-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 80px;
  align-items: center;
}

.family-copy > p {
  color: #bac4d8;
  margin-top: 20px;
  max-width: 600px;
}

.address-list {
  display: grid;
  gap: 10px;
  margin: 30px 0;
}

.address-list div {
  width: fit-content;
  padding: 9px 14px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 9px;
  color: #d7def0;
  font-family: monospace;
}

.address-list span {
  color: white;
  font-weight: 700;
}

.family-bottom {
  margin-top: 0 !important;
}

.family-tagline {
  display: block;
  margin-top: 24px;
  font-size: 1.08rem;
}

.legacy-card {
  padding: 30px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  box-shadow: 0 28px 70px rgba(0,0,0,.22);
}

.legacy-top {
  display: flex;
  justify-content: space-between;
  color: #8e9ab2;
  font-size: .69rem;
  letter-spacing: .12em;
  font-weight: 800;
}

.shield {
  color: #b9c2ff;
}

.legacy-domain {
  font-family: "Manrope", sans-serif;
  font-size: 2rem;
  margin: 26px 0 30px;
}

.timeline {
  display: grid;
  gap: 24px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.timeline-item .year {
  color: #aab4cb;
  font-size: .76rem;
  font-weight: 700;
}

.timeline-item p {
  color: #96a3ba;
  font-size: .84rem;
  margin-top: 5px;
}

.compare-section {
  background: #f5f7fb;
}

.comparison-card {
  margin-top: 50px;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: white;
}

.comparison-header,
.comparison-row {
  display: grid;
  grid-template-columns: .8fr 1fr 1fr;
}

.comparison-header > div,
.comparison-row > div {
  padding: 19px 22px;
}

.comparison-header {
  background: #f7f9fc;
  font-weight: 800;
  font-size: .88rem;
}

.comparison-row {
  border-top: 1px solid var(--line);
  color: #596476;
  font-size: .9rem;
}

.comparison-row > div:first-child {
  color: var(--text);
  font-weight: 700;
}

.highlight-col {
  background: #f0f2ff;
  color: #3e4cae !important;
}

.compare-note {
  margin: 28px auto 0;
  max-width: 740px;
  text-align: center;
  color: #667084;
}

.compare-note strong {
  color: var(--text);
  display: block;
  margin-bottom: 5px;
}

.how-section {
  background: white;
}

.steps {
  display: grid;
  grid-template-columns: 1fr 44px 1fr 44px 1fr 44px 1fr;
  align-items: start;
  margin-top: 54px;
}

.step-num {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 22px;
}

.step h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.step p {
  color: var(--muted);
  font-size: .88rem;
}

.step-line {
  height: 1px;
  background: #dbe1eb;
  margin-top: 23px;
}

.professionals-section {
  background: #f2f5fa;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.pill-list span {
  padding: 8px 11px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #dce2eb;
  font-size: .82rem;
  color: #556175;
  font-weight: 600;
}

.professional-note {
  margin-top: 24px;
  color: #687386;
}

.trust-section {
  background: linear-gradient(135deg, #192642, #111a2f);
  color: white;
}

.trust-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 60px;
  align-items: center;
}

.trust-icon-large {
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  font-size: 3rem;
  color: #c3cbff;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 38px;
  background: rgba(255,255,255,.06);
}

.trust-section p {
  margin-top: 18px;
  color: #b8c2d5;
  max-width: 760px;
}

.trust-mantra {
  font-family: "Manrope", sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  margin-top: 20px;
}

.faq-section {
  background: white;
}

.faq-list {
  margin-top: 48px;
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fafbfd;
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 700;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: .92rem;
}

.cta-section {
  padding: 96px 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(116,127,229,.2), transparent 35%),
    var(--navy);
  color: white;
}

.cta-wrap {
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: 74px;
  align-items: center;
}

.cta-section h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 1;
  letter-spacing: -.05em;
}

.cta-section > .container > div:first-child p {
  margin-top: 20px;
  color: #b7c1d5;
  max-width: 640px;
}

.lead-form {
  background: white;
  color: var(--text);
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(0,0,0,.22);
}

.lead-form > p {
  color: var(--muted);
  font-size: .88rem;
  margin-top: 4px;
  margin-bottom: 20px;
}

.lead-form label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  margin-top: 13px;
}

.lead-form input,
.lead-form select {
  width: 100%;
  margin-top: 6px;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid #d6dde8;
  border-radius: 10px;
  font: inherit;
  color: var(--text);
  background: white;
  outline: none;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(72,89,200,.09);
}

.full-width {
  width: 100%;
  margin-top: 18px;
}

.lead-form small {
  display: block;
  margin-top: 11px;
  text-align: center;
  color: #8a94a4;
  font-size: .68rem;
}

.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px;
  border-radius: 10px;
  background: #effaf6;
  color: #176e57;
  text-align: center;
}

.form-success strong,
.form-success span {
  display: block;
}

.form-success span {
  font-size: .8rem;
  margin-top: 3px;
}

footer {
  padding: 48px 0;
  background: #0d1628;
  color: #9ca8bc;
  border-top: 1px solid rgba(255,255,255,.07);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr .8fr 1fr;
  gap: 36px;
}

.footer-brand {
  color: white;
}

footer p {
  margin-top: 13px;
  font-size: .82rem;
}

.footer-links {
  display: grid;
  gap: 9px;
  font-size: .82rem;
}

.footer-links a:hover {
  color: white;
}

.footer-legal {
  text-align: right;
}

.footer-legal span {
  display: block;
  margin-top: 15px;
  font-size: .7rem;
  color: #6f7a8f;
}

@media (max-width: 980px) {
  .desktop-nav,
  .nav-wrap > .btn {
    display: none;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    border: 1px solid #d7ddea;
    border-radius: 10px;
    background: #fff;
    display: grid;
    place-content: center;
    gap: 4px;
  }

  .menu-toggle span {
    width: 18px;
    height: 2px;
    background: #3d4658;
  }

  .mobile-menu {
    border-top: 1px solid var(--line);
    padding: 14px 20px 20px;
    background: #fff;
  }

  .mobile-menu.open {
    display: grid;
    gap: 14px;
  }

  .hero-grid,
  .family-grid,
  .cta-wrap,
  .two-column {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero {
    padding-top: 64px;
  }

  .hero-visual {
    min-height: 500px;
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .step-line {
    display: none;
  }

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

  .trust-icon-large {
    width: 100px;
    height: 100px;
    border-radius: 26px;
  }

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

  .footer-legal {
    text-align: left;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .section {
    padding: 76px 0;
  }

  .hero {
    padding: 58px 0 68px;
  }

  .hero h1 {
    font-size: 3.1rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    gap: 10px;
  }

  .hero-visual {
    min-height: 455px;
  }

  .server-card {
    inset: 20px 0 auto;
    transform: none;
  }

  .server-metrics {
    grid-template-columns: 1fr;
  }

  .floating-card-one {
    display: none;
  }

  .floating-card-two {
    right: -3px;
    bottom: 0;
  }

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

  .comparison-card {
    overflow-x: auto;
  }

  .comparison-header,
  .comparison-row {
    min-width: 720px;
  }

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

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

  .cta-wrap {
    gap: 40px;
  }

  .lead-form {
    padding: 23px;
  }
}

/* OyPost brand redesign */
:root{--oyblue:#075bbb;--oycyan:#00a9b5;--oygrad:linear-gradient(135deg,#075bbb,#00a9b5)}
.oypost-logo{width:175px;height:auto;display:block}.footer-oypost{width:180px}.brand-mark,.brand-name{display:none!important}
.btn-primary{background:var(--oygrad);box-shadow:0 12px 26px rgba(7,91,187,.25)}.btn-primary:hover{background:linear-gradient(135deg,#034b9d,#008c99)}
.hero{background:radial-gradient(circle at 82% 15%,rgba(0,169,181,.12),transparent 31%),linear-gradient(180deg,#fff 0%,#eef8fa 100%)}
.hero h1 span{background:var(--oygrad);-webkit-background-clip:text;background-clip:text;color:transparent}.trust-statement{border-left-color:var(--oycyan);background:#e7f8fa;color:#16495a}
.section-kicker{color:var(--oyblue)}.logo-strip{background:var(--oygrad);color:#fff;border:0}.feature-card.featured{background:var(--oygrad)}
.family-section{background:linear-gradient(135deg,#071925,#0b3343)}.trust-section{background:linear-gradient(135deg,#071925,#0d2b3a)}
.cta-section{background:linear-gradient(135deg,#075bbb,#00a9b5)}
.oypost-photo{position:absolute;inset:0 0 auto 0;height:210px;border-radius:28px 28px 0 0;overflow:hidden;z-index:0;box-shadow:0 20px 55px rgba(7,91,187,.18)}.oypost-photo img{width:100%;height:100%;object-fit:cover;display:block}.oypost-photo:after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.02),rgba(5,38,55,.5))}.oypost-photo span{position:absolute;left:22px;bottom:15px;z-index:2;color:#fff;font-size:.68rem;font-weight:800;letter-spacing:.14em}.server-card{inset:145px 0 auto}.floating-card-one{top:112px}.hero-visual{min-height:620px}
@media(max-width:680px){.oypost-logo{width:145px}.oypost-photo{height:170px}.server-card{inset:115px 0 auto}.hero-visual{min-height:560px}.floating-card-two{display:none}}
