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

:root {
  --bg: #F3F0E8;
  --fg: #111;
  --ink: #07152F;
  --muted: #777;
  --line: #e6e5e2;
  --surface: #F3F0E8;
  --surface2: #e3e2df;
  --accent: #b15f2c;
  --accent2: #cf8047;
  --gold: #c99656;
  --green: #28594c;
  --shell: 88rem;
  --card: 2rem;
  --card-sm: 1.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --soft: cubic-bezier(0.16, 1, 0.3, 1);
  --hover: cubic-bezier(0.2, 0.8, 0.2, 1);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--fg);
  font-family:
    Onest,
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
   display: flex;
  align-items: center;
  justify-content: space-between;
}
button,
input,
textarea {
  font: inherit;
  color: inherit;
}
button {
  border: 0;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
ul {
  list-style: none;
}
img {
  display: block;
  max-width: 100%;
}
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.12em;
}
.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.shell {
  max-width: var(--shell);
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 200;
  border-radius: 0.875rem;
  background: #07152F;
  color: #fff;
  padding: 0.5rem 1rem;
  transform: translateY(-200%);
}
.skip-link:focus {
  position: fixed;
  transform: translateY(0);
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
@media (max-width: 1920px) {
  html {
    font-size: 0.833333vw;
  }
}
@media (max-width: 1440px) {
  html {
    font-size: 1.111111vw;
  }
}
@media (max-width: 1024px) {
  html {
    font-size: 1.5625vw;
  }
}
@media (max-width: 640px) {
  html {
    font-size: 4.444444vw;
  }
}
.loader {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  border-radius: 0 0 2rem 2rem;
  background: var(--ink);
  color: #fff;
  transition:
    transform 0.75s var(--ease),
    opacity 0.45s ease;
}
.loader.done {
  transform: translateY(-100%);
}
.loader div {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.loader strong {
  font-size: 1.875rem;
}
.loader span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
}
.loader p {
  width: min(22rem, 72vw);
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  overflow: hidden;
}
.loader i {
  display: block;
  width: 0;
  height: 100%;
  background: var(--accent2);
  transition: width 0.1s ease;
}
.loader small {
  width: min(22rem, 72vw);
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.loader em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.85);
  font-variant-numeric: tabular-nums;
}
.site-header {
  position: absolute;
  inset-inline: 0;
  top: 0;
  z-index: 90;
  opacity: 0;
  transform: translateY(-14px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);

    /* always-on glass, readable on both dark hero and light sections */
  /* background: rgba(132, 134, 142, 0.45); */
  /* backdrop-filter: blur(12px); */
  /* -webkit-backdrop-filter: blur(12px); */
}
/* .site-header.scrolled {
  background: rgba(5, 7, 18, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
} */
.is-ready .site-header,
.ready.show {
  opacity: 1;
  transform: translateY(0);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem;
}


.desktop-nav {
  display: none;
}
.desktop-nav ul {
  display: flex;
  gap: 1.4rem;
  font-size: 0.875rem;
  font-weight: 600;
}
.desktop-nav a {
  opacity: 0.7;
  transition: 0.25s;
}
.desktop-nav a.active,
.desktop-nav a:hover {
  opacity: 1;
  color: var(--accent);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.clock {
  display: none;
  border: 1px solid rgba(230, 229, 226, 0.8);
  border-radius: 0.875rem;
  background: rgba(255, 255, 255, 0.45);
  padding: 0.55rem 0.8rem;
  font-size: 0.75rem;
  backdrop-filter: blur(8px);
}
.menu-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(230, 229, 226, 0.8);
  border-radius: 0.875rem;
  background: rgba(255, 255, 255, 0.45);
  padding: 0.55rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  transition:
    transform 0.35s var(--hover),
    background 0.25s;
}
.menu-button:hover {
  transform: scale(1.04);
  background: rgba(255, 255, 255, 0.75);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(17, 17, 17, 0.68);
  font-size: 0.875rem;
  font-weight: 700;
}
.eyebrow:before {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 9999px;
  background: rgba(17, 17, 17, 0.5);
}
.eyebrow.light {
  color: rgba(255, 255, 255, 0.7);
}
.eyebrow.light:before {
  background: rgba(255, 255, 255, 0.6);
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  transition: transform 0.35s var(--hover);
}
.close-button{
  padding: 5px;
}
.pill:hover {
  transform: scale(1.04);
}
.pill span {
  padding-left: 1.5rem;
}
.pill b {
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border-radius: 9999px;
  margin: 0.375rem;
  font-weight: 400;
}


