:root {
  --bg: #050103;
  --panel: rgba(91, 16, 10, 0.38);
  --panel-strong: rgba(112, 21, 14, 0.48);
  --border: rgba(214, 133, 83, 0.28);
  --text: #f4e8dd;
  --muted: #d8b8a1;
  --accent: #d04a20;
  --accent-soft: #e2a170;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
  --radius: 28px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, rgba(132, 27, 10, 0.32), transparent 32%),
    radial-gradient(circle at 80% 20%, rgba(191, 76, 26, 0.16), transparent 28%),
    linear-gradient(180deg, #120204 0%, #050103 100%);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(10, 2, 4, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--text);
  min-width: 0;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(145, 46, 20, 0.28);
  flex-shrink: 0;
}

.brand-name {
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}

.brand-ai {
  color: #f0bf86;
}

.brand-tag {
  margin-top: 4px;
  font-size: 0.78rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.nav a {
  color: #ecd5c3;
  text-decoration: none;
  font-size: 0.98rem;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: #fff4ea;
}

.hero {
  padding-top: 96px;
  padding-bottom: 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.88fr;
  gap: 34px;
  align-items: start;
}

.hero-copy h1,
.section-intro h2,
.proof-copy h2,
.contact-shell h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: #fff2e7;
}

.hero-copy h1 {
  font-size: clamp(3.4rem, 7vw, 6.4rem);
  max-width: 14ch;
  margin-top: 22px;
}

.section-intro h2,
.proof-copy h2,
.contact-shell h2 {
  font-size: clamp(2.7rem, 5vw, 4.4rem);
  margin-top: 10px;
  max-width: 12ch;
}

