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

@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("assets/outfit-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url("assets/plus-jakarta-sans-latin.woff2") format("woff2");
}

html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { margin: 0; font-family: "Plus Jakarta Sans", sans-serif; color: #111827; background: #fff; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: #a88c67; color: #fff; }

.absolute { position: absolute; }
.relative { position: relative; }
.z-10 { z-index: 10; }
.-z-10 { z-index: -10; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.-top-12 { top: -3rem; }
.-right-12 { right: -3rem; }
.top-1\/2 { top: 50%; }
.left-1\/2 { left: 50%; }
.-translate-x-1\/2 { transform: translateX(-50%); }
.-translate-y-1\/2 { transform: translateY(-50%); }
.top-1\/2.left-1\/2.-translate-x-1\/2.-translate-y-1\/2 { transform: translate(-50%, -50%); }

.flex { display: flex; }
.grid { display: grid; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-grow { flex-grow: 1; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: .5rem; }
.gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }

.min-h-screen { min-height: 100vh; }
.w-full { width: 100%; }
.w-10 { width: 2.5rem; }
.w-32 { width: 8rem; }
.w-\[800px\] { width: 800px; }
.h-10 { height: 2.5rem; }
.h-32 { height: 8rem; }
.h-\[800px\] { height: 800px; }
.max-w-full { max-width: 100%; }
.max-h-full { max-height: 100%; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.overflow-hidden { overflow: hidden; }
.object-contain { object-fit: contain; }

.m-0 { margin: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-auto { margin-top: auto; }
.mt-0\.5 { margin-top: .125rem; }
.mt-4 { margin-top: 1rem; }
.mt-20 { margin-top: 5rem; }
.mb-3 { margin-bottom: .75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-10 { margin-bottom: 2.5rem; }
.p-1 { padding: .25rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-2 { padding-top: .5rem; padding-bottom: .5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.pt-8 { padding-top: 2rem; }

.rounded-lg { border-radius: .5rem; }
.rounded-xl { border-radius: .75rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }
.border { border-width: 1px; border-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-gray-100 { border-color: #f3f4f6; }
.border-gray-200 { border-color: #e5e7eb; }
.hover\:border-gray-300:hover { border-color: #d1d5db; }
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0,0,0,.05); }
.bg-white { background: #fff; }
.bg-gray-50 { background: #f9fafb; }
.bg-accent\/5 { background: rgba(168, 140, 103, .05); }
.bg-primary-900 { background: #212529; }

.font-sans { font-family: "Plus Jakarta Sans", sans-serif; }
.font-display { font-family: "Outfit", sans-serif; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-xs { font-size: .75rem; line-height: 1rem; }
.text-sm { font-size: .875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.font-light { font-weight: 300; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.tracking-wide { letter-spacing: .025em; }
.tracking-widest { letter-spacing: .1em; }
.tracking-\[0\.24em\] { letter-spacing: .24em; }
.uppercase { text-transform: uppercase; }
.text-white { color: #fff; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-900 { color: #111827; }
.text-primary-900 { color: #212529; }
.text-accent { color: #a88c67; }
.hover\:text-primary-900:hover { color: #212529; }
.hover\:text-accent:hover { color: #a88c67; }
.underline { text-decoration-line: underline; }
.decoration-accent { text-decoration-color: #a88c67; }
.underline-offset-4 { text-underline-offset: 4px; }

.opacity-0 { opacity: 0; }
.opacity-5 { opacity: .05; }
.blur-3xl { filter: blur(64px); }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-duration: .15s; transition-timing-function: cubic-bezier(.4,0,.2,1); }
.selection\:bg-accent {}
.selection\:text-white {}

.space-y-9 > * + * { margin-top: 2.25rem; }
.glass-panel {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.05);
}

.info-icon {
  width: 1.5rem;
  height: 1.5rem;
  flex: 0 0 auto;
  color: #a88c67;
  margin-top: .125rem;
}

.brand-mark {
  overflow: hidden;
}

.brand-mark img {
  transform: scale(4.2);
  transform-origin: 50% 40.5%;
}

.legal-followup {
  margin-top: .85rem;
}

.legal-meta {
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
  color: #6b7280;
  font-size: .8125rem;
}

body {
  background-color: #FAFAFA;
  background-image: radial-gradient(#E5E7EB 1px, transparent 1px);
  background-size: 40px 40px;
}

.animate-fade-in-up { animation: fadeInUp 1s ease-out forwards; }
.animate-pulse-slow { animation: pulse 4s cubic-bezier(.4, 0, .6, 1) infinite; }
.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-400 { animation-delay: 400ms; }

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .5; }
}

@media (max-width: 767px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  .min-h-screen {
    min-height: 100svh;
  }

  body {
    background-size: 28px 28px;
  }

  .site-header {
    position: relative;
    padding: 1rem;
    gap: .75rem;
  }

  .site-brand {
    gap: .65rem;
    min-width: 0;
  }

  .brand-mark {
    width: 2.5rem;
    height: 2.5rem;
    flex: 0 0 auto;
  }

  .site-contact {
    min-height: 2.5rem;
    padding: .55rem .85rem;
    white-space: nowrap;
  }

  .site-contact svg {
    width: 1.1rem;
    height: 1.1rem;
  }

  .landing-main {
    align-items: flex-start;
    margin-top: 0;
    padding: .35rem .875rem 1rem;
  }

  .ambient-orb {
    top: 36%;
    width: 28rem;
    height: 28rem;
  }

  .landing-panel {
    padding: 1.6rem 1.25rem;
    border-radius: 1.125rem;
  }

  .hero-title {
    margin-bottom: 1.15rem;
    font-size: 2rem;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .hero-break {
    display: block;
  }

  .hero-copy {
    margin-bottom: 1.75rem;
    font-size: 1rem;
    line-height: 1.6;
  }

  .partner-section {
    padding-top: 1.5rem;
  }

  .info-grid {
    gap: .75rem;
  }

  .site-footer {
    padding: 1.15rem 1rem 1.5rem;
    font-size: .8rem;
  }

  .legal-header {
    padding: 1rem;
    gap: 1rem;
  }

  .legal-header > a:last-child {
    padding: .55rem .8rem;
    white-space: nowrap;
  }

  .legal-main {
    padding: .25rem .875rem 1rem;
  }

  .legal-panel {
    padding: 1.7rem 1.25rem;
    border-radius: 1.125rem;
  }

  .legal-heading {
    margin-bottom: 2rem;
    font-size: 2.25rem;
    line-height: 1.08;
  }

  .legal-content {
    font-size: .9375rem;
    line-height: 1.65;
    overflow-wrap: anywhere;
  }

  .legal-content.space-y-9 > * + * {
    margin-top: 1.85rem;
  }
}

@media (max-width: 359px) {
  .site-header {
    padding-inline: .75rem;
  }

  .site-brand {
    gap: .5rem;
  }

  .site-brand > span {
    font-size: 1.05rem;
  }

  .site-contact {
    padding-inline: .7rem;
  }

  .landing-main,
  .legal-main {
    padding-inline: .65rem;
  }

  .landing-panel,
  .legal-panel {
    padding-inline: 1rem;
  }

  .hero-title {
    font-size: 1.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
  .md\:flex-row { flex-direction: row; }
  .md\:text-left { text-align: left; }
  .md\:mt-0 { margin-top: 0; }
  .md\:p-10 { padding: 2.5rem; }
  .md\:p-12 { padding: 3rem; }
  .md\:p-14 { padding: 3.5rem; }
  .md\:p-16 { padding: 4rem; }
  .md\:px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
  .md\:h-12 { height: 3rem; }
  .md\:w-12 { width: 3rem; }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
}

@media (min-width: 1024px) {
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
}
