:root {
  --bg: #050505;
  --bg-soft: #090909;
  --panel: #0d0d0f;
  --panel-strong: #111116;
  --text: #f7f3e8;
  --muted: #a7a091;
  --muted-strong: #c7c0b0;
  --gold: #d4af37;
  --gold-soft: #f6d87a;
  --gold-dark: #9a7420;
  --green: #38d996;
  --line: rgba(212, 175, 55, 0.16);
  --line-strong: rgba(212, 175, 55, 0.32);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
  --container: 1180px;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", "Fira Code", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 5%, rgba(212, 175, 55, 0.08), transparent 28%),
    radial-gradient(circle at 85% 12%, rgba(212, 175, 55, 0.06), transparent 26%),
    linear-gradient(180deg, #050505 0%, #070707 45%, #050505 100%);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}

body::selection {
  background: rgba(212, 175, 55, 0.35);
  color: #fff;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.hidden {
  display: none !important;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 18px 0;
  pointer-events: none;
}

.site-header .container {
  pointer-events: auto;
}

.navbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px 14px 12px 22px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 999px;
  background: rgba(3, 3, 3, 0.72);
  backdrop-filter: blur(22px);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
}

.navbar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.18), transparent 28%, transparent 72%, rgba(212, 175, 55, 0.14));
  opacity: 0.7;
  pointer-events: none;
}

.logo {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-decoration: none;
  text-indent: 0.32em;
}

.logo::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 20px var(--gold);
}

.nav-menu {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 15px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-decoration: none;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 7px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--gold-soft);
  background: rgba(212, 175, 55, 0.1);
}

.nav-link:hover {
  transform: translateY(-1px);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.nav-link.is-active {
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.18);
}

.contact-button {
  border: 1px solid rgba(212, 175, 55, 0.34);
  color: var(--gold-soft);
}

.contact-button:hover,
.contact-button.is-active {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.22), rgba(212, 175, 55, 0.08));
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 150px 0 96px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 18% 18%, rgba(212, 175, 55, 0.18), transparent 28%),
    radial-gradient(circle at 80% 18%, rgba(212, 175, 55, 0.1), transparent 24%),
    radial-gradient(circle at 60% 80%, rgba(56, 217, 150, 0.08), transparent 30%),
    #050505;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.15));
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.15));
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-title {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(3.2rem, 7vw, 6.9rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.075em;
  text-wrap: balance;
}

.hero-title-accent {
  display: inline-block;
  background: linear-gradient(120deg, #fff 0%, #f7e6b5 45%, var(--gold) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  max-width: 650px;
  margin: 28px 0 0;
  color: #f7e8b5;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 600;
  line-height: 1.45;
}

.hero-description {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #111;
  box-shadow: 0 18px 42px rgba(212, 175, 55, 0.24);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 58px rgba(212, 175, 55, 0.34);
}

.btn-secondary {
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.65);
  background: rgba(212, 175, 55, 0.08);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 650px;
  margin-top: 42px;
}

.hero-metric {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  backdrop-filter: blur(12px);
}

.hero-metric strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.hero-metric span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 12% 4% 10% 10%;
  border-radius: 40px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent 62%);
  filter: blur(30px);
  opacity: 0.8;
}

.editor-card {
  position: relative;
  width: min(100%, 640px);
  margin-left: auto;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(18, 18, 22, 0.96), rgba(7, 7, 9, 0.98));
  box-shadow: var(--shadow), 0 0 0 1px rgba(255, 255, 255, 0.04) inset, 0 0 90px rgba(212, 175, 55, 0.12);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
}

.editor-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 0%, rgba(212, 175, 55, 0.18), transparent 34%),
    linear-gradient(110deg, rgba(255, 255, 255, 0.08), transparent 24%, transparent 72%, rgba(255, 255, 255, 0.04));
  pointer-events: none;
}

.editor-topbar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
}

.editor-dots {
  display: flex;
  gap: 8px;
}

.editor-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  box-shadow: inset 0 -1px 2px rgba(0, 0, 0, 0.3);
}

.dot-red {
  background: #ff5f57;
}