.pill-dark {
  background: var(--ink);
  color: #fff;
}
.pill-dark b {
  background: #fff;
  color: var(--ink);
}
.pill-light {
  background: #fff;
  color: var(--ink);
}
.pill-light b,
.pill-outline b {
  background: var(--ink);
  color: #F3F0E8;
}
.pill-outline {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(6px);
}
.line-title {
  font-size: clamp(2.25rem, 5.2vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
  font-weight: 700;
}
.line-title > span {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}
.line-title > span > span {
  display: block;
  transform: translateY(105%);
  opacity: 0;
  transition:
    transform 0.9s cubic-bezier(0.215, 0.61, 0.355, 1),
    opacity 0.7s ease;
}
.show.line-title > span > span,
.line-title.show > span > span {
  transform: translateY(0);
  opacity: 1;
}
.line-title > span:nth-child(2) > span {
  transition-delay: 0.1s;
}
.line-title > span:nth-child(3) > span {
  transition-delay: 0.2s;
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.8s var(--soft),
    transform 0.8s var(--soft);
}
.reveal.show {
  opacity: 1;
  transform: translateY(0);
}
.liquid-wrap {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #ffff;
    /* aspect-ratio: 16 / 9; */
}

.liquid-wrap > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.liquid-wrap > canvas {
  z-index: 1;
  pointer-events: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.62),
      rgba(255, 255, 255, 0.15) 46%,
      rgba(255, 255, 255, 0.45)
    ),
    linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.36),
      rgba(255, 255, 255, 0.04) 40%,
      rgba(255, 255, 255, 0.38)
    );
  pointer-events: none;
}
.watermark {
  position: absolute;
  inset-inline: 0;
  bottom: 3rem;
  z-index: 2;
  text-align: center;
  font-page-herosize: 2.1rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.28);
  pointer-events: none;
  white-space: nowrap;
}
.rating-row {
    display: flex;
    align-items: center;
    gap: .75rem;
    --reveal-y: 10px;
}

.stars {
    display: inline-flex;
    align-items: center;
    gap: .125rem;
    color: #b15f2c;
    font-size: 1rem;
}

.rating-copy {
    color: rgba(17, 17, 17, .7);
    font-size: .875rem;
    font-weight: 500
}

.home-hero {
  min-height: 80lvh;
  border-radius: 0 0 2rem 2rem;
}

