/* Solar Pay — premium landing */
:root {
  --bg-deep: #04060c;
  --bg-deep-mid: #0a101c;
  --bg-card: rgba(18, 30, 52, 0.58);
  --border: rgba(255, 205, 160, 0.14);
  --border-bright: rgba(255, 220, 180, 0.22);
  --text: #f0f4fb;
  --muted: #8a9ab6;
  --solar: #ffc873;
  --solar-bright: #ffe8bc;
  --solar-dim: #c9954a;
  --accent: #5eead4;
  --accent-glow: rgba(94, 234, 212, 0.35);
  --gold-glow: rgba(255, 190, 120, 0.18);
  --shadow-deep: 0 28px 72px rgba(0, 0, 0, 0.58);
  --shadow-gold: 0 16px 48px rgba(255, 160, 60, 0.14);
  --header-h: 72px;
  font-size: clamp(15px, 2.5vw, 17px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", system-ui, sans-serif;
  background-color: var(--bg-deep);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -25%, rgba(255, 175, 90, 0.09) 0%, transparent 52%),
    radial-gradient(ellipse 70% 50% at 100% 20%, rgba(94, 234, 212, 0.05) 0%, transparent 45%),
    radial-gradient(ellipse 55% 45% at 0% 80%, rgba(255, 140, 60, 0.04) 0%, transparent 42%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-deep-mid) 45%, var(--bg-deep) 100%);
  color: var(--text);
  line-height: 1.62;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 100% 100% at 50% 100%, transparent 40%, rgba(0, 0, 0, 0.45) 100%);
  opacity: 0.85;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.42;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

.orb-a {
  width: min(58vw, 460px);
  height: min(58vw, 460px);
  top: -12%;
  right: -8%;
  background: radial-gradient(circle at 35% 35%, rgba(255, 210, 140, 0.42) 0%, rgba(255, 150, 70, 0.12) 45%, transparent 72%);
  animation: float 18s ease-in-out infinite;
}

.orb-b {
  width: min(48vw, 380px);
  height: min(48vw, 380px);
  bottom: 8%;
  left: -10%;
  background: radial-gradient(circle at 60% 50%, rgba(120, 240, 220, 0.16) 0%, rgba(94, 234, 212, 0.08) 40%, transparent 70%);
  animation: float 22s ease-in-out infinite reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(12px, -20px) scale(1.05);
  }
}

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  backdrop-filter: blur(20px) saturate(1.35);
  -webkit-backdrop-filter: blur(20px) saturate(1.35);
  background: linear-gradient(180deg, rgba(8, 12, 22, 0.88) 0%, rgba(5, 8, 14, 0.78) 100%);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 12px 40px rgba(0, 0, 0, 0.35);
}

.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;
}

/* Domain notice — sliding line */
.domain-ticker {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, rgba(14, 24, 44, 0.92) 0%, rgba(6, 10, 18, 0.98) 100%);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(255, 200, 130, 0.06) inset;
}

.domain-ticker-static {
  display: none;
  margin: 0;
  padding: 0.65rem 1.25rem;
  text-align: center;
  font-size: clamp(0.78rem, 2.2vw, 0.88rem);
  line-height: 1.5;
  color: var(--muted);
}

.domain-ticker-static a {
  color: var(--solar);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.domain-ticker-static a:hover,
.domain-ticker-static a:focus-visible {
  color: var(--accent);
}

.domain-ticker-marquee {
  overflow: hidden;
  padding: 0.5rem 0;
  mask-image: linear-gradient(90deg, transparent, #fff 6%, #fff 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #fff 6%, #fff 94%, transparent);
}

.domain-ticker-track {
  display: flex;
  width: max-content;
  animation: domainTicker 38s linear infinite;
}

.domain-ticker-block {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0.35rem;
  padding-right: 0.75rem;
  font-size: clamp(0.78rem, 2.2vw, 0.88rem);
  color: var(--muted);
  white-space: nowrap;
}

.domain-ticker-block a {
  color: var(--solar);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 200, 115, 0.35);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.domain-ticker-block a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.domain-ticker-dot {
  color: rgba(255, 196, 120, 0.45);
  padding-left: 0.35rem;
  user-select: none;
}

@keyframes domainTicker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .domain-ticker-marquee {
    display: none !important;
  }

  .domain-ticker-static {
    display: block;
  }

  .domain-ticker-track {
    animation: none;
  }
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1120px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  min-height: var(--header-h);
  gap: 1rem;
}

.brand {
  position: relative;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--text);
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(1.12rem, 2.8vw, 1.3rem);
  letter-spacing: -0.04em;
  line-height: 1.15;
  padding: 0.4rem 0.15rem;
  margin: -0.4rem -0.15rem;
  border-radius: 8px;
  transition: opacity 0.2s ease;
}

