:root {
  --bg: #0a0a0a;
  --surface: #111111;
  --surface2: #171717;
  --border: #222222;
  --border-bright: #333333;
  --accent: #e8ff47;
  --text: #f0f0f0;
  --muted: #cccccc;
  --muted2: #f5f5f5;
  --white: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Outfit", sans-serif;
  font-size: 18.5px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

a,
button {
  font: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  border-bottom: 1px solid var(--border);
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
}

.nav-logo {
  font-weight: 800;
  font-size: 18.5px;
  letter-spacing: -0.02em;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12.5px;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  background: var(--accent);
  color: #000 !important;
  padding: 10px 22px;
  font-weight: 500 !important;
  transition: background 0.2s, transform 0.2s !important;
  white-space: nowrap;
}

.nav-cta:hover {
  background: #d4eb30 !important;
  transform: translateY(-1px);
}

/* HAMBURGER */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--border-bright);
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

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

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

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

/* MOBILE MENU DRAWER */
.nav-drawer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(16px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 100px 40px 60px;
}

.nav-drawer.open {
  display: flex;
}

.nav-drawer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
}

.nav-drawer ul li {
  width: 100%;
  border-bottom: 1px solid var(--border);
}

.nav-drawer ul li:first-child {
  border-top: 1px solid var(--border);
}

.nav-drawer ul li a {
  display: block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 20px 0;
  text-align: center;
  transition: color 0.2s;
}

.nav-drawer ul li a:hover {
  color: var(--white);
}

.nav-drawer .drawer-cta {
  margin-top: 32px;
  background: var(--accent);
  color: #000;
  padding: 16px 40px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  text-decoration: none;
  display: inline-block;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 60px 80px;
  position: relative;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(232, 255, 71, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(232, 255, 71, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-glow {
  position: absolute;
  top: -200px;
  right: -100px;
  width: 700px;
  height: 700px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(232, 255, 71, 0.06) 0%, transparent 70%);
}

.hero>*:not(.hero-grid-bg):not(.hero-glow) {
  position: relative;
  z-index: 2;
}

.hero-tag {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-tag::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--accent);
}

h1 {
  font-weight: 800;
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  max-width: 980px;
  margin-bottom: 32px;
}

h1 em,
h2 em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: 18.5px;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 48px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  background: var(--accent);
  color: #000;
  padding: 16px 36px;
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: -0.01em;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s, box-shadow 0.2s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 255, 71, 0.25);
}

.btn-secondary {
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 13.5px;
  letter-spacing: 0.05em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
  cursor: pointer;
}

.btn-secondary:hover {
  color: var(--white);
}

.hero-stats-wrap {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.hero-stats-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 28px;
  text-align: center;
}

.hero-stats {
  display: flex;
  gap: 60px;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-num {
  font-weight: 800;
  font-size: 36.5px;
  letter-spacing: -0.03em;
  color: var(--white);
  text-align: center;
}

.stat-num span {
  color: var(--accent);
}

.stat-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-top: 4px;
  text-align: center;
}

/* TICKER */
.ticker-wrap {
  overflow: hidden;
  background: var(--accent);
  padding: 12px 0;
}

.ticker {
  display: flex;
  animation: ticker 34s linear infinite;
  width: max-content;
}

.ticker-item {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000;
  padding: 0 36px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 500;
}