.dot-yellow {
  background: #ffbd2e;
}

.dot-green {
  background: #27c93f;
}

.editor-filename {
  flex: 1;
  color: #8f897c;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.editor-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #8ff0bd;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.editor-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(56, 217, 150, 0.9);
}

.editor-body {
  position: relative;
  z-index: 1;
  max-height: 560px;
  padding: 26px;
  overflow: auto;
}

.editor-body pre {
  margin: 0;
  color: #d8d2c3;
  font-family: var(--font-mono);
  font-size: clamp(0.84rem, 1.1vw, 0.98rem);
  line-height: 1.78;
  tab-size: 2;
}

.editor-body code {
  font-family: inherit;
}

.code-keyword {
  color: #c678dd;
}

.code-string {
  color: #98c379;
}

.code-function {
  color: #61afef;
}

.floating-chip {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 999px;
  background: rgba(8, 8, 10, 0.76);
  color: #f7e8b5;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  animation: float 6s ease-in-out infinite;
}

.chip-laravel {
  left: -16px;
  top: 16%;
}

.chip-vue {
  right: -10px;
  top: 42%;
  border-color: rgba(56, 217, 150, 0.28);
  color: #dfffea;
  animation-delay: -1.6s;
}

.chip-api {
  left: 8%;
  bottom: 8%;
  animation-delay: -3s;
}

@keyframes float {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -12px, 0);
  }
}

.section {
  position: relative;
  padding: 110px 0;
}

.section-title {
  margin: 0;
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.section-intro {
  max-width: 720px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.text-center {
  text-align: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.075), rgba(255, 255, 255, 0.025));
}

.card h3 {
  margin: 0;
  color: #fff;
  font-size: 1.15rem;
}

.card::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 0;
  left: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.55), transparent);
}

.tech-stack-section {
  padding-top: 110px;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.tech-card {
  padding: 20px 16px;
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  color: #f7e8b5;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.tech-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.32);
  background: rgba(212, 175, 55, 0.07);
}

.portfolio-section {
  padding-top: 110px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.portfolio-card {
  padding: 32px;
  border: 1px solid rgba(212, 175, 55, 0.13);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.portfolio-card h3 {
  margin: 24px 0 0;
  color: #fff;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.portfolio-card p {
  margin: 16px 0 0;
  color: var(--muted);
}

.portfolio-status {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.portfolio-status--completed {
  background: rgba(56, 217, 150, 0.12);
  color: #8ff0bd;
}

.portfolio-status--ongoing {
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-soft);
}

.contact-section {
  padding-top: 110px;
}

.contact-card {
  max-width: 720px;
  margin: 48px auto 0;
  padding: 48px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.14), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
  text-align: center;
}

.contact-card p {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-cta {
  margin-top: 28px;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 34px 0;
  color: var(--muted);
  text-align: center;
}

.footer p {
  margin: 0;
}

.footer p + p {
  margin-top: 8px;
}

@media (max-width: 1024px) {
  .hero {
    padding-top: 138px;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
  }

  .editor-card {
    margin: 0 auto;
    transform: none;
  }

  .floating-chip {
    display: none;
  }

  .tech-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 92px;
  }

  .site-header {
    padding: 12px 0;
  }

  .navbar {
    min-height: 66px;
    padding: 10px 12px;
    border-radius: 24px;
  }

  .nav-menu {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: inline-flex;
    width: 46px;
    height: 46px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid rgba(212, 175, 55, 0.24);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 99px;
    background: var(--gold);
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: 0;
    z-index: 3;
    display: grid;
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 22px;
    background: rgba(5, 5, 5, 0.96);
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px);
  }

  .mobile-menu .nav-link,
  .mobile-menu .contact-button {
    width: 100%;
    justify-content: flex-start;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 14px;
  }

  .hero {
    min-height: auto;
    padding: 128px 0 80px;
  }

  .hero-title {
    font-size: clamp(2.8rem, 14vw, 4.8rem);
    line-height: 0.96;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .editor-body {
    max-height: none;
    padding: 20px;
  }

  .section {
    padding: 86px 0;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 34px 22px;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .logo {
    font-size: 0.78rem;
    letter-spacing: 0.22em;
  }

  .hero {
    padding-top: 116px;
  }

  .eyebrow {
    font-size: 0.7rem;
  }

  .hero-description {
    font-size: 0.98rem;
  }

  .editor-topbar {
    gap: 10px;
    padding: 0 14px;
  }

  .editor-filename {
    overflow: hidden;
    font-size: 0.72rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .editor-status {
    display: none;
  }

  .editor-body {
    padding: 18px;
  }

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

.page-hero {
  position: relative;
  min-height: 100svh;
  padding: 150px 0 96px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 18% 18%, rgba(212, 175, 55, 0.18), transparent 28%),
    radial-gradient(circle at 82% 16%, rgba(212, 175, 55, 0.08), transparent 26%),
    radial-gradient(circle at 55% 82%, rgba(56, 217, 150, 0.08), transparent 30%),
    #050505;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.18));
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.18));
}

.page-hero-grid,
.product-page-grid,
.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(36px, 6vw, 84px);
}

.page-hero-copy {
  min-width: 0;
}

.page-hero-title {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-size: clamp(3rem, 6.5vw, 6.4rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.07em;
  text-wrap: balance;
}

.page-hero-description {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
  line-height: 1.85;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.trust-row span {
  padding: 9px 13px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted-strong);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.product-showcase,
.catalog-preview,
.billing-dashboard,
.invitation-mockup {
  position: relative;
  min-height: 520px;
}

.product-showcase {
  display: grid;
  gap: 18px;
}

.showcase-glow {
  position: absolute;
  inset: 10% 4% 8% 10%;
  border-radius: 42px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.22), transparent 62%);
  filter: blur(34px);
  opacity: 0.85;
}

.showcase-card {
  position: relative;
  z-index: 1;
  padding: 28px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(18, 18, 22, 0.94), rgba(7, 7, 9, 0.96));
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
}