.brand:hover {
  opacity: 0.92;
}

.brand:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.brand-name {
  display: inline;
}

.brand-accent {
  color: var(--solar-bright);
  font-weight: 800;
  text-shadow: 0 0 28px var(--gold-glow);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset;
  cursor: pointer;
  position: relative;
  z-index: 10;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile menu backdrop + drawer (styles apply below 768px) */
.nav-backdrop {
  display: none;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 769px) {
  .nav-panel {
    flex: 1;
    justify-content: flex-end;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--solar);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--solar), var(--accent));
  transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  width: 100%;
}

.gmail-icon {
  flex-shrink: 0;
  vertical-align: middle;
}

.gmail-icon.large {
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

/* Fixed Gmail — bottom-right; z-index above header/menu so always visible + tappable */
.gmail-corner {
  position: fixed;
  left: auto;
  top: auto;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 220;
  isolation: isolate;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  min-width: 60px;
  min-height: 60px;
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  background: linear-gradient(155deg, rgba(32, 44, 68, 0.99) 0%, rgba(12, 16, 28, 1) 100%);
  border: 1px solid rgba(255, 220, 180, 0.42);
  box-shadow:
    var(--shadow-deep),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset,
    0 0 48px var(--gold-glow),
    var(--shadow-gold),
    0 0 0 3px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.gmail-corner:hover,
.gmail-corner:focus-visible {
  transform: scale(1.07);
  border-color: rgba(255, 220, 180, 0.45);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset,
    0 0 56px rgba(255, 180, 90, 0.28),
    0 12px 40px rgba(255, 140, 60, 0.12);
}

.gmail-corner-inner {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
}

.gmail-corner-pulse {
  position: absolute;
  inset: -5px;
  border-radius: 24px;
  border: 2px solid rgba(255, 200, 115, 0.5);
  animation: gmailRing 2.8s ease-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes gmailRing {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.35);
    opacity: 0;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

/* Mobile nav — dimmed backdrop + slide-in drawer from the right */
@media (max-width: 768px) {
  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 196;
    background: rgba(2, 5, 12, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.32s cubic-bezier(0.4, 0, 0.2, 1),
      visibility 0.32s step-end;
  }

  .nav-backdrop.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition:
      opacity 0.32s cubic-bezier(0.4, 0, 0.2, 1),
      visibility 0s step-start;
  }

  .nav-toggle {
    display: flex;
    z-index: 210;
  }

  .brand {
    z-index: 210;
  }

  .nav-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(100%, 340px);
    max-width: 100%;
    z-index: 198;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 0;
    padding-top: max(calc(var(--header-h) + 0.75rem), env(safe-area-inset-top, 0px));
    padding-bottom: max(1.5rem, env(safe-area-inset-bottom, 0px));
    padding-left: clamp(1.25rem, 5vw, 1.75rem);
    padding-right: clamp(1.25rem, 5vw, 1.75rem);
    background: linear-gradient(180deg, rgba(10, 16, 28, 0.98) 0%, rgba(5, 8, 16, 0.99) 100%);
    border: none;
    border-left: 1px solid var(--border-bright);
    border-radius: 0;
    box-shadow: -16px 0 48px rgba(0, 0, 0, 0.45);
    transform: translateX(100%);
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 0.38s cubic-bezier(0.32, 0.72, 0, 1),
      visibility 0.38s step-end;
  }

  .nav-panel.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition:
      transform 0.38s cubic-bezier(0.32, 0.72, 0, 1),
      visibility 0s step-start;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    width: 100%;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 1rem 0.35rem;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text);
    border-radius: 10px;
    transition: color 0.2s ease, background 0.2s ease, padding-left 0.22s ease;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    color: var(--solar-bright);
    background: rgba(255, 200, 115, 0.06);
    padding-left: 0.65rem;
  }

  .nav-links a::after {
    display: none;
  }
}

/* Sections */
main {
  position: relative;
  z-index: 1;
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) 1.25rem;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 3rem;
  min-height: min(88vh, 900px);
  padding-top: clamp(2rem, 5vw, 4rem);
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - var(--header-h));
  }
}

.hero-inner {
  max-width: 560px;
}

.eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin: 0 0 1rem;
  font-weight: 600;
  text-shadow: 0 0 24px var(--accent-glow);
}