.home-grid {
  position: relative;
  z-index: 5;
  min-height: 95lvh;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 7rem 1.25rem 5rem;
}
.hero-left {
  align-self: center;
  display: grid;
  gap: 1.5rem;
  max-width: 42rem;
}
.hero-right {
  display: grid;
  gap: 1.5rem;
  max-width: 42rem;
}
.hero-copy {
  max-width: 38rem;
  color: rgba(17, 17, 17, 0.72);
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 600;
  opacity: 0;
  transform: translateY(12px);
  transition: 0.8s var(--soft);
}
.hero-copy.show,
.hero-actions.show,
.partners.show,
.hero-panel.show,
.hero-status.show {
  opacity: 1;
  transform: translateY(0);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  opacity: 0;
  transform: translateY(12px);
  transition: 0.8s var(--soft);
}
.hero-panel {
  align-self: center;
  width: min(24rem, 100%);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.76);
  padding: 0.55rem;
  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(14px);
  opacity: 0;
  transform: translateY(16px) scale(0.96);
  transition: 0.8s var(--soft);
}
.carousel-main {
  width: 100%;
  display: flex;
  gap: 0.65rem;
  text-align: left;
}
.panel-icon {
  width: 6rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 0.875rem;
  background: #07152F;
  color: var(--accent2);
  font-size: 2rem;
}
.panel-copy {
  flex: 1;
  display: grid;
  align-content: center;
  gap: 0.4rem;
  border-radius: 0.875rem;
  background: rgba(241, 240, 238, 0.8);
  padding: 0.75rem;
}
.panel-copy small {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(17, 17, 17, 0.45);
  font-weight: 700;
}
.panel-copy strong {
  font-size: 0.95rem;
  line-height: 1.25;
}
.carousel-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0.15rem 0;
}
.carousel-nav span:first-child {
  display: flex;
  gap: 0.25rem;
}
.carousel-nav i {
  display: block;
  width: 0.38rem;
  height: 0.25rem;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.22);
  transition: 0.3s;
}
.carousel-nav i.active {
  width: 1rem;
  background: rgba(17, 17, 17, 0.72);
}
.carousel-nav button {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--line);
  margin-left: 0.3rem;
}
.carousel-nav button:first-child .icon {
  transform: rotate(180deg);
}
.partners {
  z-index: 5;
  align-self: start;
  max-width: 28rem;
  opacity: 0;
  transform: translateY(14px);
  transition: 0.8s var(--soft);
}
.partners p {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0,0);
  margin-bottom: 0.75rem;
}
.partners ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem 1rem;
}
.partners li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 650;
  color: rgba(17, 17, 17, 0.72);
}
.partners .icon {
  color: rgba(17, 17, 17, 0.38);
}
.hero-status {
  position: relative;
  /* margin-top: 10rem;; */
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 1rem;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
  padding: 1rem 1.25rem;
  color: rgba(17, 17, 17, 0.6);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 800;
  opacity: 0;
  transition: 0.8s;
}
.page-hero {
  min-height: 72lvh;
  border-radius: 0 0 2rem 2rem;
}
.contact-page-hero{
  /* min-height: 95vh; */
}
.page-hero-inner {
  position: relative;
  z-index: 5;
  min-height: 72lvh;
  display: grid;
  align-content: center;
  gap: 1.5rem;
  padding: 7rem 1.25rem 5rem;
}
.page-hero .line-title {
  max-width: 13ch;
}
.page-hero .hero-copy {
  max-width: 42rem;
}
.about-block,
.work-section,
.services-list,
.team-section,
.client-section,
.drag-section,
.plans-section,
.tools-section,
.contact-page {
  background: #F3F0E8;
}
.split {
  display: grid;
  gap: 3rem;
  padding: 5rem 1.25rem;
}
.image-card {
  border-radius: 2rem;
  /* min-height: 4rem; */
  overflow: hidden;
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.statement {
  display: grid;
  align-content: center;
  gap: 1.25rem;
}
.statement h2,
.stats-panel h2,
.footer-cta h2 {
  font-size: clamp(1.8rem, 3.3vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}
.statement p:not(.eyebrow) {
  color: rgba(17, 17, 17, 0.62);
  line-height: 1.7;
  font-weight: 550;
}
.create-band {
  padding: 2.5rem 0;
}
.pill-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  padding-inline: 1.25rem;
}
.pill-grid{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:1rem;
  padding-inline:1.25rem;
}
.pill-grid span:not(:has(svg)){
  height:6rem;
  width:100%;
  max-width:22rem;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:#07152F;
  color:#fff;
  font-size:1.8rem;
  font-weight:750;
  transition:transform .35s var(--hover);
}
.pill-grid span:not(:has(svg)):hover{
  transform:scale(1.04);
}
.pill-grid span:nth-child(3){
  background:linear-gradient(135deg,var(--accent2),#97501f);
}

/* arrow connectors: no box, just the icon */
.pill-grid span:has(svg){
  height:auto;
  width:auto;
  background:none;
  padding:0;
  color:rgba(17,17,17,.35);
}
.pill-grid span:has(svg) .icon{
  width:1.4rem;
  height:1.4rem;
  transform:rotate(90deg); /* vertical on mobile since pills stack */
}
.section-head {
  display: grid;
  gap: 1rem;
  padding: 5rem 1.25rem 2rem;
}
.section-title {
  max-width: 18ch;
  font-size: clamp(2.25rem, 4vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.035em;
}
.work-grid,
.team-grid,
.client-grid,
.plans-grid,
.tools-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  padding: 0 1.25rem 5rem;
}
.work-card {
  position: relative;
  min-height: 23rem;
  overflow: hidden;
  border-radius: 2rem;
  padding: 1.5rem;
}
.card-dark {
  background: #07152F;
  color: #fff;
}
.card-light {
  background: var(--surface);
  color: #111;
  box-shadow: inset 0 0 0 1px var(--line);
}
.work-card:hover {
  transform: translateY(-7px) scale(1.008);
  transition: transform 0.35s var(--hover);
}
.work-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 800;
}
.card-light .work-meta {
  color: rgba(17, 17, 17, 0.45);
}
.work-mark {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.16);
  pointer-events: none;
  margin-bottom: 7rem;
}
.work-mark > .icon{
  color: #AC622E
}
.card-light .work-mark {
  color: rgba(177, 95, 44, 0.18);
}
.work-bottom {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
}
.work-bottom h3 {
  font-size: 1.65rem;
}
.work-bottom p {
  margin-top: 0.6rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
}
.card-light .work-bottom p {
  color: rgba(17, 17, 17, 0.6);
}
.services-list .shell {
  padding: 5rem 1.25rem;
}
.services-list ul {
  margin-top: 3rem;
}
.service-row {
  border-top: 1px solid var(--line);
}
.service-row:first-child {
  border-top: 0;
}
.service-row a {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 1.25rem;
  padding: 1.5rem;
  background: rgba(241, 240, 238, 0);
  transition: 0.35s var(--soft);
}
.service-row a:hover {
  background: var(--surface);
  padding-left: 2rem;
}
.service-row span {
  width: 2rem;
  color: rgba(17, 17, 17, 0.4);
  font-weight: 700;
}
.service-row h3 {
  flex: 1;
  font-size: 1.45rem;
}
.service-row p {
  display: none;
  max-width: 24rem;
  color: rgba(17, 17, 17, 0.58);
  line-height: 1.5;
}
.service-row b {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #07152F;
  color: #fff;
}
.stats-section {
  padding: 0 1.25rem 5rem;
  background: #F3F0E8;
}
.stats-panel {
  border-radius: 2rem;
  background: #07152F;
  color: #fff;
  padding: 3rem 1.5rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.stat strong {
  font-size: 3rem;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat p {
  margin-top: 0.6rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
}
.contact-band {
  padding: 0 1.25rem 5rem;
}
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: space-between;
  border-radius: 2rem;
  background: #07152F;
  color: rgba(255, 255, 255, 0.42);;
  padding: 3rem 1.5rem;
}
.contact-card h2 {
  max-width: 18ch;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.035em;
  margin-top: 1rem;
}
.team-card,
.client-card,
.plan-card,
.tool-card {
  border-radius: 1.5rem;
  background: var(--surface);
  padding: 1.5rem;
  box-shadow: inset 0 0 0 1px var(--line);
}
.team-card h3,
.client-card h3,
.plan-card h3,
.tool-card h3 {
  font-size: 1.35rem;
}
.team-card p,
.client-card p,
.tool-card p {
  margin-top: 0.7rem;
  color: rgba(17, 17, 17, 0.62);
  line-height: 1.6;
}
.team-card a {
  display: inline-block;
  margin-top: 1rem;
  color: var(--accent);
  font-weight: 700;
}
.team-card span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(17, 17, 17, 0.55);
}
.role,
.tool-card small,
.plan-card p {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
  color: var(--accent) !important;
}
.drag-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(18rem, 26rem);
  gap: 1.25rem;
  overflow-x: auto;
  cursor: grab;
  scrollbar-width: none;
  padding-bottom: 1rem;
}
.drag-rail::-webkit-scrollbar {
  display: none;
}
.plans-grid {
  align-items: stretch;
}
.plan-card {
  display: grid;
  gap: 1rem;
}
.plan-card strong {
  font-size: 2.6rem;
  letter-spacing: -0.035em;
}
.plan-card ul {
  display: grid;
  gap: 0.65rem;
  color: rgba(17, 17, 17, 0.65);
  line-height: 1.4;
}
.plan-card li:before {
  content: "";
  display: inline-block;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  background: var(--accent);
  margin-right: 0.55rem;
  vertical-align: middle;
}
.plan-card.featured {
  background: #07152F;
  color: #fff;
}
.plan-card.featured ul {
  color: rgba(255, 255, 255, 0.66);
}
.tool-card button {
  margin-top: 1.25rem;
  color: var(--accent);
  font-weight: 800;
}
.security-note {
  padding: 0 1.25rem 5rem;
}
.security-note .shell {
  display: flex;
  gap: 1rem;
  border-radius: 1.5rem;
  background: #07152F;
  color: #fff;
  padding: 1.5rem;
}
.security-note .icon {
  font-size: 1.5rem;
  color: var(--accent2);
  flex: 0 0 auto;
}
.security-note p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}
.contact-layout {
  display: grid;
  gap: 2rem;
  padding: 5rem 1.25rem;
}
.large-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.large-form label,
.modal label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(17, 17, 17, 0.5);
}
input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.875rem;
  background: white;
  padding: 0.9rem 1rem;
  outline: 0;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.95rem;
  font-weight: 600;
}
textarea {
  resize: vertical;
}
input:focus,
textarea:focus {
  border-color: rgba(17, 17, 17, 0.38);
  background: #fff;
}
.full {
  grid-column: 1/-1;
}
.form-status {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 700;
}
.contact-details {
  border-radius: 2rem;
  background: #07152F;
  color: #fff;
  padding: 2rem;
}
.contact-details h2 {
  margin-top: 1.5rem;
}
.contact-details h2:first-child {
  margin-top: 0;
}
.contact-details p,
.contact-details a {
  display: block;
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}
.safe-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1rem;
}
.site-footer {
  position: relative;
  overflow: hidden;
  border-radius: 2rem 2rem 0 0;
  background: #07152F;
  color: rgba(255, 255, 255, 0.42);;
;
}
.footer-inner {
  position: relative;
  z-index: 2;
  padding: 5rem 1.25rem 2.5rem;
}
.footer-cta {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 3.5rem;
}
.footer-cols {
  display: grid;
  column-gap: 8rem;
  row-gap: 2rem;
  padding: 3.5rem 0;
  align-items: start;
  width: 100%;
}