.showcase-card--secondary {
  transform: translateX(42px);
}

.showcase-label {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.showcase-card h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.showcase-card p {
  margin: 16px 0 0;
  color: var(--muted);
}

.showcase-card a {
  display: inline-flex;
  margin-top: 22px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-decoration: none;
}

.catalog-preview {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
}

.catalog-orb {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.28), transparent 66%);
  filter: blur(10px);
  animation: float 7s ease-in-out infinite;
}

.catalog-card {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(12, 12, 14, 0.86);
  backdrop-filter: blur(16px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.36);
}

.catalog-card--gold {
  transform: translateX(34px);
  border-color: rgba(212, 175, 55, 0.24);
}

.catalog-card span {
  color: var(--gold-soft);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
}

.catalog-card strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 1.35rem;
}

.catalog-card p {
  margin: 6px 0 0;
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
}

.section-heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.section-heading--center {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .section-intro {
  margin-inline: auto;
}

.featured-products,
.product-catalog,
.product-highlights,
.cta-section,
.product-cta-section,
.contact-cta-section {
  position: relative;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 48px;
}

.product-card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.34);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.075), rgba(255, 255, 255, 0.025));
}

.product-badge {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 22px 0 0;
  color: #fff;
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.product-card p {
  margin: 16px 0 0;
  color: var(--muted);
}

.product-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.product-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted-strong);
}

.product-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.55);
}

.card-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-decoration: none;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.highlight-card {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.035);
}

.highlight-card span {
  color: var(--gold-soft);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
}

.highlight-card h3 {
  margin: 18px 0 0;
  color: #fff;
  font-size: 1.15rem;
}

.highlight-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.cta-panel {
  padding: clamp(34px, 6vw, 64px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.16), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
  text-align: center;
}

.cta-panel h2 {
  max-width: 780px;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.cta-panel p {
  max-width: 680px;
  margin: 18px auto 0;
  color: var(--muted);
}

.cta-actions {
  justify-content: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.feature-card {
  padding: 28px;
  border: 1px solid rgba(212, 175, 55, 0.13);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
}

.feature-card span {
  color: var(--gold-soft);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
}

.feature-card h3 {
  margin: 18px 0 0;
  color: #fff;
  font-size: 1.15rem;
}

.feature-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.screenshot-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.12), transparent 42%);
}