.hero-title {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
}

.hero-title .line {
  display: block;
  animation: titleIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.hero-title .line:nth-child(2) {
  animation-delay: 0.12s;
}

.hero-title .accent {
  background: linear-gradient(105deg, var(--solar-bright) 0%, var(--solar) 38%, #fff8e8 52%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 40px rgba(255, 180, 90, 0.12));
}

@keyframes titleIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 440px;
  margin: 0 0 2rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.88rem 1.55rem;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.28s ease;
}

.btn-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--solar-bright) 0%, var(--solar) 38%, #d4923a 100%);
  color: #0a0f18;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.35) inset,
    0 10px 36px rgba(255, 150, 50, 0.25),
    var(--shadow-gold);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.35) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.btn-primary:hover::after,
.btn-primary:focus-visible::after {
  transform: translateX(100%);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-3px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.45) inset,
    0 16px 48px rgba(255, 160, 60, 0.32),
    0 0 40px rgba(255, 180, 90, 0.15);
}

.btn-ghost {
  border: 1px solid var(--border-bright);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: rgba(94, 234, 212, 0.45);
  color: var(--accent);
  background: var(--accent-soft);
  box-shadow: 0 0 24px rgba(94, 234, 212, 0.1);
}

.hero-visual {
  position: relative;
  justify-self: stretch;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.hero-figure {
  margin: 0;
  position: relative;
}

.hero-photo-wrap {
  position: relative;
  border-radius: 1.35rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255, 200, 130, 0.28);
  box-shadow:
    var(--shadow-deep),
    0 0 0 1px rgba(255, 255, 255, 0.07) inset,
    0 0 100px var(--gold-glow),
    0 0 1px rgba(255, 220, 180, 0.35) inset;
  transform: translateZ(0);
}

.hero-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.08);
  animation: heroKenBurns 18s ease-in-out infinite alternate;
  position: relative;
  z-index: 0;
}

@keyframes heroKenBurns {
  0% {
    transform: scale(1.06) translate(0, 0);
  }
  100% {
    transform: scale(1.14) translate(-2%, -1.5%);
  }
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(7, 11, 18, 0.38) 45%,
    rgba(4, 7, 12, 0.78) 100%
  );
  pointer-events: none;
}

.hero-photo-shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    115deg,
    transparent 40%,
    rgba(255, 255, 255, 0.07) 48%,
    rgba(255, 255, 255, 0.12) 50%,
    rgba(255, 255, 255, 0.07) 52%,
    transparent 60%
  );
  transform: translateX(-100%);
  animation: heroShine 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes heroShine {
  0%,
  15% {
    transform: translateX(-100%);
  }
  40%,
  100% {
    transform: translateX(100%);
  }
}

.hero-caption {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0 0;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.hero-caption-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 24px var(--accent);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.15);
  }
}

/* Full-width solar band */
.solar-band {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
  min-height: 140px;
}

.solar-band-bg {
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  background-image: url("https://images.unsplash.com/photo-1508514177221-188b1cf16e9d?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center 40%;
  filter: saturate(1.05) brightness(0.55);
  transform: scale(1.02);
  animation: bandParallax 20s ease-in-out infinite alternate;
}

@keyframes bandParallax {
  0% {
    background-position: 45% 40%;
  }
  100% {
    background-position: 55% 55%;
  }
}

.solar-band-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  background: linear-gradient(
    90deg,
    rgba(4, 7, 12, 0.94) 0%,
    rgba(7, 11, 18, 0.35) 50%,
    rgba(4, 7, 12, 0.94) 100%
  );
  box-shadow: inset 0 1px 0 rgba(255, 200, 130, 0.06);
}

.solar-band-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 140px;
}

.solar-band-line {
  display: block;
  height: 2px;
  width: min(18vw, 120px);
  background: linear-gradient(90deg, transparent, var(--solar), transparent);
  border-radius: 2px;
  opacity: 0.85;
  animation: lineFade 3s ease-in-out infinite;
}

.solar-band-line:nth-child(2) {
  animation-delay: 0.4s;
  width: min(12vw, 80px);
}

.solar-band-line:nth-child(3) {
  animation-delay: 0.8s;
}

@keyframes lineFade {
  0%,
  100% {
    opacity: 0.35;
    transform: scaleX(0.85);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

/* Features */
.features {
  border-top: 1px solid var(--border);
  position: relative;
}

.features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(70%, 320px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-bright), transparent);
  opacity: 0.9;
  pointer-events: none;
}

.section-head {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 3rem;
}