.ticker-dot {
  color: rgba(0, 0, 0, 0.3);
  font-size: 16.5px;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* SECTIONS */
section {
  padding: 100px 60px;
  position: relative;
}

.section-tag {
  font-family: "IBM Plex Mono", monospace;
  font-size: 16.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-tag::before {
  content: "//";
  color: var(--muted2);
}

h2 {
  font-weight: 800;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.section-intro {
  color: var(--muted);
  font-size: 17.5px;
  max-width: 580px;
  line-height: 1.7;
  font-weight: 300;
}

/* PROOF GRID */
#proof {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.proof-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  flex-wrap: wrap;
  gap: 24px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.proof-card {
  background: var(--surface);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.proof-card:hover {
  background: var(--surface2);
}

.proof-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.proof-card:hover::before {
  transform: scaleX(1);
}

.proof-num {
  font-weight: 800;
  font-size: 52.5px;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
  text-align: center;
}

.proof-card h3 {
  font-weight: 700;
  font-size: 19.5px;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--white);
  text-align: center;
}

.proof-card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  flex: 1;
  text-align: center;
}

.proof-tag {
  display: block;
  margin-top: 20px;
  padding: 5px 12px;
  background: rgba(232, 255, 71, 0.08);
  border: 1px solid rgba(232, 255, 71, 0.15);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* ORIGIN */
#origin {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.origin-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 56px;
  align-items: center;
}

.origin-left p {
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 20px;
}

.origin-left p.hl {
  color: var(--white);
  font-weight: 500;
  font-size: 16px;
  border-left: 2px solid var(--accent);
  padding-left: 20px;
  margin-top: 28px;
}

.origin-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.origin-stat {
  background: var(--surface);
  padding: 28px;
  text-align: center;
}

.origin-stat-num {
  font-weight: 800;
  font-size: 30px;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.origin-stat-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.5;
}

/* SERVICES */
#services {
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.service-card {
  border: 1px solid var(--border);
  padding: 48px 32px;
  position: relative;
  background: var(--bg);
  transition: border-color 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.service-card.featured {
  border-color: var(--accent);
  background: rgba(232, 255, 71, 0.03);
}

.service-badge {
  position: absolute;
  top: -12px;
  left: 32px;
  background: var(--accent);
  color: #000;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
}

.service-icon {
  font-size: 28.5px;
  margin-bottom: 24px;
}

.service-card h3 {
  font-weight: 700;
  font-size: 21.5px;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.service-card>p {
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  flex: 1;
  margin-bottom: 32px;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.service-features li {
  font-size: 13.5px;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
  text-align: left;
}

.service-features li::before {
  content: "→";
  color: var(--accent);
  flex-shrink: 0;
  font-size: 12.5px;
}

.service-cta {
  margin-top: auto;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: gap 0.2s;
}

.service-cta:hover {
  gap: 14px;
}

/* PROCESS */
#process {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.process-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 64px;
  align-items: start;
}

.process-steps {
  display: flex;
  flex-direction: column;
}

.process-step {
  display: flex;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

.process-step:last-child {
  border-bottom: none;
}

.step-num {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11.5px;
  color: var(--muted2);
  letter-spacing: 0.1em;
  flex-shrink: 0;
  padding-top: 4px;
}

.step-content h4 {
  font-weight: 700;
  font-size: 17.5px;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

.process-right {
  position: sticky;
  top: 100px;
}

.callout-box {
  background: var(--surface);
  border: 1px solid var(--border-bright);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.callout-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--accent);
}

.callout-box blockquote {
  font-size: 20.5px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--white);
}

.callout-box blockquote span {
  color: var(--accent);
}

.callout-meta {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11.5px;
  color: var(--muted2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.focus-box {
  margin-top: 24px;
  border: 1px solid var(--border);
  padding: 32px;
  background: var(--surface);
}

.focus-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 20px;
}

.focus-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.focus-tag {
  padding: 6px 14px;
  border: 1px solid var(--border);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* CONTACT */
#contact {
  background: var(--surface);
  border-top: 1px solid var(--border);
}

#contact>.fade-up:first-of-type,
.contact-layout {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 48px;
  align-items: start;
}

@media (min-width: 1025px) {
  .contact-layout {
    grid-template-columns: minmax(260px, 380px) minmax(0, 1fr);
    gap: clamp(32px, 4vw, 48px);
  }

  #contact>.fade-up:first-of-type .section-intro {
    max-width: 100%;
  }
}

.contact-left h3 {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.contact-left p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-detail-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.contact-detail-text {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.contact-detail-text a {
  color: var(--accent);
  text-decoration: none;
}

.contact-detail-text a:hover {
  text-decoration: underline;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted2);
}

.form-input,
.form-select,
.form-textarea {
  background: var(--bg);
  border: 1px solid var(--border-bright);
  color: var(--text);
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #c5c5c5;
}

.form-select {
  color: var(--muted2);
  cursor: pointer;
}

.form-select option {
  background: var(--surface2);
  color: var(--text);
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
}

.form-submit {
  background: var(--accent);
  color: #000;
  padding: 16px 36px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: transform 0.2s, box-shadow 0.2s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  align-self: flex-start;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 255, 71, 0.25);
}

.form-note {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  color: var(--muted2);
  letter-spacing: 0.06em;
}

.form-success {
  display: none;
  padding: 20px 24px;
  border: 1px solid rgba(232, 255, 71, 0.3);
  background: rgba(232, 255, 71, 0.05);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12.5px;
  color: var(--accent);
  letter-spacing: 0.06em;
}

.form-error {
  display: none;
  padding: 20px 24px;
  border: 1px solid rgba(255, 100, 100, 0.35);
  background: rgba(255, 100, 100, 0.06);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12.5px;
  color: #ff8a8a;
  letter-spacing: 0.06em;
}

.form-error-msg {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  color: #ff8a8a;
  letter-spacing: 0.04em;
}

.form-input.invalid,
.form-select.invalid,
.form-textarea.invalid {
  border-color: rgba(255, 100, 100, 0.6);
}

.form-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.contact-form input[name="address_2"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

/* BOOKING */
#booking {
  text-align: center;
  padding: 120px 60px;
  background: var(--bg);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

#booking::before {
  content: "";
  position: absolute;
  bottom: -300px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 255, 71, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

#booking>div {
  position: relative;
  z-index: 2;
}

.booking-title {
  font-weight: 800;
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin-bottom: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.booking-sub {
  color: var(--muted);
  font-size: 17.5px;
  max-width: 500px;
  margin: 0 auto 48px;
  font-weight: 300;
  line-height: 1.7;
}

.booking-btn {
  background: var(--accent);
  color: #000;
  padding: 20px 52px;
  font-weight: 800;
  font-size: 17.5px;
  letter-spacing: -0.01em;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s, box-shadow 0.2s;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}

.booking-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 48px rgba(232, 255, 71, 0.3);
}

.booking-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 300px;
  margin: 32px auto;
}

.booking-divider::before,
.booking-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border-bright);
}

.booking-divider span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  color: var(--muted2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.booking-note {
  margin-top: 28px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12.5px;
  color: var(--muted2);
  letter-spacing: 0.06em;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-weight: 800;
  font-size: 16.5px;
  color: var(--muted2);
}

.footer-logo span {
  color: var(--accent);
}

footer p,
footer a {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11.5px;
  color: var(--muted2);
  letter-spacing: 0.08em;
  text-decoration: none;
}

footer a:hover {
  color: var(--accent);
}

/* ANIMATIONS */
.fade-up {
  opacity: 1;
  transform: none;
}

.js-ready .fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.js-ready .fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
       RESPONSIVE
    ===================== */

/* TABLET: 761px–1100px — hide some nav links, keep logo + CTA, fix overflow */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 1024px) {
  nav {
    padding: 16px 32px;
  }

  /* On tablet, reduce gap and hide the text nav links — show hamburger instead */
  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  section {
    padding: 80px 32px;
  }

  .hero {
    padding: 120px 32px 60px;
  }

  .hero-stats {
    gap: 36px;
  }

  .process-layout,
  .origin-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .process-right {
    position: static;
  }

  footer {
    padding: 32px;
  }

  #booking {
    padding: 80px 32px;
  }

  .contact-form .form-submit {
    align-self: center;
  }
}

