/* ================================================
   MINNESOTAICE.COM — Domain For Sale
   Art direction: Cold, dark, premium, minimal.
   Single-page centered layout.
   ================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Type */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Work Sans', 'Helvetica Neue', sans-serif;

  /* Palette — always dark */
  --color-bg: #080d10;
  --color-surface: #0e1519;
  --color-border: #1a2830;
  --color-text: #c0d0dc;
  --color-text-muted: #6a7e8c;
  --color-text-faint: #3a4e5c;
  --color-accent: #5aaad0;
  --color-accent-glow: rgba(90, 170, 208, 0.15);
  --color-white: #e8f0f5;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100dvh;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

::selection {
  background: rgba(90, 170, 208, 0.25);
  color: var(--color-white);
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 0.375rem;
}

/* --- Page Layout --- */
.page {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  padding: 2rem;
}

/* --- Ambient Orbs --- */
.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(90, 170, 208, 0.12), transparent 70%);
  top: -10%;
  left: -5%;
  animation: drift-1 20s ease-in-out infinite;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(90, 170, 208, 0.08), transparent 70%);
  bottom: -15%;
  right: -10%;
  animation: drift-2 25s ease-in-out infinite;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(26, 58, 74, 0.2), transparent 70%);
  top: 40%;
  left: 50%;
  animation: drift-3 18s ease-in-out infinite;
}

@keyframes drift-1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, 30px); }
}
@keyframes drift-2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, -40px); }
}
@keyframes drift-3 {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -30px); }
}

/* --- Content --- */
.content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  width: 100%;
}

/* --- Logo Mark --- */
.logo-mark {
  color: var(--color-text-faint);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

/* --- Domain Name --- */
.domain-name {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 1rem + 6vw, 5rem);
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards;
}

.tld {
  color: var(--color-accent);
}

/* --- Status --- */
.status {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 0.85rem + 0.5vw, 1.15rem);
  font-weight: 300;
  color: var(--color-text-muted);
  margin-bottom: 3rem;
  letter-spacing: 0.01em;
  opacity: 0;
  animation: fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.status strong {
  color: var(--color-text);
  font-weight: 500;
}

/* --- Value Props --- */
.props {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards;
}

.prop {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.prop-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.prop-detail {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 300;
}

.prop-divider {
  width: 1px;
  height: 36px;
  background: var(--color-border);
}

@media (max-width: 560px) {
  .props {
    flex-direction: column;
    gap: 1.25rem;
  }
  .prop-divider {
    width: 40px;
    height: 1px;
  }
}

/* --- CTA Button --- */
.cta {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-bg);
  background: var(--color-accent);
  padding: 1rem 2.75rem;
  border-radius: 0.375rem;
  margin-bottom: 1.25rem;
  transition: background 200ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 200ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 200ms cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  animation: fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}

.cta:hover {
  background: #6fbddf;
  box-shadow: 0 0 30px var(--color-accent-glow), 0 0 60px rgba(90, 170, 208, 0.08);
  transform: translateY(-1px);
}

.cta:active {
  transform: translateY(0);
}

/* --- CTA Sub --- */
.cta-sub {
  font-size: 0.8rem;
  color: var(--color-text-faint);
  opacity: 0;
  animation: fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.85s forwards;
}

.cta-sub a {
  color: var(--color-text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: var(--color-border);
  transition: color 200ms, text-decoration-color 200ms;
}

.cta-sub a:hover {
  color: var(--color-accent);
  text-decoration-color: var(--color-accent);
}

/* --- Footer --- */
.footer {
  position: absolute;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 1;
}

.footer-attr {
  font-size: 0.7rem;
  color: var(--color-text-faint);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 200ms;
}

.footer-attr:hover {
  color: var(--color-text-muted);
}

/* --- Animations --- */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .orb { animation: none !important; opacity: 0.3; }
  .logo-mark, .domain-name, .status, .props, .cta, .cta-sub {
    opacity: 1 !important;
    transform: none !important;
  }
}