.footer-cols h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 1rem;
}
.footer-cols p,
.footer-cols li,
.footer-cols a {
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.7;
}
.footer-cols ul {
  display: grid;
  gap: 0.55rem;
}
.legal {
  display: flex;
  /* flex-direction: column; */
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.75rem;
}
.footer-watermark {
  position: absolute;
  inset-inline: 0;
  bottom: -1rem;
  text-align: center;
  font-size: 13rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, 0.045);
  z-index: 0;
}
.nav-overlay,
.modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  background: #07152F;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--soft);
}
.nav-overlay.open,
.modal.open {
  opacity: 1;
  pointer-events: auto;
}
.nav-overlay[hidden],
.modal[hidden] {
  display: none;
}
.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
}
.nav-top .brand small {
  color: rgba(255, 255, 255, 0.45);
}
.nav-top button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.875rem;
  padding: 0.6rem 1rem;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 800;
}
.nav-body {
  min-height: 70vh;
  display: grid;
  align-content: center;
  padding: 1.25rem;
}
.nav-body ul {
  display: grid;
  gap: 0.25rem;
}
.nav-body a {
  display: flex;
  gap: 1rem;
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.72);
  transform: translateY(1rem);
  opacity: 0;
  transition: 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: start;
}
.nav-body li:nth-child(1) a {
  transition-delay: 80ms;
}
.nav-body li:nth-child(2) a {
  transition-delay: 125ms;
}
.nav-body li:nth-child(3) a {
  transition-delay: 170ms;
}
.nav-body li:nth-child(4) a {
  transition-delay: 215ms;
}
.nav-body li:nth-child(5) a {
  transition-delay: 260ms;
}
.nav-body li:nth-child(6) a {
  transition-delay: 305ms;
}
.nav-body li:nth-child(7) a {
  transition-delay: 350ms;
}
.nav-overlay.open .nav-body a {
  opacity: 1;
  transform: translateY(0);
}
.nav-body span {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.32);
  letter-spacing: 0;
}
.nav-body a:hover {
  color: #fff;
}
.nav-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
}
.nav-bottom a {
  color: #fff;
}
.modal {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: rgba(17, 17, 17, 0.32);
  backdrop-filter: blur(14px);
  padding: 1rem;
}
.modal-panel {
  position: relative;
  width: min(32rem, 100%);
  border-radius: 2rem;
  max-height:calc(100dvh - 2rem);
  overflow-y:auto;
  -webkit-overflow-scrolling:touch;
  background: #fff;
  color: #111;
  padding: 1.5rem;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.28);
  transform: translateY(28px);
  transition: 0.4s var(--soft);
}
.modal.open .modal-panel {
  transform: translateY(0);
}