@media (max-width: 760px) {
  nav {
    padding: 14px 20px;
  }

  section {
    padding: 60px 20px;
  }

  .hero {
    padding: 100px 20px 60px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .proof-grid,
  .services-grid,
  .origin-stats {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .callout-box {
    padding: 28px;
  }

  footer {
    padding: 24px 20px;
  }

  #booking {
    padding: 60px 20px;
  }

  /* Booking button: prevent clip-path from cutting off on narrow screens */
  .booking-btn {
    padding: 16px 32px;
    font-size: 15px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }

  .ticker {
    animation: none;
  }
}



.privacy-page {
  padding-top: 72px;
  background: var(--bg);
  min-height: 100vh;
}

.privacy-hero {
  padding: 80px 60px 56px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.privacy-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
}

.privacy-effective {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.privacy-intro {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
  max-width: 720px;
  font-weight: 300;
}

.privacy-content {
  padding: 64px 60px 96px;
  display: flex;
  justify-content: center;
}

.privacy-card {
  width: 100%;
  max-width: 900px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 56px;
}

.privacy-card h2 {
  font-size: 28px;
  line-height: 1.15;
  margin-top: 42px;
  margin-bottom: 14px;
}

.privacy-card h2:first-child {
  margin-top: 0;
}

.privacy-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 18px;
  font-weight: 300;
  max-width: 760px;
}

.privacy-card a {
  color: var(--accent);
  text-decoration: none;
}

.privacy-card a:hover {
  text-decoration: underline;
}

@media (max-width: 760px) {
  .privacy-page {
    padding-top: 68px;
  }

  .privacy-hero {
    padding: 56px 20px 40px;
  }

  .privacy-content {
    padding: 32px 20px 64px;
  }

  .privacy-card {
    padding: 28px 22px;
  }

  .privacy-card h2 {
    font-size: 23px;
  }

  .privacy-card p {
    font-size: 15px;
  }
}