:root {
  --ink: #101724;
  --ink-soft: #243148;
  --muted: #7a879b;
  --line: rgba(255, 255, 255, 0.14);
  --card: rgba(255, 255, 255, 0.08);
  --card-strong: rgba(255, 255, 255, 0.13);
  --white: #ffffff;
  --cream: #f5efe4;
  --coco: #bd7544;
  --coco-dark: #8f4f2d;
  --amber: #f2bd6b;
  --mint: #9fe2c6;
  --blue: #78a8ff;
  --navy: #151f2f;
  --navy-2: #0b1020;
  --radius: 28px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  background:
    radial-gradient(circle at 10% 10%, rgba(189, 117, 68, 0.22), transparent 28rem),
    radial-gradient(circle at 84% 8%, rgba(120, 168, 255, 0.18), transparent 32rem),
    linear-gradient(135deg, var(--navy-2) 0%, var(--navy) 48%, #202b3d 100%);
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(242, 189, 107, 0.9);
  outline-offset: 4px;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 94px 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--amber);
  font-weight: 800;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(10, 16, 29, 0.8);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(189, 117, 68, 0.32);
}

.brand-mark img {
  width: 100%;
  height: 100%;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 1.1rem;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.site-nav a {
  padding: 10px 15px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  font-weight: 750;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.site-nav .nav-cta {
  color: #25180d;
  background: linear-gradient(135deg, var(--amber), #f0a45f);
}

.site-nav .nav-cta:hover {
  color: #25180d;
  background: linear-gradient(135deg, #ffd68e, #f0a45f);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 88px;
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 78%);
}

.hero-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(10px);
}

.hero-glow-one {
  top: 140px;
  right: 8%;
  width: 260px;
  height: 260px;
  background: rgba(159, 226, 198, 0.12);
}

.hero-glow-two {
  bottom: 80px;
  left: 8%;
  width: 220px;
  height: 220px;
  background: rgba(242, 189, 107, 0.12);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: 54px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 0.79rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.03;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(3.1rem, 8vw, 6.9rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 4.8vw, 4.7rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
}

.hero-text {
  max-width: 700px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-weight: 850;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-disabled {
  cursor: default;
  opacity: 0.86;
}

.button-disabled:hover {
  transform: none;
}

.button-primary {
  color: #20160d;
  border-color: rgba(242, 189, 107, 0.42);
  background: linear-gradient(135deg, var(--amber), #f29c5b);
  box-shadow: 0 16px 40px rgba(242, 157, 91, 0.24);
}

.button-soft {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button-soft:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-list li {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.88rem;
  font-weight: 750;
}

.hero-panel {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.hero-panel::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  content: "";
  background: linear-gradient(135deg, rgba(242, 189, 107, 0.5), transparent 44%, rgba(120, 168, 255, 0.35));
}

.panel-topbar {
  display: flex;
  gap: 8px;
  padding: 4px 4px 16px;
}

.panel-topbar span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
}

.panel-topbar span:nth-child(1) {
  background: #ff7d6e;
}

.panel-topbar span:nth-child(2) {
  background: #ffc95f;
}

.panel-topbar span:nth-child(3) {
  background: #78d890;
}

.terminal-card {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(5, 10, 20, 0.58);
}

.terminal-label {
  margin-bottom: 18px;
  color: var(--mint);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.92rem;
}

.terminal-line {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 760;
}

.terminal-line span {
  color: rgba(242, 189, 107, 0.72);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.section-head {
  max-width: 790px;
  margin-bottom: 38px;
}

.section-head p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.08rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  min-height: 260px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: var(--card);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.12);
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 189, 107, 0.28);
  background: var(--card-strong);
}

.service-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 16px;
  color: #22150d;
  background: linear-gradient(135deg, var(--amber), var(--coco));
  font-size: 1.2rem;
  font-weight: 900;
}

.service-card h3 {
  font-size: 1.35rem;
}

.service-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.projects {
  position: relative;
}

.projects::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.045) 20%, rgba(255, 255, 255, 0.045) 80%, transparent 100%);
}