.contact-page-hero{
  min-height: 95vh;
}
.modal-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--surface);
}
.modal h2 {
  padding-right: 2.5rem;
  margin: 0.6rem 0 1.2rem;
  font-size: 1.6rem;
}
.modal form {
  display: grid;
  gap: 1rem;
}
.modal-success {
  display: flex;
  flex-direction: column;
  place-items: center;  
  text-align: center;
  padding: 2rem;
}
.modal-success > .icon {
  font-size: 3rem;
  color: var(--accent);
}
.modal.success .modal-form {
  display: none;
}
.modal.success .modal-success {
  display: grid !important;
}
.partners{
  display: none;
}
@media (min-width: 640px) {
  .logo img{
  width: 7rem;
}
 
  .header-inner {
    padding: 1.5rem 2rem;
  }
  .home-grid,
  .page-hero-inner,
  .split,
  .section-head,
  .work-grid,
  .team-grid,
  .client-grid,
  .plans-grid,
  .tools-grid,
  .services-list .shell,
  .contact-layout,
  .footer-inner {
    padding-inline: 2rem;
  }
  .pill-grid {
    grid-template-columns: repeat(5, 1fr);
    padding-inline: 2rem;
  }
  .pill-grid span {
    height: 10rem;
    font-size: 2.2rem;
  }
  .hero-status {
    padding-inline: 2rem;
  }
  .contact-card {
    padding: 4rem 2rem;
  }
  .modal {
    align-items: center;
  }
  .modal-panel {
    padding: 2rem;
  }
  .large-form {
    grid-template-columns: 1fr 1fr;
  }
  .nav-top,
  .nav-body,
  .nav-bottom {
    padding-inline: 2rem;
  }
  .nav-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
  .clock {
    display: inline-block;
  }
  .partners{
  display: none;
}
}
@media (min-width: 768px) {
  
.partners{
  margin-top: 0rem;
}

.watermark {
  font-size: 6.5rem; 
   bottom: 7rem;
}
  .work-grid,
  .client-grid,
  .plans-grid,
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-cols {
  grid-template-columns: repeat(4, 1fr);
  }
  

  .legal {
    flex-direction: row;
    justify-content: space-between;
  }
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .pill-grid{
    flex-direction:row;
    justify-content:center;
    gap:1.25rem;
  }
  .pill-grid span:has(svg) .icon{
    transform:rotate(0deg); /* horizontal once pills sit in a row */
  }
  .partners{
  display: none;
}
}
@media (min-width: 1024px) {
  .desktop-nav {
    display: block;
  }
  .hero-status{
    margin-top: 10rem;
  }
  
.contact-page-hero{
  min-height: 72vh;
}

.home-hero{
  min-height: 120vh;
}
.partners{
  display: none;
}
.image-card {
  min-height: 24rem;
}

.watermark {
  font-size: 10.5rem;
  /* bottom: -2rem;  */
}

  .home-grid {
    grid-template-columns: 7fr 5fr;
    gap: 2.5rem;
    padding-top: 9rem;
  }
  .hero-panel {
    justify-self: end;
    width: 22rem;
  }
  .partners {
    grid-column: 2;
    justify-self: end;
    margin-top: 25rem; 
  }
  .partners ul {
    grid-template-columns: repeat(3, 1fr);
  }
  .split {
    grid-template-columns: 1fr 1fr;
    padding-block: 7rem;
  }
  .page-hero-inner {
    padding-top: 9rem;
  }
  .service-row p {
    display: block;
  }
  .work-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .work-grid .work-card {
    min-height: 26rem;
  }
  .contact-layout {
    grid-template-columns: 1.4fr 0.8fr;
  }
  .footer-cta {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
  .stats-panel {
    padding: 4rem;
  }
  .contact-card {
    flex-direction: row;
    align-items: flex-end;
    padding-inline: 4rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .liquid-wrap canvas {
    display: none !important;
  }
}

/* Stackform fluid recreation overrides */
:root {
  --bg: #eef2f4;
  --fg: #11131a;
  --ink: #050712;
  --muted: #6a717d;
  --line: #d9dee6;
  --surface: #ffffff;
  --surface2: #dde4ec;
  --accent: #d66f42;
  --accent2: #5de6ff;
  --gold: #d4a15d;
  --green: #244f46;
}

body {
  background:
    linear-gradient(180deg, #eef2f4 0%, #f7f8fa 28%, #e9eef3 100%);
}

.site-header {
  color: #fff;
}

.header-inner {
  padding-top: 1.1rem;
}
.logo img{
  width: 6rem;
}
.brand {
  position: relative;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.65rem;
  color: currentColor;
  font-size: 0;
}

.brand::before {
  content: "";
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 0.72rem;
  background:
    linear-gradient(135deg, rgba(93, 230, 255, 0.95), rgba(214, 111, 66, 0.95)),
    #fff;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.34) inset,
    0 16px 45px rgba(48, 196, 255, 0.22);
}

.brand::after {
  content: "Stackform Labs";
  color: currentColor;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.loader {
  background:
    radial-gradient(circle at 30% 20%, rgba(93, 230, 255, 0.22), transparent 28rem),
    radial-gradient(circle at 74% 66%, rgba(214, 111, 66, 0.22), transparent 24rem),
    #050712;
}

.loader div {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
}

.loader i {
  background: linear-gradient(90deg, var(--accent2), #546bff, var(--accent));
}

.desktop-nav a {
  color: rgba(255, 255, 255, 0.72);
}

.desktop-nav a.active,
.desktop-nav a:hover {
  color: #fff;
}

.menu-button,
.clock {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.menu-button:hover {
  background: rgba(255, 255, 255, 0.16);
}

.liquid-wrap {
  background: #04050c;
}

.liquid-wrap::before,
.liquid-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.liquid-wrap > img {
  opacity: 0;
}

.liquid-wrap > canvas {
  display: block;
  z-index: 0;
  object-fit: fill;
}

.home-hero.liquid-wrap > img {
  opacity: 0;
}

.home-hero.liquid-wrap > canvas {
  z-index: 0;
}

.page-hero.liquid-wrap > img {
  opacity: 1;
  filter: saturate(0.92) contrast(1.08) brightness(0.74);
  transform: scale(1.02);
}

.page-hero.liquid-wrap > canvas {
  z-index: 1;
  object-fit: cover;
  mix-blend-mode: normal;
}

.hero-shade {
  z-index: 2;
  background:
    radial-gradient(110% 94% at 48% 44%, rgba(4, 5, 12, 0.72) 0%, rgba(4, 5, 12, 0.64) 30%, rgba(4, 5, 12, 0.32) 64%, rgba(4, 5, 12, 0.16) 100%),
    linear-gradient(90deg, rgba(4, 5, 12, 0.78), rgba(4, 5, 12, 0.08) 48%, rgba(4, 5, 12, 0.64));
}

body[data-page="index.html"] .liquid-wrap::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 74% 24%, rgba(93, 230, 255, 0.18), transparent 18rem),
    radial-gradient(circle at 18% 78%, rgba(214, 111, 66, 0.14), transparent 20rem);
  background-size: 5.5rem 5.5rem, 5.5rem 5.5rem, auto, auto;
  opacity: 0.58;
}

body[data-page="index.html"] .liquid-wrap::after {
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, 0.08) 42.2% 42.8%, transparent 43% 100%),
    radial-gradient(70% 70% at 50% 48%, transparent 0 52%, rgba(255, 255, 255, 0.08) 52.2% 52.8%, transparent 53%);
  opacity: 0.42;
}

body[data-page="about.html"] .liquid-wrap {
  background: #08080f;
}

body[data-page="about.html"] .liquid-wrap::before {
  background:
    radial-gradient(circle at 24% 30%, rgba(255, 168, 92, 0.34) 0 0.28rem, transparent 0.34rem),
    radial-gradient(circle at 62% 18%, rgba(93, 230, 255, 0.18) 0 0.22rem, transparent 0.28rem),
    radial-gradient(circle at 78% 66%, rgba(255, 168, 92, 0.22) 0 0.26rem, transparent 0.32rem),
    radial-gradient(circle at 38% 74%, rgba(255, 255, 255, 0.16) 0 0.18rem, transparent 0.24rem),
    linear-gradient(128deg, transparent 0 20%, rgba(255, 168, 92, 0.18) 20.1% 20.35%, transparent 20.55% 100%),
    linear-gradient(24deg, transparent 0 36%, rgba(93, 230, 255, 0.13) 36.1% 36.35%, transparent 36.55% 100%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 4.75rem);
  opacity: 0.82;
}

body[data-page="about.html"] .liquid-wrap::after {
  background:
    radial-gradient(40% 58% at 22% 50%, rgba(255, 168, 92, 0.16), transparent 72%),
    linear-gradient(90deg, rgba(8, 8, 15, 0.9), transparent 44%, rgba(8, 8, 15, 0.72));
}

body[data-page="about.html"] .page-hero .hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 8, 15, 0.84), rgba(8, 8, 15, 0.28) 44%, rgba(8, 8, 15, 0.68)),
    radial-gradient(80% 80% at 34% 50%, rgba(8, 8, 15, 0.72), rgba(8, 8, 15, 0.18) 58%, rgba(8, 8, 15, 0.46));
}