.section-head h2 {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin: 0 0 0.65rem;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #ffffff 0%, var(--text) 55%, rgba(200, 210, 230, 0.95) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--text);
}

.section-head p {
  color: var(--muted);
  margin: 0;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}

@supports not (background-clip: text) {
  .section-head h2 {
    background: none;
    -webkit-text-fill-color: unset;
    color: var(--text);
  }
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 560px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  position: relative;
  padding: 1.55rem 1.4rem;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: linear-gradient(165deg, rgba(26, 40, 70, 0.5) 0%, rgba(12, 18, 32, 0.65) 100%);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 12px 40px rgba(0, 0, 0, 0.25);
  transition: border-color 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 55%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 200, 130, 0.45), transparent);
  opacity: 0.85;
  pointer-events: none;
  border-radius: 2px;
}

.feature-card:hover {
  border-color: rgba(255, 210, 160, 0.35);
  transform: translateY(-6px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 20px 48px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 200, 115, 0.08),
    0 0 48px rgba(255, 160, 80, 0.06);
}

.feature-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  filter: grayscale(0.2);
}

.feature-card h3 {
  font-family: "Syne", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Domain acquisition — premium block */
.domain-sale {
  display: flex;
  justify-content: center;
  padding: clamp(2rem, 6vw, 3.5rem) 1.25rem;
  border-top: 1px solid var(--border);
  position: relative;
}

.domain-sale::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(75%, 400px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(94, 234, 212, 0.35), transparent);
  pointer-events: none;
}

.domain-sale-card {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1.35rem, 4vw, 2.25rem);
  text-align: center;
  border-radius: 22px;
  border: 1px solid rgba(255, 200, 130, 0.22);
  background: linear-gradient(
    155deg,
    rgba(20, 36, 58, 0.75) 0%,
    rgba(12, 22, 42, 0.92) 45%,
    rgba(8, 14, 28, 0.95) 100%
  );
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.07) inset,
    0 24px 64px rgba(0, 0, 0, 0.4),
    0 0 100px rgba(255, 160, 80, 0.07),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.domain-sale-badge {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.9rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(94, 234, 212, 0.35);
  border-radius: 999px;
  background: rgba(94, 234, 212, 0.08);
  text-shadow: 0 0 20px var(--accent-glow);
}

.domain-sale-title {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(1.45rem, 3.5vw, 1.85rem);
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  line-height: 1.2;
  background: linear-gradient(180deg, #fff 0%, var(--text) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--text);
}

@supports not (background-clip: text) {
  .domain-sale-title {
    background: none;
    -webkit-text-fill-color: unset;
    color: var(--text);
  }
}

.domain-sale-lead {
  margin: 0 0 1.5rem;
  font-size: clamp(0.95rem, 2.4vw, 1.05rem);
  line-height: 1.65;
  color: var(--muted);
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}

.domain-sale-lead strong {
  color: var(--solar-bright);
  font-weight: 600;
}

.domain-sale-cta {
  margin-bottom: 1rem;
}

.domain-sale-note {
  margin: 0;
  font-size: 0.88rem;
}

.domain-sale-note a {
  color: var(--solar-bright);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 200, 115, 0.35);
  transition: color 0.25s ease, border-color 0.25s ease;
}

.domain-sale-note a:hover,
.domain-sale-note a:focus-visible {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* Contact */
.contact {
  display: flex;
  justify-content: center;
  padding-bottom: clamp(4rem, 10vw, 7rem);
}

.contact-card {
  width: 100%;
  max-width: 560px;
  padding: clamp(2rem, 5vw, 3.25rem);
  border-radius: 22px;
  border: 1px solid var(--border-bright);
  background: linear-gradient(165deg, rgba(28, 42, 72, 0.55) 0%, rgba(8, 12, 22, 0.88) 100%);
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  text-align: center;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    var(--shadow-deep),
    0 0 80px rgba(255, 180, 90, 0.06);
}

.contact-card h2 {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  margin: 0 0 0.5rem;
}

.contact-note {
  color: var(--muted);
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
}

.contact-mail-row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.85rem;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.contact-mail {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 1.6rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 200, 130, 0.28);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(255, 200, 115, 0.04) 100%);
  color: var(--solar-bright);
  text-decoration: none;
  font-weight: 500;
  word-break: break-all;
  transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset;
  flex: 1;
  min-width: 0;
}

.contact-mail:hover,
.contact-mail:focus-visible {
  background: rgba(255, 200, 115, 0.1);
  border-color: rgba(255, 220, 180, 0.45);
  transform: scale(1.02);
  box-shadow: 0 0 32px var(--gold-glow);
}

