:root {
  --ink-950: #0f1f2e;
  --ink-900: #142b3f;
  --ink-800: #1f3d56;
  --teal-500: #158a92;
  --teal-400: #2ca6ad;
  --sand-100: #f3efe8;
  --paper: #fbfaf8;
  --line: #d7dcd9;
  --text: #203040;
  --text-soft: #556575;
  --white: #ffffff;
  --success: #3f8a56;
  --warning: #9b6a1b;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: radial-gradient(circle at 8% -15%, #dbe4eb 0%, transparent 42%),
    radial-gradient(circle at 95% 0%, #dceeea 0%, transparent 35%),
    var(--paper);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.65;
  min-height: 100vh;
}

h1,
h2,
h3,
h4 {
  color: var(--ink-900);
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  overflow-x: hidden;
}

.container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 1.25rem;
}

.topbar {
  backdrop-filter: blur(8px);
  background: rgba(15, 31, 46, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
}

.topbar-inner {
  align-items: center;
  display: flex;
  gap: 1.25rem;
  justify-content: space-between;
  min-height: 84px;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 0.8rem;
}

.brand img {
  border-radius: 8px;
  height: 56px;
  width: auto;
}

.brand-name {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.nav-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  justify-content: flex-end;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding-bottom: 0.18rem;
  position: relative;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a.active::after,
.nav-links a:hover::after {
  background: var(--teal-400);
  bottom: -0.25rem;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  width: 100%;
}

.nav-cta {
  border: 1px solid var(--teal-400);
  border-radius: 999px;
  padding: 0.43rem 0.95rem;
}

.nav-cta.active::after,
.nav-cta:hover::after {
  display: none;
}

.hero {
  color: var(--white);
  padding: 5rem 0 3.5rem;
  position: relative;
}

.hero::before {
  background: linear-gradient(130deg, var(--ink-950), var(--ink-800) 70%, #1b5d66);
  border-radius: 0 0 48px 48px;
  content: "";
  inset: 0;
  position: absolute;
  z-index: -2;
}

.hero::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.09), transparent 65%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: -1;
}

.hero-grid {
  display: grid;
  gap: 2.1rem;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
}

.kicker {
  color: #b9dce0;
  display: inline-block;
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.15rem, 4.8vw, 4.35rem);
  margin-bottom: 1.2rem;
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.04rem;
  max-width: 64ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.btn {
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.82rem 1.25rem;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(120deg, var(--teal-400), var(--teal-500));
  box-shadow: 0 10px 26px rgba(25, 105, 112, 0.35);
  color: var(--white);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.hero-note {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 1.25rem;
}

.hero-note h3 {
  color: var(--white);
  font-size: 1.45rem;
  margin-bottom: 0.75rem;
}

.hero-note ul {
  list-style: none;
}

.hero-note li {
  color: rgba(255, 255, 255, 0.92);
  padding: 0.36rem 0 0.36rem 1rem;
  position: relative;
}

.hero-note li::before {
  background: var(--teal-400);
  border-radius: 999px;
  content: "";
  height: 0.42rem;
  left: 0;
  position: absolute;
  top: 0.77rem;
  width: 0.42rem;
}

.section {
  padding: 4rem 0;
}

.section-tight {
  padding: 3.2rem 0;
}

.section-title {
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  margin-bottom: 0.85rem;
}

.section-sub {
  color: var(--text-soft);
  max-width: 72ch;
}

.grid {
  display: grid;
  gap: 1.3rem;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(14, 35, 49, 0.08);
  padding: 1.4rem;
}

.panel h3 {
  font-size: 1.6rem;
  margin-bottom: 0.65rem;
}

.panel p {
  color: var(--text-soft);
}

.metric {
  text-align: center;
}

.metric strong {
  color: var(--ink-900);
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.2rem;
}

.metric span {
  color: var(--text-soft);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pill {
  border-radius: 999px;
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.32rem 0.72rem;
  text-transform: uppercase;
}

.pill-dev {
  background: #f2e8d3;
  color: var(--warning);
}

.pill-live {
  background: #dfeede;
  color: var(--success);
}

.pill-soon {
  background: #e3edf5;
  color: #2a5a7e;
}

.product-shots {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: 1fr;
}

.product-shots img {
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(15, 31, 46, 0.08);
  cursor: zoom-in;
  display: block;
  height: auto;
  transition: transform 220ms ease, box-shadow 220ms ease;
  width: 100%;
}

.product-shots img:hover {
  box-shadow: 0 14px 32px rgba(15, 31, 46, 0.18);
  transform: translateY(-3px) scale(1.015);
}

.work-gallery {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 1.4rem;
}

.work-gallery figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.work-gallery img {
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(15, 31, 46, 0.08);
  cursor: zoom-in;
  display: block;
  height: auto;
  transition: transform 220ms ease, box-shadow 220ms ease;
  width: 100%;
}

.work-gallery img:hover {
  box-shadow: 0 14px 32px rgba(15, 31, 46, 0.18);
  transform: translateY(-3px) scale(1.015);
}

.work-gallery figcaption {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
}

.lightbox {
  align-items: center;
  background: rgba(8, 18, 28, 0.88);
  display: none;
  inset: 0;
  justify-content: center;
  padding: 2rem;
  position: fixed;
  z-index: 9999;
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  border-radius: 10px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  cursor: zoom-out;
  max-height: 92vh;
  max-width: 95vw;
  object-fit: contain;
}

.lightbox-close {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  font-size: 1.5rem;
  height: 44px;
  line-height: 1;
  position: absolute;
  right: 1.4rem;
  top: 1.4rem;
  width: 44px;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.28);
}

.list-clean {
  list-style: none;
}

.list-clean li {
  color: var(--text-soft);
  padding-left: 1.12rem;
  position: relative;
}

.list-clean li + li {
  margin-top: 0.4rem;
}

.list-clean li::before {
  background: var(--teal-400);
  border-radius: 999px;
  content: "";
  height: 0.42rem;
  left: 0;
  position: absolute;
  top: 0.6rem;
  width: 0.42rem;
}

.band {
  background: linear-gradient(130deg, rgba(17, 50, 72, 0.96), rgba(28, 77, 92, 0.95));
  border-radius: 24px;
  color: var(--white);
  padding: 2rem;
}

.band h2,
.band h3 {
  color: var(--white);
}

.band p,
.band li {
  color: rgba(255, 255, 255, 0.9);
}

.band .list-clean li::before {
  background: #99d4d8;
}

.placeholder {
  align-items: center;
  background: repeating-linear-gradient(
    135deg,
    #f6f7f9,
    #f6f7f9 10px,
    #edf0f3 10px,
    #edf0f3 20px
  );
  border: 1px dashed #b6bec6;
  border-radius: 14px;
  color: #596977;
  display: flex;
  font-size: 0.82rem;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.04em;
  min-height: 170px;
  text-transform: uppercase;
}

.cta-box {
  background: linear-gradient(130deg, var(--sand-100), #ece7de);
  border: 1px solid #e0d8cc;
  border-radius: 18px;
  padding: 1.7rem;
}

.footer {
  background: #101e2d;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #d8e0e8;
  margin-top: 3rem;
  padding: 2.8rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
}

.footer h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
}

.footer p,
.footer a {
  color: rgba(216, 224, 232, 0.9);
  font-size: 0.94rem;
}

.footer a:hover {
  color: #c3f0ef;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(216, 224, 232, 0.7);
  margin-top: 1.5rem;
  padding-top: 1rem;
  text-align: center;
}

.form-embed {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(14, 35, 49, 0.08);
  overflow: hidden;
}

.form-embed iframe {
  display: block;
  width: 100%;
}

.reveal {
  animation: riseIn 0.8s ease both;
}

.reveal.delay-1 {
  animation-delay: 0.12s;
}

.reveal.delay-2 {
  animation-delay: 0.24s;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .topbar-inner {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
  }

  .brand-name {
    font-size: 0.88rem;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 3.4rem;
  }

  .hero-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.2rem 0;
  }
}