body[data-page="services.html"] .liquid-wrap {
  background: #030812;
}

body[data-page="services.html"] .liquid-wrap::before {
  background:
    linear-gradient(rgba(93, 230, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(93, 230, 255, 0.1) 1px, transparent 1px),
    linear-gradient(135deg, transparent 0 48%, rgba(93, 230, 255, 0.18) 48.1% 48.4%, transparent 48.6% 100%),
    radial-gradient(circle at 80% 24%, rgba(67, 92, 255, 0.24), transparent 18rem),
    radial-gradient(circle at 64% 70%, rgba(93, 230, 255, 0.16), transparent 16rem);
  background-size: 4rem 4rem, 4rem 4rem, auto, auto, auto;
  opacity: 0.68;
}

body[data-page="services.html"] .liquid-wrap::after {
  background:
    linear-gradient(90deg, rgba(3, 8, 18, 0.9), rgba(3, 8, 18, 0.28) 48%, rgba(3, 8, 18, 0.76)),
    repeating-linear-gradient(90deg, transparent 0 8rem, rgba(255, 255, 255, 0.07) 8rem 8.08rem, transparent 8.08rem 15rem);
}

body[data-page="services.html"] .page-hero .hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 8, 18, 0.86), rgba(3, 8, 18, 0.24) 46%, rgba(3, 8, 18, 0.7)),
    radial-gradient(68% 80% at 30% 48%, rgba(3, 8, 18, 0.68), rgba(3, 8, 18, 0.18) 64%, rgba(3, 8, 18, 0.42));
}