.hero-copy p,
.section-intro p,
.proof-copy p,
.contact-shell p,
.card p,
.mini-card p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-copy p {
  max-width: 760px;
  margin: 22px 0 0;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: #fff8f3;
  background: linear-gradient(180deg, #d85828, #b73914);
  box-shadow: 0 12px 28px rgba(183, 57, 20, 0.28);
}

.btn-secondary {
  color: #f3dac6;
  border: 1px solid rgba(214, 133, 83, 0.36);
  background: rgba(255, 255, 255, 0.02);
}

.card {
  background:
    linear-gradient(135deg, rgba(122, 27, 16, 0.45), rgba(44, 8, 10, 0.42)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 28px;
}

.section-label,
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.82rem;
  color: #efc18d;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(214, 133, 83, 0.24);
  background: rgba(255, 255, 255, 0.02);
}

.mini-card {
  padding: 26px;
  border-radius: 24px;
  border: 1px solid rgba(214, 133, 83, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  margin-top: 18px;
}

.mini-card h3,
.feature-card h3,
.stack-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  color: #fff2e7;
}

.section-intro {
  max-width: 900px;
  margin-bottom: 34px;
}

.subhead {
  margin-top: 8px;
  font-size: 1.16rem;
  color: #efc18d;
}

.grid {
  display: grid;
  gap: 20px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.stack-card {
  padding: 28px;
  min-height: 220px;
}

.align-cards .stack-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.align-cards .section-label {
  margin-bottom: 14px;
}

.align-cards .stack-card h3 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.image-card {
  padding: 22px;
}

.image-label {
  margin-bottom: 16px;
  color: #f1d2b0;
  font-size: 1rem;
}

.architecture-image {
  width: 100%;
  height: auto;
  border-radius: 22px;
  border: 1px solid rgba(214, 133, 83, 0.22);
}

.proof-shell {
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-shell {
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.contact-action {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 1080px) {
  .hero-grid,
  .proof-shell,
  .contact-shell,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .contact-action {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .section {
    padding: 68px 0;
  }

  .nav-wrap {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .nav {
    gap: 16px;
  }

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

  .brand-tag {
    letter-spacing: 0.24em;
    font-size: 0.72rem;
    white-space: normal;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

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

  .feature-card,
  .stack-card,
  .mini-card,
  .hero-panel,
  .proof-shell,
  .contact-shell,
  .image-card {
    padding: 22px;
  }
}

/* ===== FIX PASS (alignment + layout) ===== */

/* Use more horizontal space for section headers */
.section-intro {
  max-width: 1180px !important;
}

.section-intro h2 {
  max-width: 20ch !important;
}

/* Make sections feel less left-constrained */
.section-intro p {
  max-width: 900px;
}

/* Fix hero split layout */
.hero-grid {
  grid-template-columns: 1.25fr 0.85fr !important;
  gap: 48px !important;
}

/* Center right-side cards properly */
.hero-panel {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

.hero-panel .mini-card {
  text-align: center;
}

/* Stack cards alignment fix */
.align-cards {
  align-items: stretch !important;
}

.align-cards .stack-card {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  min-height: 240px !important;
}

/* Feature cards consistency */
.feature-card {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

/* Industries text width */
#industries .section-intro p {
  max-width: 1000px !important;
}

/* Architecture image container */
.image-card {
  padding: 20px !important;
  overflow: hidden;
}

.architecture-image {
  width: 100% !important;
  height: auto !important;
  display: block;
  object-fit: contain;
  border-radius: 18px;
}

/* Header logo polish */
.brand-logo {
  width: 56px !important;
  height: 56px !important;
}

/* ===== END FIX PASS ===== */


/* ===== FINAL POLISH PASS ===== */

/* 1. Expand title width (major visual fix) */
.section-intro {
  max-width: 1200px !important;
}

.section-intro h2 {
  max-width: 22ch !important;
}

/* 2. Improve paragraph flow */
.section-intro p {
  max-width: 980px !important;
}

/* 3. Hero spacing + balance */
.hero-grid {
  grid-template-columns: 1.3fr 0.8fr !important;
  gap: 56px !important;
}

/* 4. Stack section alignment */
.align-cards {
  gap: 28px !important;
}

.align-cards .stack-card {
  min-height: 240px !important;
}

/* 5. Industries section width fix */
#industries .section-intro {
  max-width: 1100px !important;
}

#industries .section-intro h2 {
  max-width: 26ch !important;
}

/* 6. Proof section balance */
.proof-shell {
  align-items: center !important;
}

/* 7. Better vertical rhythm */
.section {
  padding: 72px 0 !important;
}

/* 8. Slight card polish */
.card {
  border-radius: 26px !important;
}

/* 9. Button polish */
.btn-primary {
  box-shadow: 0 16px 40px rgba(183, 57, 20, 0.35) !important;
}

/* ===== END FINAL PASS ===== */


/* ===== FINAL POLISH: alignment, widths, rhythm ===== */

/* Main readable width */
.container,
.section-inner,
.nav-inner {
  width: min(1240px, calc(100% - 68px)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Section rhythm */
.section {
  padding: 88px 0 !important;
}

/* All intro blocks align consistently */
.section-intro {
  max-width: 1120px !important;
  margin: 0 0 30px 0 !important;
}

.section-intro > .eyebrow,
.section-intro > h2,
.section-intro > p,
.section-intro > .subhead {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Section titles use more width and wrap better */
.section-intro h2,
.hero-copy h1,
.proof-copy h2,
.contact-copy h2 {
  max-width: 15ch !important;
  line-height: 0.98 !important;
  letter-spacing: -0.03em !important;
  margin: 0 0 18px 0 !important;
}

/* Paragraph blocks align and flow evenly */
.section-intro p,
.hero-copy p,
.proof-copy p,
.contact-copy p,
.stack-intro p,
.industries-intro p {
  max-width: 78ch !important;
  line-height: 1.65 !important;
  margin: 0 0 16px 0 !important;
  text-align: left !important;
}

/* Hero balance */
.hero-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr) !important;
  gap: 56px !important;
  align-items: start !important;
}

.hero-copy {
  max-width: none !important;
}

.hero-panel {
  align-self: start !important;
}

/* Shared card grids */
.align-cards,
.industries-grid,
.proof-points,
.stack-grid {
  align-items: stretch !important;
}

/* Stack cards line up cleanly */
.stack-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 28px !important;
}

.stack-grid .card,
.align-cards .card {
  min-height: 218px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  text-align: center !important;
}

.stack-grid .card .eyebrow,
.align-cards .card .eyebrow {
  text-align: center !important;
  margin-bottom: 14px !important;
}

.stack-grid .card h3,
.align-cards .card h3 {
  text-align: center !important;
  margin: 0 0 18px 0 !important;
}

.stack-grid .card p,
.align-cards .card p {
  text-align: center !important;
  margin: 0 auto !important;
  max-width: 30ch !important;
}

/* Industries intro should use width properly */
#industries .section-intro h2 {
  max-width: 18ch !important;
}

#industries .section-intro p {
  max-width: 82ch !important;
}

/* Industry cards align evenly */
.industries-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 26px !important;
}

.industries-grid .card {
  min-height: 200px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
}

.industries-grid .card h3 {
  margin: 0 0 16px 0 !important;
}

.industries-grid .card p {
  margin: 0 !important;
  max-width: 32ch !important;
}

/* Architecture image block */
.architecture-frame,
.architecture-card,
.architecture-panel {
  padding: 18px !important;
}

.architecture-image {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  border-radius: 18px !important;
}

/* Proof section balance */
.proof-shell {
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr) !important;
  gap: 34px !important;
  align-items: center !important;
}

.proof-copy,
.contact-copy {
  max-width: none !important;
}

.proof-points {
  gap: 18px !important;
}

.proof-points .card {
  min-height: 168px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

/* Contact section alignment */
.contact-shell {
  grid-template-columns: minmax(0, 1.1fr) auto !important;
  gap: 32px !important;
  align-items: center !important;
}

.contact-copy h2 {
  max-width: 14ch !important;
}

.contact-actions {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
}

/* Nav logo alignment */
.brand {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
}

.brand-logo {
  width: 44px !important;
  height: 44px !important;
  object-fit: contain !important;
  flex: 0 0 44px !important;
}

.brand-text {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

.brand-text .name {
  line-height: 1 !important;
  margin: 0 0 4px 0 !important;
}

.brand-text .tagline {
  line-height: 1.1 !important;
}

/* Uniform cards */
.card {
  border-radius: 26px !important;
}

/* Responsive cleanup */
@media (max-width: 1100px) {
  .hero-grid,
  .proof-shell,
  .contact-shell,
  .stack-grid,
  .industries-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-copy h1,
  .section-intro h2,
  .proof-copy h2,
  .contact-copy h2 {
    max-width: 18ch !important;
  }

  .contact-actions {
    justify-content: flex-start !important;
  }
}

@media (max-width: 720px) {
  .container,
  .section-inner,
  .nav-inner {
    width: min(100%, calc(100% - 32px)) !important;
  }

  .section {
    padding: 68px 0 !important;
  }

  .hero-copy h1,
  .section-intro h2,
  .proof-copy h2,
  .contact-copy h2 {
    max-width: 100% !important;
    font-size: clamp(2.2rem, 8vw, 4rem) !important;
  }

  .stack-grid .card,
  .align-cards .card,
  .industries-grid .card,
  .proof-points .card {
    min-height: unset !important;
  }
}

/* ===== END FINAL POLISH ===== */


/* ===== CARD ALIGN FIX: control / reliability / portability ===== */

.why-cards,
.align-cards,
.value-cards,
.capability-cards {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 24px !important;
  align-items: stretch !important;
}

.why-cards .card,
.align-cards .card,
.value-cards .card,
.capability-cards .card {
  min-height: 190px !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  padding: 34px 24px !important;
}

.why-cards .card h3,
.align-cards .card h3,
.value-cards .card h3,
.capability-cards .card h3 {
  margin: 0 0 18px 0 !important;
  min-height: 32px !important;
  display: flex !important;
  align-items: flex-start !important;
}

.why-cards .card p,
.align-cards .card p,
.value-cards .card p,
.capability-cards .card p {
  margin: 0 !important;
  line-height: 1.6 !important;
}

@media (max-width: 1100px) {
  .why-cards,
  .align-cards,
  .value-cards,
  .capability-cards {
    grid-template-columns: 1fr !important;
  }
}

/* ===== END CARD ALIGN FIX ===== */


/* ===== FINAL POLISH OVERRIDE ===== */

.section {
  padding: 88px 0 !important;
}

.section-inner,
.container,
.wrap {
  max-width: 1280px !important;
  width: min(1280px, calc(100% - 48px)) !important;
  margin: 0 auto !important;
}

.hero-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.9fr) !important;
  gap: 48px !important;
  align-items: start !important;
}

.hero-copy,
.section-intro {
  max-width: 920px !important;
}

.hero-copy h1,
.section-intro h2 {
  max-width: 15ch !important;
  line-height: 0.96 !important;
  margin: 0 0 22px 0 !important;
}

.hero-copy p,
.section-intro p {
  max-width: 78ch !important;
  margin: 0 0 18px 0 !important;
}

.hero-actions {
  margin-top: 28px !important;
}

.hero-panel {
  margin-top: 8px !important;
  align-self: start !important;
}

.why-cards,
.stack-grid,
.industries-grid {
  align-items: stretch !important;
}

.why-cards .card,
.stack-grid .card,
.industries-grid .card {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
}

.why-cards .card h3,
.stack-grid .card h3,
.industries-grid .card h3 {
  margin: 0 0 16px 0 !important;
  line-height: 1.15 !important;
}

.why-cards .card p,
.stack-grid .card p,
.industries-grid .card p {
  margin: 0 !important;
  line-height: 1.6 !important;
}

.architecture-image {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  border-radius: 20px !important;
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .hero-copy h1,
  .section-intro h2 {
    max-width: 17ch !important;
  }

  .hero-panel {
    max-width: 100% !important;
  }
}

@media (max-width: 700px) {
  .section {
    padding: 72px 0 !important;
  }

  .section-inner,
  .container,
  .wrap {
    width: min(100% - 28px, 1280px) !important;
  }

  .hero-copy h1,
  .section-intro h2 {
    max-width: 100% !important;
  }
}

/* ===== END FINAL POLISH OVERRIDE ===== */

/* ===== SCALE + WIDTH FIX ===== */

html {
  font-size: 16px !important;
}

body {
  font-size: 16px !important;
}

.section-inner,
.container,
.wrap,
.site-shell,
.content-shell {
  width: min(1360px, calc(100% - 56px)) !important;
  max-width: 1360px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr) !important;
  gap: 56px !important;
}

.hero-copy,
.section-intro,
.stack-intro,
.industries-intro {
  max-width: 980px !important;
}

.hero-copy h1,
.section-intro h2 {
  font-size: clamp(3.6rem, 6vw, 6.2rem) !important;
  line-height: 0.94 !important;
  max-width: 12ch !important;
  letter-spacing: -0.03em !important;
}

.hero-copy p,
.section-intro p,
.stack-intro p,
.industries-intro p {
  font-size: 1.08rem !important;
  line-height: 1.65 !important;
  max-width: 74ch !important;
}

.why-cards,
.stack-grid,
.industries-grid {
  gap: 24px !important;
}

.why-cards .card,
.stack-grid .card,
.industries-grid .card {
  min-height: 220px !important;
  padding: 28px 22px !important;
}

.why-cards .card h3,
.stack-grid .card h3,
.industries-grid .card h3 {
  font-size: 1.9rem !important;
  line-height: 1.1 !important;
  min-height: 2.2em !important;
  display: flex !important;
  align-items: flex-start !important;
  justify-content: center !important;
  text-align: center !important;
}

.why-cards .card p,
.stack-grid .card p,
.industries-grid .card p {
  font-size: 1.02rem !important;
  line-height: 1.65 !important;
}

.architecture-image {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  display: block !important;
}

@media (max-width: 1100px) {
  .section-inner,
  .container,
  .wrap,
  .site-shell,
  .content-shell {
    width: min(100% - 36px, 1360px) !important;
  }

  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .hero-copy h1,
  .section-intro h2 {
    max-width: 14ch !important;
  }
}

@media (max-width: 700px) {
  html,
  body {
    font-size: 15px !important;
  }

  .hero-copy h1,
  .section-intro h2 {
    font-size: clamp(2.4rem, 11vw, 3.6rem) !important;
    max-width: 100% !important;
  }

  .why-cards .card,
  .stack-grid .card,
  .industries-grid .card {
    min-height: auto !important;
  }
}

/* ===== END SCALE + WIDTH FIX ===== */

/* Final polish: force Why cards to align evenly */
.why-cards{
  align-items: stretch;
}

.why-cards .card{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

.why-cards .card h3{
  min-height: 32px;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.why-cards .card p{
  margin-top: 0;
}

/* Final Why-card title alignment fix */
.why-cards .card h3{
  min-height: 56px !important;
  display: flex;
  align-items: flex-start;
  line-height: 1.2;
  margin-bottom: 12px;
}

/* FINAL FIX: Why cards true alignment */

.why-cards{
  align-items: stretch;
}

.why-cards .card{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

/* Titles always start at same top position */
.why-cards .card h3{
  margin: 0 0 14px 0 !important;
  line-height: 1.2;
}

/* Body grows naturally without affecting title alignment */
.why-cards .card p{
  margin: 0;
  flex-grow: 1;
  line-height: 1.65;
}


/* PERFECT ALIGNMENT: Why cards */

.why-cards{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 22px;
  align-items: stretch;
}

.why-cards .card{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  padding: 26px 22px;
}

/* Title block */
.why-cards .card h3{
  margin: 0 0 14px 0 !important;
  line-height: 1.2;
}

/* Content block */
.why-cards .card p{
  margin: 0;
  line-height: 1.65;
}

/* Force consistent internal spacing */
.why-cards .card > *:last-child{
  margin-top: auto;
}



/* Contact heading fix */
#contact h2 {
  max-width: 18ch !important;
  width: 18ch;
  line-height: 1.02;
}

#contact .section-intro {
  max-width: 100%;
}

/* =========================
   Behavior Under Control
   ========================= */

.behavior-section .section-inner{
  display:flex;
  flex-direction:column;
  gap:40px;
}

.behavior-intro{
  max-width:920px;
}

.behavior-examples{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:24px;
  align-items:stretch;
}

.behavior-card{
  background:linear-gradient(180deg, rgba(91,19,13,0.92) 0%, rgba(53,8,7,0.92) 100%);
  border:1px solid rgba(168,78,47,0.38);
  border-radius:28px;
  padding:24px;
  box-shadow:0 0 0 1px rgba(255,255,255,0.015) inset;
  display:flex;
  flex-direction:column;
  gap:16px;
  min-height:100%;
}

.behavior-kicker,
.behavior-card .mini-label{
  display:inline-block;
  font-size:12px;
  line-height:1.4;
  letter-spacing:.20em;
  text-transform:uppercase;
  color:var(--muted);
}

.behavior-card h3{
  margin:0;
  line-height:1.15;
}

.behavior-card > p{
  margin:0;
}

.compare-col{
  border:1px solid rgba(168,78,47,0.24);
  border-radius:18px;
  padding:16px 16px 14px;
  background:rgba(255,255,255,0.02);
}

.compare-col strong{
  display:block;
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--text);
  margin-bottom:10px;
}

.compare-col ul{
  margin:0;
  padding-left:18px;
}

.compare-col li{
  margin:0 0 8px;
  line-height:1.55;
  color:var(--text);
}

.compare-col li:last-child{
  margin-bottom:0;
}

.behavior-card p strong{
  color:var(--text);
}

.behavior-card > p:last-child{
  margin-top:auto;
  padding-top:10px;
  border-top:1px solid rgba(168,78,47,0.18);
}

@media (max-width: 1100px){
  .behavior-examples{
    grid-template-columns:1fr;
  }
}

/* ===== Proven + Guarantees ===== */

.proven-metrics ul,
.guarantees-list ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 0 0;
}