.project-list {
  display: grid;
  gap: 26px;
}

.project-card {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.75fr);
  gap: 30px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 22px 75px rgba(0, 0, 0, 0.18);
}

.project-card-alt {
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1.03fr);
}

.project-card-alt .project-shot {
  order: 2;
}

.project-card-alt .project-copy {
  order: 1;
}

.project-shot {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.24);
}

.project-shot::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(9, 15, 27, 0.18), transparent 24%),
    radial-gradient(circle at 30% 0%, rgba(255, 255, 255, 0.18), transparent 20rem);
}

.project-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.project-shot:hover img {
  transform: scale(1.035);
}

.project-copy {
  padding: 12px 8px;
}

.project-kicker {
  margin-bottom: 8px;
  color: var(--mint);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.project-copy p:not(.project-kicker) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.03rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 22px 0;
  list-style: none;
}

.tag-list li {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.82rem;
  font-weight: 780;
}

.project-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--amber);
  font-weight: 900;
}

.text-link::after {
  content: "→";
  transition: transform 150ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(242, 189, 107, 0.28);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(242, 189, 107, 0.11);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: 44px;
  align-items: start;
}

.steps {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
}

.steps li > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  color: #25180d;
  background: linear-gradient(135deg, var(--amber), var(--coco));
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-weight: 900;
}

.steps h3 {
  margin-bottom: 6px;
  font-size: 1.25rem;
  letter-spacing: -0.035em;
}

.steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.contact {
  padding-bottom: 62px;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: center;
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  background:
    radial-gradient(circle at 0% 0%, rgba(242, 189, 107, 0.22), transparent 24rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.06));
  box-shadow: var(--shadow);
}

.contact-card h2 {
  max-width: 780px;
  margin-bottom: 16px;
}

.contact-card p:not(.eyebrow) {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.contact-box {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(6, 12, 23, 0.38);
}

.contact-box strong,
.contact-box span {
  display: block;
}

.contact-label {
  margin-bottom: 8px;
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-box strong {
  margin-bottom: 8px;
  font-size: 1.35rem;
  letter-spacing: -0.035em;
}

.contact-box span {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.66);
}

.contact-box .button {
  width: 100%;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.62);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
  font-size: 0.95rem;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  font-weight: 800;
}

.footer-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.legal-page {
  min-height: calc(100vh - 164px);
}

.legal-card {
  max-width: 860px;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.legal-card h1 {
  margin: 0 0 28px;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.legal-card h2 {
  margin: 30px 0 10px;
  color: var(--amber);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.legal-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.legal-card a {
  overflow-wrap: anywhere;
  color: var(--amber);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .section {
    padding: 76px 0;
  }

  .hero-grid,
  .process-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 560px;
  }

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

  .project-card,
  .project-card-alt {
    grid-template-columns: 1fr;
  }

  .project-card-alt .project-shot,
  .project-card-alt .project-copy {
    order: initial;
  }

  .contact-box {
    max-width: 420px;
  }
}

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

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

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 78px 14px auto;
    display: grid;
    gap: 8px;
    padding: 12px;
    border-radius: 22px;
    background: rgba(10, 16, 29, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 170ms ease, transform 170ms ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 13px 14px;
  }

  .hero {
    padding-top: 54px;
  }

  h1 {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3.2rem);
  }

  .hero-actions,
  .trust-list {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

  .service-card {
    min-height: auto;
  }

  .project-card {
    padding: 14px;
    border-radius: 26px;
  }

  .project-shot {
    border-radius: 20px;
  }

  .project-copy {
    padding: 8px 4px 4px;
  }

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

  .contact-card {
    border-radius: 26px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .legal-card h1 {
    font-size: clamp(1.85rem, 8.5vw, 3.2rem);
    letter-spacing: -0.055em;
  }
}

@media (max-width: 430px) {
  .brand-copy small {
    display: none;
  }

  .section {
    padding: 62px 0;
  }

  .hero-panel,
  .terminal-card,
  .contact-box {
    padding: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
