/* AKAMÉ — The Art of Radiance */
/* Static standalone styles */

:root {
  --background: #141414;
  --foreground: #f3efe9;
  --muted: #1f1f1f;
  --muted-foreground: #a89f93;
  --gold: #d4af37;
  --gold-soft: #e8d7a0;
  --gold-dark: #b08d2b;
  --input-border: rgba(212, 175, 55, 0.28);
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Jost", ui-sans-serif, system-ui, sans-serif;
  --ease-silk: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

::selection {
  background: var(--gold);
  color: var(--background);
}

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

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

.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;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  background: rgba(20, 20, 20, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-mark {
  height: 2rem;
  width: auto;
}

.nav-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  letter-spacing: 0.42em;
  color: var(--gold-soft);
}

.nav-link {
  display: none;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted-foreground);
  transition: color 0.5s ease;
}

.nav-link:hover {
  color: var(--gold);
}

@media (min-width: 640px) {
  .nav-link {
    display: inline;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 6rem 1.5rem 5rem;
}

.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(60% 50% at 50% 30%, rgba(212, 175, 55, 0.12), transparent 70%);
  animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 0.9; }
}

.hero-content {
  position: relative;
  max-width: 48rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  width: min(78vw, 30rem);
  margin: 0 auto;
}

.hero-headline {
  margin-top: 2.5rem;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.2;
}

.text-gold-gradient {
  background: linear-gradient(100deg, #c08a22, #f5de9b, #c8a13b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subhead {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.45em;
  color: var(--muted-foreground);
}

.hero-cta {
  margin-top: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.7);
  padding: 1rem 2.5rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--gold);
  transition: all 0.7s ease;
  box-shadow: 0 20px 60px -25px rgba(212, 175, 55, 0.45);
}

.hero-cta:hover {
  background: var(--gold);
  color: var(--background);
}

.hero-tagline {
  margin-top: 2rem;
  max-width: 28rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

@media (min-width: 640px) {
  .hero-headline {
    font-size: 3.75rem;
  }

  .hero-subhead {
    font-size: 0.875rem;
  }
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal 1.1s var(--ease-silk) forwards;
}

.reveal:nth-child(2) { animation-delay: 120ms; }
.reveal:nth-child(3) { animation-delay: 240ms; }
.reveal:nth-child(4) { animation-delay: 360ms; }
.reveal:nth-child(5) { animation-delay: 480ms; }

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Pillars */
.pillars {
  max-width: 72rem;
  margin: 0 auto;
  padding: 6rem 1.5rem;
}

.rule-gold {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.55;
  margin-bottom: 5rem;
}

.pillars-grid {
  display: grid;
  gap: 3.5rem;
}

.pillar {
  text-align: center;
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  color: var(--gold-soft);
  font-weight: 400;
}

.pillar-text {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

@media (min-width: 640px) {
  .pillars {
    padding: 8rem 1.5rem;
  }

  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }

  .pillar {
    text-align: left;
  }
}

/* Product */
.product {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem 6rem;
  display: grid;
  gap: 3.5rem;
  align-items: center;
}

.product-image {
  width: 100%;
  object-fit: cover;
}

.product-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--gold);
}

.product-title {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 300;
  line-height: 1.3;
}

.product-text {
  margin-top: 1.5rem;
  max-width: 28rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .product {
    grid-template-columns: 1fr 1fr;
    padding-bottom: 8rem;
  }

  .product-title {
    font-size: 2.25rem;
  }
}

/* Notify */
.notify {
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 1.5rem 7rem;
  text-align: center;
}

.notify-title {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.notify-text {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.notify-success {
  margin-top: 2.5rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
}

.notify-form {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.notify-input {
  flex: 1;
  border: 1px solid var(--input-border);
  background: transparent;
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  color: var(--foreground);
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.3s ease;
}

.notify-input::placeholder {
  color: rgba(168, 159, 147, 0.7);
}

.notify-input:focus {
  border-color: var(--gold);
}

.notify-button {
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--background);
  padding: 1rem 2rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  cursor: pointer;
  transition: opacity 0.5s ease;
  font-family: var(--font-body);
}

.notify-button:hover {
  opacity: 0.85;
}

@media (min-width: 640px) {
  .notify {
    padding-bottom: 9rem;
  }

  .notify-title {
    font-size: 2.25rem;
  }

  .notify-form {
    flex-direction: row;
  }
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  padding: 3rem 1.5rem;
  text-align: center;
}

.footer-link {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--muted-foreground);
  transition: color 0.5s ease;
}

.footer-link:hover {
  color: var(--gold);
}

.footer-copy {
  margin-top: 1.5rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(168, 159, 147, 0.7);
}

.mobile-break {
  display: inline;
}

.desktop-pipe {
  display: none;
}

@media (min-width: 640px) {
  .mobile-break {
    display: none;
  }

  .desktop-pipe {
    display: inline;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