.proven-metrics li,
.guarantees-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(168,78,47,0.18);
}

.proven-caption {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

.hip-clarification {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}


/* ===== Proven at scale + System guarantees cards ===== */

.proven-section .section-inner,
.guarantees-section .section-inner{
  display:flex;
  flex-direction:column;
  gap:24px;
}

.proof-cards,
.guarantee-cards{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:22px;
  align-items:stretch;
}

.proof-card,
.guarantee-card{
  background:linear-gradient(180deg, rgba(91,19,13,0.92) 0%, rgba(53,8,7,0.92) 100%);
  border:1px solid rgba(168,78,47,0.34);
  border-radius:24px;
  padding:24px 22px;
  box-shadow:0 0 0 1px rgba(255,255,255,0.015) inset;
  min-height:100%;
}

.proof-card{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:10px;
}

.proof-card h3{
  margin:0;
  font-size:2rem;
  line-height:1;
  color:var(--text);
}

.proof-label{
  margin:0;
  color:var(--muted);
  line-height:1.55;
}

.proof-caption{
  margin:0;
  color:var(--muted);
  font-size:.92rem;
  line-height:1.6;
}

.guarantee-card{
  display:flex;
  align-items:flex-start;
}

.guarantee-card p{
  margin:0;
  color:var(--text);
  line-height:1.65;
}

@media (max-width: 1100px){
  .proof-cards,
  .guarantee-cards{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px){
  .proof-cards,
  .guarantee-cards{
    grid-template-columns:1fr;
  }
}

/* ===== Header polish ===== */

.site-header{
  background: rgba(36, 7, 7, 0.84) !important;
  border-bottom: 1px solid rgba(210, 112, 68, 0.24) !important;
}

.header-inner{
  min-height: 84px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
}

.brand-logo{
  width: 68px !important;
  height: 68px !important;
  object-fit: contain;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.brand-mark,
.logo-wrap,
.brand-logo-wrap{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.brand-text{
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.nav a{
  color: rgba(244,231,220,0.92);
}

/* ===== Why differentiation block ===== */

.why-diff-card{
  margin-top: 22px;
  background: linear-gradient(180deg, rgba(91,19,13,0.82) 0%, rgba(53,8,7,0.82) 100%);
  border: 1px solid rgba(168,78,47,0.30);
  border-radius: 24px;
  padding: 22px 22px 18px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.015) inset;
  max-width: 920px;
}

.why-diff-card h3{
  margin: 0 0 12px 0;
  line-height: 1.2;
}

.why-diff-card ul{
  margin: 0;
  padding-left: 18px;
}

.why-diff-card li{
  margin: 0 0 10px 0;
  line-height: 1.6;
  color: var(--text);
}

.why-diff-card li:last-child{
  margin-bottom: 0;
}

/* ===== Header reset + cleaner top bar ===== */
.site-header{
  background: rgba(28, 6, 6, 0.72) !important;
  border-bottom: 1px solid rgba(168,78,47,0.22) !important;
  backdrop-filter: blur(10px);
}

.header-inner{
  min-height: 78px !important;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand-logo{
  width: 42px !important;
  height: 42px !important;
  object-fit: contain !important;
  display:block;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.brand-mark,
.logo-wrap,
.brand-logo-wrap{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.brand-text{
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.nav a{
  color: rgba(244,231,220,0.92) !important;
}

/* ===== Final clean header override ===== */
.site-header{
  background: rgba(24, 8, 8, 0.78) !important;
  border-bottom: 1px solid rgba(168,78,47,0.20) !important;
  backdrop-filter: blur(10px);
}

.header-inner{
  min-height: 76px !important;
}

.brand{
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.brand-logo{
  width: 40px !important;
  height: 40px !important;
  object-fit: contain !important;
  display: block !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.brand-mark,
.logo-wrap,
.brand-logo-wrap{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.brand-text{
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

.nav a{
  color: rgba(244,231,220,0.92) !important;
}

/* Why differentiation card */
.why-diff-card{
  margin: 22px 0 26px;
  background: linear-gradient(180deg, rgba(91,19,13,0.82) 0%, rgba(53,8,7,0.82) 100%);
  border: 1px solid rgba(168,78,47,0.30);
  border-radius: 24px;
  padding: 22px 22px 18px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.015) inset;
  max-width: 920px;
}

.why-diff-card h3{
  margin: 0 0 12px 0;
  line-height: 1.2;
}

.why-diff-card ul{
  margin: 0;
  padding-left: 18px;
}

.why-diff-card li{
  margin: 0 0 10px 0;
  line-height: 1.6;
  color: var(--text);
}

.why-diff-card li:last-child{
  margin-bottom: 0;
}

/* ===== Why refinement ===== */
.why-diff-wrap{
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 980px;
}

.why-limitations,
.why-hip-line{
  background: linear-gradient(180deg, rgba(91,19,13,0.82) 0%, rgba(53,8,7,0.82) 100%);
  border: 1px solid rgba(168,78,47,0.30);
  border-radius: 24px;
  padding: 22px 22px 18px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.015) inset;
}

.why-limitations h3{
  margin: 0 0 12px 0;
  line-height: 1.2;
}

.why-limitations ul{
  margin: 0;
  padding-left: 18px;
}

.why-limitations li{
  margin: 0 0 10px 0;
  line-height: 1.6;
  color: var(--text);
}

.why-limitations li:last-child{
  margin-bottom: 0;
}

.why-hip-line{
  text-align: center;
  padding: 20px 24px;
}

.why-hip-line p{
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text);
}

/* tighten header after previous broken overrides */
.site-header{
  background: rgba(20, 8, 8, 0.74) !important;
  border-bottom: 1px solid rgba(168,78,47,0.18) !important;
}

.header-inner{
  min-height: 74px !important;
}

.brand-logo{
  width: 38px !important;
  height: 38px !important;
}

/* ===== Why section card refinement (clean final) ===== */
.why-proof-grid{
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.why-proof-card{
  background: linear-gradient(180deg, rgba(91,19,13,0.92) 0%, rgba(53,8,7,0.92) 100%);
  border: 1px solid rgba(168,78,47,0.34);
  border-radius: 24px;
  padding: 22px 20px 18px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.015) inset;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-proof-card h3{
  margin: 0;
  line-height: 1.2;
  font-size: 1.15rem;
}

.why-proof-card ul{
  margin: 0;
  padding-left: 18px;
}

.why-proof-card li{
  margin: 0 0 9px 0;
  line-height: 1.58;
  color: var(--text);
}

.why-proof-card li:last-child{
  margin-bottom: 0;
}

.why-proof-card-hip{
  border-color: rgba(242,103,42,0.42);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.015) inset,
    0 0 24px rgba(242,103,42,0.08);
}

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

@media (max-width: 700px){
  .why-proof-grid{
    grid-template-columns: 1fr;
  }
}

/* Home anchor alignment */
#home,
#hip,
#why,
#behavior,
#architecture,
#proof,
#stack,
#industries,
#contact{
  scroll-margin-top: 96px;
}

/* ===== Final header + anchor polish ===== */

/* Keep header visible while scrolling */
.site-header{
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  background: rgba(24, 8, 8, 0.88) !important;
  border-bottom: 1px solid rgba(168,78,47,0.22) !important;
  backdrop-filter: blur(10px);
}

/* Let brand and nav coexist without overlap */
.header-inner{
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 20px !important;
  flex-wrap: wrap !important;
  min-height: 76px !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.brand{
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  min-width: 0 !important;
  flex: 0 1 auto !important;
}

.brand-text{
  min-width: 0 !important;
}

.brand-logo{
  width: 40px !important;
  height: 40px !important;
  flex: 0 0 40px !important;
}

.nav{
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  flex: 1 1 620px !important;
  flex-wrap: wrap !important;
  row-gap: 8px !important;
  column-gap: 22px !important;
}

.nav a{
  white-space: nowrap !important;
}

/* Reduce top jump when navigating to anchors */
#home,
#hip,
#why,
#behavior,
#architecture,
#proof,
#stack,
#industries,
#contact{
  scroll-margin-top: 84px !important;
}

/* Reduce hero top padding so it sits closer under the header */
.hero.section,
#home.hero.section{
  padding-top: 56px !important;
}

/* Tablet / smaller desktop */
@media (max-width: 1100px){
  .header-inner{
    align-items: flex-start !important;
  }

  .nav{
    justify-content: flex-start !important;
    flex-basis: 100% !important;
  }
}

/* Smaller screens */
@media (max-width: 760px){
  .brand-logo{
    width: 34px !important;
    height: 34px !important;
    flex-basis: 34px !important;
  }

  .brand-text{
    transform: scale(0.96);
    transform-origin: left center;
  }

  .nav{
    column-gap: 16px !important;
  }

  .hero.section,
  #home.hero.section{
    padding-top: 42px !important;
  }
}

/* ===== Brand centering polish ===== */
.brand{
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.brand-text{
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  line-height: 1.05;
}

.brand-title,
.brand-name{
  display: block !important;
  text-align: center !important;
}

.brand-subtitle,
.brand-tagline{
  display: block !important;
  text-align: center !important;
  letter-spacing: 0.34em;
}

/* Keep nav compact after removing Behavior */
.nav{
  column-gap: 20px !important;
}

/* ===== Logo final polish ===== */

/* Bigger logo */
.brand-logo{
  width: 56px !important;
  height: 56px !important;
  flex: 0 0 56px !important;

  /* remove ALL visual framing */
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;

  object-fit: contain !important;
}

/* remove any wrapper styling that adds white box */
.brand-mark,
.logo-wrap,
.brand-logo-wrap{
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* optional: subtle glow instead of box (premium feel) */
.brand-logo{
  filter: drop-shadow(0 2px 8px rgba(242,103,42,0.15));
}


/* ===== Final logo (clean gold version) ===== */
.brand-logo{
  width: 68px !important;
  height: 68px !important;
  flex: 0 0 68px !important;
  object-fit: contain !important;

  /* ensure no weird background or clipping */
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* better spacing with text */
.brand{
  align-items: center !important;
  gap: 14px !important;
}

/* ===== Pondify section ===== */

.pondify-body{
  margin-top: 16px;
  max-width: 720px;
}

.pondify-body ul{
  margin-top: 12px;
  padding-left: 18px;
}

.pondify-grid{
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 22px;
}

.pondify-card{
  background: linear-gradient(180deg, rgba(91,19,13,0.92) 0%, rgba(53,8,7,0.92) 100%);
  border: 1px solid rgba(168,78,47,0.34);
  border-radius: 24px;
  padding: 22px;
}

.pondify-card h3{
  margin-bottom: 12px;
}

.pondify-card ul{
  padding-left: 18px;
}

.pondify-tagline{
  margin-top: 26px;
  font-style: italic;
  color: var(--muted);
}

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

@media (max-width: 700px){
  .pondify-grid{
    grid-template-columns: 1fr;
  }
}

/* ===== Pondify image ===== */

.pondify-figure{
  margin: 28px 0 8px;
}

.pondify-image{
  display: block;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 24px;
  border: 1px solid rgba(168,78,47,0.28);
  box-shadow: 0 10px 40px rgba(0,0,0,0.28);
}


/* ===== Pondify visual cleanup ===== */

.pondify-body{
  margin-top: 16px;
  max-width: 760px;
}

.pondify-body p + p{
  margin-top: 14px;
}

.pondify-body ul{
  margin-top: 18px;
  margin-bottom: 0;
  max-width: 760px;
  padding: 18px 22px 18px 38px;
  background: linear-gradient(180deg, rgba(91,19,13,0.92) 0%, rgba(53,8,7,0.92) 100%);
  border: 1px solid rgba(168,78,47,0.34);
  border-radius: 24px;
}

.pondify-body li + li{
  margin-top: 8px;
}

.pondify-figure{
  margin: 30px 0 12px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(91,19,13,0.92) 0%, rgba(53,8,7,0.92) 100%);
  border: 1px solid rgba(168,78,47,0.34);
  border-radius: 28px;
}

.pondify-image{
  display: block;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 22px;
  border: 1px solid rgba(168,78,47,0.18);
  box-shadow: none;
}

@media (max-width: 700px){
  .pondify-body ul{
    padding: 16px 18px 16px 32px;
  }

  .pondify-figure{
    padding: 12px;
    border-radius: 22px;
  }

  .pondify-image{
    border-radius: 16px;
  }
}


/* ===== Pondify layout refine ===== */

.pondify-body{
  max-width: 860px;
}

.pondify-body ul{
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
}

.pondify-kicker{
  margin: 18px 0 0;
  font-style: italic;
  color: var(--muted);
}

.pondify-feature-grid{
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px 18px;
  max-width: 760px;
}

.pondify-feature-item{
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(91,19,13,0.92) 0%, rgba(53,8,7,0.92) 100%);
  border: 1px solid rgba(168,78,47,0.34);
  border-radius: 18px;
}

.pondify-figure{
  margin: 18px 0 10px;
  padding: 16px;
}

.pondify-image{
  max-width: 1160px;
}

.pondify-tagline{
  display: none;
}

@media (max-width: 700px){
  .pondify-feature-grid{
    grid-template-columns: 1fr;
  }
}


/* ===== Pondify width and alignment refine ===== */

#pondify .container{
  max-width: 1280px;
}

.pondify-body{
  max-width: 100%;
}

.pondify-feature-grid{
  margin-top: 20px;
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px 18px;
}

.pondify-feature-item{
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 16px 18px;
  background: linear-gradient(180deg, rgba(91,19,13,0.92) 0%, rgba(53,8,7,0.92) 100%);
  border: 1px solid rgba(168,78,47,0.34);
  border-radius: 20px;
}

.pondify-figure{
  margin: 22px 0 14px;
  padding: 16px;
}

.pondify-image{
  width: 100%;
  max-width: 100%;
}

.pondify-grid{
  grid-template-columns: repeat(3, minmax(0,1fr));
  align-items: stretch;
}

.pondify-card{
  height: 100%;
}

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

@media (max-width: 700px){
  .pondify-feature-grid{
    grid-template-columns: 1fr;
  }
}


/* ===== Pondify feature cleanup ===== */

.pondify-kicker{
  display: none;
}

.pondify-feature-grid{
  margin-top: 20px;
  margin-bottom: 22px;
}

.pondify-feature-item{
  position: relative;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px 20px 16px 34px;
  font-weight: 500;
}

.pondify-feature-item::before{
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 214, 170, 0.9);
  transform: translateY(-50%);
  box-shadow: 0 0 10px rgba(255, 170, 110, 0.35);
}

@media (max-width: 700px){
  .pondify-feature-item{
    justify-content: flex-start;
    text-align: left;
    padding: 16px 18px 16px 34px;
  }
}

/* ===== Mobile responsiveness fix ===== */

@media (max-width: 768px){

  /* Container padding */
  .container{
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Hero */
  .hero h1{
    font-size: 34px;
    line-height: 1.2;
  }

  .hero p{
    font-size: 15px;
  }

  /* Section spacing */
  .section{
    padding-top: 48px;
    padding-bottom: 48px;
  }

  /* Grid collapse (global) */
  .grid{
    grid-template-columns: 1fr !important;
    gap: 18px;
  }

  /* Pondify feature grid */
  .pondify-feature-grid{
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  /* Pondify cards */
  .pondify-grid{
    grid-template-columns: 1fr !important;
  }

  /* Cards padding */
  .card,
  .pondify-card{
    padding: 18px;
  }

  /* Image scaling */
  .pondify-figure{
    padding: 10px;
  }

  .pondify-image{
    border-radius: 14px;
  }

  /* Typography tightening */
  h2{
    font-size: 28px;
    line-height: 1.2;
  }

  h3{
    font-size: 18px;
  }

  p{
    font-size: 14px;
  }

}

/* ===== Mobile stronger fix ===== */

@media (max-width: 768px){

  .site-header{
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-wrap{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .brand{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .brand-logo{
    width: 34px;
    height: auto;
  }

  .brand-name{
    font-size: 18px;
    line-height: 1;
  }

  .brand-tag{
    font-size: 10px;
    line-height: 1.2;
  }

  .nav{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    justify-content: flex-start;
  }

  .nav a{
    font-size: 12px;
    line-height: 1.25;
  }

  .container{
    padding-left: 14px;
    padding-right: 14px;
  }

  .section{
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .hero{
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .hero-grid{
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .hero-copy{
    max-width: 100%;
  }

  .eyebrow,
  .pill{
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .hero h1{
    font-size: 22px !important;
    line-height: 1.04 !important;
    max-width: 11ch;
    margin-bottom: 16px;
  }

  h2{
    font-size: 22px !important;
    line-height: 1.08 !important;
    max-width: 12ch;
  }

  .subhead{
    font-size: 14px;
    line-height: 1.35;
  }

  p,
  li{
    font-size: 14px;
    line-height: 1.55;
  }

  .grid,
  .grid-2,
  .grid-3,
  .pondify-grid,
  .pondify-feature-grid{
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .card,
  .pondify-card,
  .pondify-feature-item{
    padding: 16px !important;
    border-radius: 18px;
  }

  .pondify-feature-item{
    min-height: auto;
    justify-content: flex-start;
    text-align: left;
    padding-left: 34px !important;
  }

  .pondify-figure{
    padding: 8px !important;
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }

  .pondify-image,
  .architecture-image{
    border-radius: 12px !important;
  }
}

/* ===== Mobile targeted fix ===== */

@media (max-width: 768px){

  /* Header / nav */
  .site-header .nav-wrap{
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
  }

  .site-header .brand{
    width: 100%;
  }

  .site-header .nav{
    width: 100%;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px !important;
    align-items: start;
  }

  .site-header .nav a{
    font-size: 12px !important;
    line-height: 1.25 !important;
    white-space: nowrap;
  }

  .brand-logo{
    width: 32px !important;
    height: auto !important;
  }

  .brand-name{
    font-size: 18px !important;
  }

  .brand-tag{
    font-size: 10px !important;
  }

  /* Hero */
  .hero h1{
    font-size: 18px !important;
    line-height: 1.05 !important;
    max-width: 10ch !important;
  }

  .hero p{
    font-size: 14px !important;
    line-height: 1.55 !important;
  }

  h2{
    font-size: 20px !important;
    line-height: 1.08 !important;
    max-width: 11ch !important;
  }

  /* All major grids collapse */
  .grid,
  .grid-2,
  .grid-3,
  .grid.grid-3,
  .grid.align-cards,
  .grid.grid-3.align-cards,
  #pondify .pondify-grid,
  #pondify .pondify-feature-grid{
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  /* Cards */
  .card,
  .pondify-card,
  .pondify-feature-item{
    width: 100% !important;
    padding: 16px !important;
    border-radius: 18px !important;
  }

  /* Pondify image */
  #pondify .pondify-figure{
    padding: 8px !important;
    margin: 16px 0 !important;
  }

  #pondify .pondify-image{
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 12px !important;
  }
}