body[data-page="clients.html"] .liquid-wrap {
  background: #070612;
}

body[data-page="clients.html"] .liquid-wrap::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 22% 68%, rgba(214, 111, 66, 0.2), transparent 18rem),
    radial-gradient(circle at 80% 28%, rgba(165, 109, 255, 0.24), transparent 22rem);
  background-size: 14rem 9rem, 14rem 9rem, auto, auto;
  opacity: 0.72;
}

body[data-page="clients.html"] .liquid-wrap::after {
  background:
    linear-gradient(115deg, transparent 0 8%, rgba(255, 255, 255, 0.08) 8.2% 19%, transparent 19.2% 100%),
    linear-gradient(115deg, transparent 0 62%, rgba(214, 111, 66, 0.12) 62.2% 70%, transparent 70.2% 100%),
    radial-gradient(80% 70% at 50% 50%, transparent 0 46%, rgba(255, 255, 255, 0.07) 46.4% 47%, transparent 47.4%);
  opacity: 0.55;
}

body[data-page="clients.html"] .page-hero .hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 6, 18, 0.82), rgba(7, 6, 18, 0.24) 48%, rgba(7, 6, 18, 0.68)),
    radial-gradient(72% 82% at 34% 48%, rgba(7, 6, 18, 0.7), rgba(7, 6, 18, 0.14) 62%, rgba(7, 6, 18, 0.42));
}

body[data-page="plans.html"] .liquid-wrap {
  background: #0b070d;
}

body[data-page="plans.html"] .liquid-wrap::before {
  background:
    repeating-radial-gradient(circle at 72% 42%, rgba(255, 178, 97, 0.16) 0 1px, transparent 1px 4.2rem),
    linear-gradient(90deg, transparent 0 18%, rgba(255, 178, 97, 0.18) 18.2% 18.4%, transparent 18.6% 100%),
    linear-gradient(0deg, transparent 0 64%, rgba(255, 255, 255, 0.08) 64.2% 64.35%, transparent 64.55% 100%),
    radial-gradient(circle at 76% 34%, rgba(255, 178, 97, 0.24), transparent 20rem);
  opacity: 0.7;
}

body[data-page="plans.html"] .liquid-wrap::after {
  background:
    linear-gradient(90deg, rgba(11, 7, 13, 0.88), rgba(11, 7, 13, 0.26) 52%, rgba(11, 7, 13, 0.8)),
    radial-gradient(32rem 32rem at 72% 42%, transparent 0 42%, rgba(255, 255, 255, 0.12) 42.25% 42.65%, transparent 42.9%);
}

body[data-page="plans.html"] .page-hero .hero-shade {
  background:
    linear-gradient(90deg, rgba(11, 7, 13, 0.86), rgba(11, 7, 13, 0.26) 48%, rgba(11, 7, 13, 0.72)),
    radial-gradient(72% 82% at 32% 48%, rgba(11, 7, 13, 0.68), rgba(11, 7, 13, 0.16) 64%, rgba(11, 7, 13, 0.46));
}

body[data-page="contact.html"] .liquid-wrap {
  background: #020b0f;
}

body[data-page="contact.html"] .liquid-wrap::before {
  background:
    linear-gradient(126deg, transparent 0 42%, rgba(93, 230, 255, 0.2) 42.15% 42.45%, transparent 42.7% 100%),
    linear-gradient(126deg, transparent 0 53%, rgba(255, 255, 255, 0.11) 53.12% 53.28%, transparent 53.5% 100%),
    radial-gradient(circle at 22% 66%, rgba(93, 230, 255, 0.22), transparent 17rem),
    radial-gradient(circle at 84% 24%, rgba(214, 111, 66, 0.16), transparent 19rem);
  opacity: 0.76;
}

body[data-page="contact.html"] .liquid-wrap::after {
  background:
    repeating-linear-gradient(126deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 5.25rem),
    linear-gradient(90deg, rgba(2, 11, 15, 0.88), transparent 46%, rgba(2, 11, 15, 0.7));
}

body[data-page="contact.html"] .page-hero .hero-shade {
  background:
    linear-gradient(90deg, rgba(2, 11, 15, 0.86), rgba(2, 11, 15, 0.24) 46%, rgba(2, 11, 15, 0.7)),
    radial-gradient(70% 80% at 34% 50%, rgba(2, 11, 15, 0.68), rgba(2, 11, 15, 0.14) 62%, rgba(2, 11, 15, 0.42));
}

.watermark {
  z-index: 2;
  color: rgba(255, 255, 255, 0.08);
  letter-spacing: -0.08em;
}

.home-grid,
.page-hero-inner,
.hero-status {
  color: #fff;
}

.home-hero,
.page-hero {
  box-shadow: 0 28px 80px rgba(5, 7, 18, 0.22);
}

