/* =========================================================
   ODOpt – Marketing (Landing / Products / Pricing)
   Notes:
   - No font changes (system stack).
   - Clouds image is scoped to .odopt-hero only (not repeating on whole page).
   ========================================================= */

/* Brand tokens (from color branding) */
:root {
  --color-brand-primary: #FF8A1F;
  --color-brand-primary-hover: #E97812;
  --color-brand-primary-soft: #FFF1E4;

  --color-bg-app: #F6F7F9;
  --color-bg-panel: #FFFFFF;
  --color-border-default: #E2E5EA;

  --color-text-primary: #1F2937;
  --color-text-secondary: #4B5563;
  --color-text-muted: #6B7280;
  --color-text-inverse: #FFFFFF;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
}

/* =========================================================
   Satoshi Font – Marketing / Public Pages Only
   ========================================================= */

@font-face {
    font-family: "Satoshi";
    src: url("/fonts/Satoshi-Light.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Satoshi";
    src: url("/fonts/Satoshi-LightItalic.otf") format("opentype");
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Satoshi";
    src: url("/fonts/Satoshi-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Satoshi";
    src: url("/fonts/Satoshi-Italic.otf") format("opentype");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Satoshi";
    src: url("/fonts/Satoshi-Medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Satoshi";
    src: url("/fonts/Satoshi-MediumItalic.otf") format("opentype");
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Satoshi";
    src: url("/fonts/Satoshi-Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Satoshi";
    src: url("/fonts/Satoshi-BoldItalic.otf") format("opentype");
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Satoshi";
    src: url("/fonts/Satoshi-Black.otf") format("opentype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Satoshi";
    src: url("/fonts/Satoshi-BlackItalic.otf") format("opentype");
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}


* { box-sizing: border-box; }
html, body { height: 100%; }
body {
    margin: 0;
    color: var(--color-text-primary);
    background: var(--color-bg-app);
    font-family: "Satoshi", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.45;
}


/* Sticky header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  backdrop-filter: blur(10px);
}
.site-nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.nav-left, .nav-right { display: flex; align-items: center; gap: 18px; }
.nav-link {
  text-decoration: none;
  color: var(--color-text-secondary);
  font-size: 15px;
}
.nav-link:hover { color: var(--color-text-primary); }

/* Hero (clouds scoped here only) */
.odopt-hero {
  /* Full-bleed hero background belongs ONLY to this section */
  position: relative;
  min-height: calc(100vh - 56px);
  padding: 74px 18px 46px; /* comfortable spacing below sticky header */
  display: block;
  background-image: url("/img/hero-clouds.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.odopt-hero-inner {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.kicker {
  font-size: 12px;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}
h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: -0.02em;
}
.odopt-hero p {
  margin: 10px auto;
  max-width: 780px;
  color: var(--color-text-secondary);
  font-size: 16px;
}

/* Pricing panel (in-hero show/hide) */
.pricing-panel {
  /* Overlay in a fixed spot within the HERO without moving the hero text */
  position: absolute;
  left: 50%;
  top: 56%;
  transform: translate(-50%, -50%);
  width: min(1100px, calc(100% - 36px));
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
}
.price-card {
  background: rgba(255,255,255,0.96);
  border: 1px solid var(--color-border-default);
  border-radius: 16px;
  padding: 18px 18px 16px;
  box-shadow: var(--shadow-sm);
  text-align: left;
}
.price-featured { border-color: var(--color-brand-primary); box-shadow: var(--shadow-md); }
.price-head { margin-bottom: 10px; }
.price-title { margin: 0; font-size: 18px; }
.price-title-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.price-sub { margin: 6px 0 0; color: var(--color-text-muted); font-size: 14px; }
.price-value { font-size: 40px; font-weight: 700; margin-top: 12px; }
.price-term { color: var(--color-text-muted); margin-top: -2px; }
.price-list { margin: 12px 0 0; padding-left: 18px; color: var(--color-text-secondary); }
.price-list li { margin: 6px 0; }
.price-cta-wrap { margin-top: 14px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  min-width: 140px;
}
.btn-primary {
  background: var(--color-brand-primary);
  color: var(--color-text-inverse);
}
.btn-primary:hover { background: var(--color-brand-primary-hover); }
.btn-ghost {
  background: transparent;
  border-color: var(--color-border-default);
  color: var(--color-text-primary);
}
.btn[disabled] { opacity: 0.55; cursor: not-allowed; }

/* Pills */
.pill {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid transparent;
}
.pill-popular {
  background: var(--color-brand-primary);
  color: var(--color-text-inverse);
}

/* Products section (white + slate; 1/3 image + 2/3 copy) */
.products-section {
  /* Full-bleed split background: white (left) + slate (right) */
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 33.333%, #8297b1 33.333%, #8297b1 100%);
  padding: 0;
}

.products-row {
  width: 100%;
  max-width: none;
  margin: 0;
  display: grid;
  grid-template-columns: 33.333% 66.667%;
  gap: 0; /* no gutter between image + copy */
  align-items: stretch;
}

.products-media {
    background: #ffffff;
    align-items: flex-start;
    justify-content: center;
    padding: 56px 12px;
}

   .products-media img {
        width: auto; /* stops scaling to container width */
        height: auto;
        max-width: 420px; /* pick your constant size */
        max-height: 360px; /* optional: prevents it towering */
        display: block;
    }

.products-copy {
    background: #8297b1;
    color: var(--color-text-inverse);
    text-align: left;
    padding: 0px 32px;
    line-height: 0.75;
}

/* keep headings readable on slate */
.products-copy h2,
.products-copy h3 {
  color: var(--color-text-inverse);
}

/* Mobile: stack and hide the laptop image */
@media (max-width: 768px) {
  .products-section {
    background: #8297b1;
  }
  .products-row {
    grid-template-columns: 1fr;
  }
  .products-media {
    display: none;
  }
  .products-copy {
    padding: 40px 22px;
  }
}



/* Footer (solid black) */
.site-footer {
  background: #000;
  color: #fff;
}
.site-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: center;
}
.footer-link {
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
}
.footer-link:hover { opacity: 1; text-decoration: underline; }
.footer-brand { margin-left: auto; opacity: 0.95; }
.footer-year { opacity: 0.8; }
@media (max-width: 700px) {
  .footer-brand { margin-left: 0; }
}


@media (max-width: 900px) {
  .pricing-panel {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 18px;
  }
}

/* Mobile: hide laptop image in Products section */
@media (max-width: 768px) {
    .products-media {
        display: none;
    }
}