.screenshot-card span {
  color: var(--gold-soft);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
}

.screenshot-card h3 {
  margin: 22px 0 0;
  color: #fff;
  font-size: 1.25rem;
}

.screenshot-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.benefit-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.benefit-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.benefit-list {
  display: grid;
  gap: 16px;
}

.benefit-list div {
  padding: 24px;
  border: 1px solid rgba(212, 175, 55, 0.13);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
}

.benefit-list strong {
  display: block;
  color: #fff;
  font-size: 1.1rem;
}

.benefit-list span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.billing-dashboard {
  display: grid;
  gap: 18px;
  align-content: center;
  padding: 24px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(18, 18, 22, 0.96), rgba(7, 7, 9, 0.98));
  box-shadow: var(--shadow), 0 0 90px rgba(212, 175, 55, 0.12);
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted-strong);
  font-family: var(--font-mono);
  font-size: 0.78rem;
}

.dashboard-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.dashboard-metrics,
.dashboard-panel {
  display: grid;
  gap: 14px;
}

.dashboard-metrics {
  grid-template-columns: repeat(3, 1fr);
}

.dashboard-metrics div,
.dashboard-panel {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.dashboard-metrics span,
.dashboard-panel span {
  color: var(--muted);
  font-size: 0.78rem;
}

.dashboard-metrics strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 1.25rem;
}

.dashboard-panel div {
  height: 12px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.75), rgba(212, 175, 55, 0.12));
}

.dashboard-panel div:nth-child(3) {
  width: 78%;
}

.dashboard-panel div:nth-child(4) {
  width: 58%;
}

.dashboard-panel div:nth-child(5) {
  width: 86%;
}

.invitation-mockup {
  display: grid;
  place-items: center;
}