.home-hero .line-title,
.page-hero .line-title {
  color: #f3f6ff;
  margin-top: 3rem;
  text-shadow: 0 1rem 5rem rgba(0, 0, 0, 0.32);
}

.home-hero .line-title {
  max-width: 10.5ch;
}

.home-hero .hero-left::after {
  content: "";
  max-width: 34rem;
  color: rgba(238, 241, 249, 0.78);
  font-size: 1.05rem;
  line-height: 1.65;
  font-weight: 550;
}

.rating-copy,
.partners li,
.hero-status {
  color: rgba(238, 241, 249, 0.74);
}

.partners p,
.partners .icon {
  color: rgba(255, 255, 255, 0.5);
}

.stars {
  color: var(--accent2);
}

.liquid-wrap .pill-dark {
  background: #fff;
  color: #151821;
}

.liquid-wrap .pill-dark b {
  background: #050712;
  color: #fff;
}

.liquid-wrap .pill-outline {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.liquid-wrap .pill-outline b {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.hero-copy {
  color: rgba(238, 241, 249, 0.78);
}

.page-hero .hero-copy {
  color: rgba(238, 241, 249, 0.76);
}

.hero-status {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.about-block,
.work-section,
.services-list,
.team-section,
.client-section,
.drag-section,
.plans-section,
.tools-section,
.contact-page,
.founder-section,
.stats-section {
  background: transparent;
}

.image-card {
  position: relative;
  min-height: 18rem;
  background:
    linear-gradient(135deg, rgba(5, 7, 18, 0.1), rgba(214, 111, 66, 0.1)),
    url("./assets/setup.png") center / contain / no-repeat;
}

.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(5, 7, 18, 0.12), transparent 58%),
    radial-gradient(circle at 74% 28%, rgba(93, 230, 255, 0.18), transparent 18rem);
}

.card-dark,
.stats-panel,
.contact-card,
.contact-details,
.site-footer {
  background:
    radial-gradient(circle at 88% 8%, rgba(93, 230, 255, 0.12), transparent 20rem),
    radial-gradient(circle at 18% 86%, rgba(214, 111, 66, 0.16), transparent 18rem),
    #071126;
}

.card-light,
.team-card,
.client-card,
.plan-card,
.tool-card {
  background: rgba(255, 255, 255, 0.74);
  box-shadow:
    inset 0 0 0 1px rgba(16, 22, 34, 0.08),
    0 20px 60px rgba(16, 22, 34, 0.06);
  backdrop-filter: blur(12px);
}

.service-row {
  border-top-color: rgba(16, 22, 34, 0.12);
}

.service-row a:hover {
  background: rgba(255, 255, 255, 0.72);
}

.service-row b,
.pill-dark,
.pill-light b,
.pill-outline b {
  background: #071126;
}

.founder-section {
  padding: 0 1.25rem 5rem;
}

.founder-grid {
  display: grid;
  gap: 1.25rem;
  border-radius: 2rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(237, 243, 248, 0.72)),
    radial-gradient(circle at 86% 20%, rgba(93, 230, 255, 0.16), transparent 18rem);
  padding: 1.25rem;
  box-shadow:
    inset 0 0 0 1px rgba(16, 22, 34, 0.08),
    0 24px 70px rgba(16, 22, 34, 0.07);
}

.founder-message,
.quote-card {
  border-radius: 1.35rem;
  padding: 1.5rem;
}

.founder-message {
  display: grid;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.58);
}

.founder-message h2 {
  max-width: 16ch;
  font-size: clamp(1.7rem, 3vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.founder-message p:not(.eyebrow) {
  max-width: 44rem;
  color: rgba(17, 17, 17, 0.64);
  line-height: 1.7;
  font-weight: 550;
}

.founder-message span,
.quote-card cite {
  color: var(--accent);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-card {
  display: grid;
  align-content: space-between;
  gap: 2rem;
  min-height: 16rem;
  background:
    radial-gradient(circle at 80% 10%, rgba(93, 230, 255, 0.18), transparent 12rem),
    radial-gradient(circle at 12% 92%, rgba(214, 111, 66, 0.18), transparent 10rem),
    #071126;
  color: #fff;
}

.quote-card p {
  font-size: clamp(1.55rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 750;
}

.quote-card cite {
  color: rgba(255, 255, 255, 0.58);
}

.contact-card,
.contact-card h2,
.footer-cta h2,
.site-footer h2,
.site-footer h3 {
  color: #fff;
}

.contact-card {
  color: rgba(255, 255, 255, 0.64);
}

.plan-card.featured {
  background:
    radial-gradient(circle at 90% 12%, rgba(93, 230, 255, 0.16), transparent 16rem),
    #071126;
}

.nav-overlay {
  background:
    radial-gradient(circle at 24% 18%, rgba(93, 230, 255, 0.14), transparent 24rem),
    radial-gradient(circle at 82% 76%, rgba(214, 111, 66, 0.14), transparent 22rem),
    #050712;
}

.nav-bottom span {
  color: rgba(255, 255, 255, 0.68);
}

@media (min-width: 1024px) {
  .home-hero {
    min-height: 112lvh;
  }
  .logo img{
  width: 8rem;
}

  .founder-grid {
    grid-template-columns: 1.1fr 0.9fr;
    padding: 1.5rem;
  }

  .founder-message,
  .quote-card {
    padding: 2rem;
  }
}