.contact-copy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem 1.2rem;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--accent);
  background: rgba(94, 234, 212, 0.08);
  border: 1px solid rgba(94, 234, 212, 0.38);
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.contact-copy-btn:hover,
.contact-copy-btn:focus-visible {
  background: rgba(94, 234, 212, 0.14);
  border-color: rgba(94, 234, 212, 0.55);
  outline: none;
}

.contact-copy-btn:active {
  transform: scale(0.98);
}

.contact-copy-btn.is-copied {
  color: var(--solar-bright);
  background: rgba(255, 200, 115, 0.12);
  border-color: rgba(255, 200, 130, 0.45);
}

.contact-copy-icon {
  flex-shrink: 0;
  opacity: 0.95;
}

@media (min-width: 480px) {
  .contact-mail-row {
    flex-direction: row;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: center;
  }

  .contact-mail {
    flex-direction: row;
    word-break: normal;
    flex: 1 1 260px;
  }

  .contact-copy-btn {
    width: auto;
    min-width: 120px;
    align-self: center;
    flex: 0 0 auto;
  }
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1) var(--delay, 0ms),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1) var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 0;
  color: var(--muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(12, 22, 42, 0.5) 0%, rgba(2, 4, 10, 0.99) 100%);
  overflow: hidden;
  box-shadow: 0 -40px 80px rgba(0, 0, 0, 0.35);
}

.footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(92%, 780px);
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 200, 115, 0.55),
    rgba(255, 230, 200, 0.35),
    rgba(94, 234, 212, 0.4),
    transparent
  );
  opacity: 0.95;
  pointer-events: none;
  filter: blur(0.3px);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem 2.5rem;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3rem) clamp(1.25rem, 4vw, 2rem);
  align-items: start;
}

@media (min-width: 600px) {
  .footer-inner {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 2rem 2rem;
  }
}

.footer-brand-block {
  text-align: left;
}

.footer-brand {
  margin: 0 0 0.5rem;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  color: var(--text);
}

.footer-brand-name {
  display: inline-block;
}

.footer-tagline {
  margin: 0;
  max-width: 22rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-heading {
  margin: 0 0 0.85rem;
  font-family: "Syne", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(139, 155, 184, 0.9);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  padding: 0.2rem 0;
  border-radius: 4px;
  transition: color 0.22s ease, transform 0.22s ease;
  display: inline-block;
  width: fit-content;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--solar);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 196, 120, 0.08);
  padding: 1.1rem clamp(1.25rem, 4vw, 2rem);
  padding-bottom: max(1.1rem, env(safe-area-inset-bottom, 0px));
  text-align: center;
  background: rgba(0, 0, 0, 0.25);
}

.footer-copy {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(139, 155, 184, 0.85);
}

@media (max-width: 768px) {
  .footer-bottom {
    padding-bottom: calc(1.1rem + 84px + env(safe-area-inset-bottom, 0px));
  }
}

/* Policy inner pages */
.policy-page {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 4rem) clamp(1.25rem, 4vw, 2rem) clamp(4rem, 10vw, 6rem);
  color: var(--text);
}

.policy-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.policy-back:hover,
.policy-back:focus-visible {
  opacity: 0.88;
  transform: translateX(-3px);
}

.policy-page h1 {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.65rem, 4vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}

.policy-updated {
  margin: 0 0 2rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.policy-page h2 {
  font-family: "Syne", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1.75rem 0 0.65rem;
  color: var(--text);
}

.policy-page p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.policy-page ul {
  margin: 0 0 1rem 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.policy-page p a:not(.policy-back) {
  color: var(--solar);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: color 0.2s ease;
}

.policy-page p a:not(.policy-back):hover,
.policy-page p a:not(.policy-back):focus-visible {
  color: var(--accent);
}

@media (max-width: 599px) {
  .footer-inner {
    text-align: center;
  }

  .footer-brand-block {
    text-align: center;
  }

  .footer-tagline {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-col {
    align-items: center;
  }

  .footer-links {
    align-items: center;
  }

  .footer-links a:hover,
  .footer-links a:focus-visible {
    transform: translateY(-2px);
  }
}

/* Focus */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-photo {
    transform: none;
    animation: none;
  }

  .gmail-corner-pulse {
    animation: none;
    opacity: 0.35;
  }

  .btn-primary::after {
    display: none;
  }

  .nav-backdrop,
  .nav-panel {
    transition: none !important;
  }
}