.phone-frame {
  position: relative;
  width: min(100%, 320px);
  min-height: 620px;
  padding: 14px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 44px;
  background: linear-gradient(145deg, #1b1b1f, #050505);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.58), 0 0 90px rgba(212, 175, 55, 0.14);
}

.phone-notch {
  position: absolute;
  top: 20px;
  left: 50%;
  width: 92px;
  height: 24px;
  border-radius: 999px;
  background: #050505;
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  overflow: hidden;
  min-height: 590px;
  padding: 54px 24px 24px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 10%, rgba(212, 175, 55, 0.28), transparent 34%),
    linear-gradient(180deg, #111, #050505);
  text-align: center;
}

.phone-screen span {
  color: var(--gold-soft);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.phone-screen strong {
  display: block;
  margin-top: 18px;
  color: #fff;
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.phone-screen p {
  margin: 10px 0 28px;
  color: var(--muted);
}

.phone-screen div {
  height: 74px;
  margin-top: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 30px;
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
}

.pricing-card--featured {
  border-color: rgba(212, 175, 55, 0.42);
  box-shadow: 0 24px 80px rgba(212, 175, 55, 0.12);
}

.pricing-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.14);
  color: var(--gold-soft);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin: 0;
  color: #fff;
  font-size: 1.45rem;
}

.pricing-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.pricing-card strong {
  display: block;
  margin-top: 28px;
  color: var(--gold-soft);
  font-size: 2.2rem;
  line-height: 1;
}

.pricing-card > span:not(.pricing-badge) {
  color: var(--muted);
  font-size: 0.86rem;
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  color: var(--muted-strong);
}

.pricing-card .btn {
  margin-top: auto;
}

.faq-container {
  max-width: 900px;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 42px;
}

.faq-list details {
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: #fff;
  font-weight: 800;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.about-intro {
  max-width: 820px;
}

.about-intro h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.about-intro p:last-child {
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.85;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.about-stats div {
  padding: 24px;
  border: 1px solid rgba(212, 175, 55, 0.13);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
}

.about-stats strong {
  display: block;
  color: var(--gold-soft);
}

.about-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 18px;
  margin-top: 48px;
}

.timeline-item {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(212, 175, 55, 0.13);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
}

.timeline-item span {
  color: var(--gold-soft);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
}

.timeline-item h3 {
  margin: 14px 0 0;
  color: #fff;
  font-size: 1.25rem;
}

.timeline-item p {
  margin: 10px 0 0;
  color: var(--muted);
}

.contact-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
}

.contact-card--hero {
  padding: 34px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
}

.contact-card--hero span {
  color: var(--gold-soft);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-card--hero h2 {
  margin: 16px 0 0;
  color: #fff;
  font-size: 2rem;
}

.contact-card--hero p {
  margin: 12px 0 0;
  color: var(--muted);
}

.contact-card--hero a {
  display: inline-flex;
  margin-top: 24px;
  color: var(--gold-soft);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
}

.contact-method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.contact-method {
  padding: 28px;
  border: 1px solid rgba(212, 175, 55, 0.13);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.035);
}

.contact-method span {
  color: var(--gold-soft);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
}

.contact-method h3 {
  margin: 18px 0 0;
  color: #fff;
  font-size: 1.15rem;
}

.contact-method p {
  margin: 10px 0 0;
  color: var(--muted);
}

.demo-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.demo-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.demo-steps div {
  padding: 24px;
  border: 1px solid rgba(212, 175, 55, 0.13);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
}

.demo-steps span {
  color: var(--gold-soft);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
}

.demo-steps strong {
  display: block;
  margin-top: 14px;
  color: #fff;
}

.demo-steps p {
  margin: 8px 0 0;
  color: var(--muted);
}

.theme-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.theme-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.theme-card span {
  color: var(--gold-soft);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.theme-card strong {
  display: block;
  margin-top: 14px;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1.2;
}

.theme-card--gold {
  background: radial-gradient(circle at 30% 15%, rgba(212, 175, 55, 0.42), transparent 38%), linear-gradient(145deg, #17110a, #050505);
}

.theme-card--sage {
  background: radial-gradient(circle at 30% 15%, rgba(56, 217, 150, 0.28), transparent 38%), linear-gradient(145deg, #0d1712, #050505);
}

.theme-card--midnight {
  background: radial-gradient(circle at 30% 15%, rgba(120, 120, 255, 0.24), transparent 38%), linear-gradient(145deg, #101018, #050505);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}

.footer-brand {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.32em;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 18px;
}

.footer nav a {
  color: var(--muted);
  font-size: 0.86rem;
  text-decoration: none;
}

.footer nav a:hover {
  color: var(--gold-soft);
}

.footer p:not(.footer-brand) {
  color: var(--muted);
}

@media (max-width: 1120px) {
  .page-hero-grid,
  .product-page-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .product-showcase,
  .catalog-preview,
  .billing-dashboard,
  .invitation-mockup {
    min-height: auto;
  }

  .showcase-card--secondary,
  .catalog-card--gold {
    transform: none;
  }

  .highlight-grid,
  .feature-grid,
  .screenshot-grid,
  .pricing-grid,
  .about-stats,
  .contact-method-grid,
  .theme-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefit-layout,
  .demo-layout {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 820px) {
  .page-hero {
    min-height: auto;
    padding: 128px 0 80px;
  }

  .page-hero-title {
    font-size: clamp(2.8rem, 14vw, 4.8rem);
    line-height: 0.98;
  }

  .product-grid,
  .highlight-grid,
  .feature-grid,
  .screenshot-grid,
  .pricing-grid,
  .about-stats,
  .contact-method-grid,
  .demo-steps,
  .theme-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-metrics {
    grid-template-columns: 1fr;
  }

  .phone-frame {
    min-height: 560px;
  }

  .phone-screen {
    min-height: 530px;
  }

  .cta-panel {
    border-radius: 26px;
  }
}

@media (max-width: 520px) {
  .page-hero {
    padding-top: 116px;
  }

  .product-card,
  .feature-card,
  .screenshot-card,
  .pricing-card,
  .theme-card,
  .contact-method,
  .demo-steps div {
    padding: 24px;
  }

  .showcase-card {
    padding: 24px;
  }

  .phone-frame {
    width: 100%;
  }
}

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