/*
Theme Name: Profile Theme
Theme URI: https://example.com/
Author: Profile Team
Author URI: https://example.com/
Description: Custom starter theme for the profile website.
Version: 0.2.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 8.3
Text Domain: profile-theme
*/

:root {
  --bg: #080808;
  --bg-soft: #111111;
  --card: #171717;
  --card-2: #1f1f1f;
  --gold: #d4af37;
  --gold-soft: #f3d77b;
  --text: #f5f5f5;
  --muted: #a3a3a3;
  --border: rgba(212, 175, 55, 0.28);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --font-sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.14), transparent 32%),
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.08), transparent 28%),
    var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
}

body.admin-bar .navbar {
  top: 32px;
}

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(8, 8, 8, 0.82);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  backdrop-filter: blur(16px);
}

.nav-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--gold);
  background: linear-gradient(145deg, #181818, #0c0c0c);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.12);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
}

.nav-menu a:hover,
.nav-menu .current-menu-item > a {
  color: var(--gold-soft);
}

.nav-menu ul {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #111111;
  box-shadow: 0 12px 34px rgba(212, 175, 55, 0.22);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(212, 175, 55, 0.32);
}

.btn-outline {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.02);
  color: var(--gold-soft);
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.08);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 80px;
}

.hero-image-bg {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(212, 175, 55, 0.14);
  background:
    linear-gradient(90deg, #080808 0%, rgba(8, 8, 8, 0.98) 34%, rgba(8, 8, 8, 0.76) 54%, rgba(8, 8, 8, 0.2) 78%, rgba(8, 8, 8, 0.08) 100%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.1) 0%, rgba(8, 8, 8, 0.92) 100%),
    var(--hero-image);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
}

.hero-image-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(212, 175, 55, 0.14), transparent 28%),
    linear-gradient(90deg, rgba(212, 175, 55, 0.08), transparent 38%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero-image-bg .hero-grid {
  grid-template-columns: minmax(0, 660px);
}

.hero-copy {
  padding: 20px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--gold-soft);
  font-size: 13px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  margin-bottom: 24px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -1px;
}

.hero h1 span {
  color: var(--gold-soft);
}

.hero p {
  max-width: 600px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 560px;
}

.stat-card {
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.stat-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gold-soft);
  font-size: 24px;
}

.stat-card small {
  color: var(--muted);
}

.hero-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(212, 175, 55, 0.16), transparent 42%),
    linear-gradient(180deg, #202020, #0e0e0e);
  box-shadow: var(--shadow);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 26px;
}

.document-card {
  position: absolute;
  top: 68px;
  right: 44px;
  left: 44px;
  padding: 28px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 24px;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
}

.doc-line {
  height: 10px;
  margin-bottom: 14px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.12);
}

.doc-line.gold {
  width: 44%;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.doc-line.wide {
  width: 90%;
}

.doc-line.mid {
  width: 70%;
}

.doc-line.short {
  width: 48%;
}

.floating-card {
  position: absolute;
  right: 34px;
  bottom: 48px;
  width: 250px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(23, 23, 23, 0.92);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
}

.floating-card h3 {
  margin-bottom: 8px;
  color: var(--gold-soft);
  font-size: 18px;
}

.floating-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 80px 0;
}

.section-header {
  max-width: 680px;
  margin-bottom: 42px;
}

.section-header.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-header h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
}

.section-header p {
  color: var(--muted);
  font-size: 17px;
}

.profile-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 46px;
  align-items: start;
}

.profile-panel {
  padding: 34px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(212, 175, 55, 0.08), transparent 48%),
    var(--card);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.profile-panel h3 {
  margin-bottom: 18px;
  color: var(--gold-soft);
  font-size: 24px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  color: #dddddd;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-soft);
  font-weight: 800;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  padding: 28px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 26px;
  background: linear-gradient(180deg, var(--card), rgba(17, 17, 17, 0.92));
  transition: 0.2s ease;
}

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

.icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 16px;
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold-soft);
  font-size: 22px;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.card p {
  color: var(--muted);
  font-size: 15px;
}

.problem-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.problem-item {
  padding: 18px 20px;
  border: 1px solid rgba(212, 175, 55, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  color: #dddddd;
}

.problem-item span {
  margin-right: 8px;
  color: var(--gold-soft);
}

.flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  counter-reset: step;
}

.flow-item {
  position: relative;
  padding: 24px 18px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 22px;
  background: var(--card);
}

.flow-item::before {
  counter-increment: step;
  content: counter(step);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--gold);
  color: #111111;
  font-weight: 800;
}

.flow-item h3 {
  margin-bottom: 8px;
  font-size: 17px;
}

.flow-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.pricing-card {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 22px 70px rgba(212, 175, 55, 0.08);
}

.badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 12px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 700;
}

.price {
  margin: 12px 0 18px;
  color: var(--gold-soft);
  font-size: 34px;
  font-weight: 800;
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 24px;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.pricing-card li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--gold-soft);
}

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

.pricing-shell {
  position: relative;
}

.pricing-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 8px 6px 24px;
  scroll-behavior: smooth;
  scroll-padding-left: 6px;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(212, 175, 55, 0.58) rgba(255, 255, 255, 0.08);
}

.pricing-track::-webkit-scrollbar {
  height: 10px;
}

.pricing-track::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.pricing-track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.58);
}

.pricing-track .pricing-card {
  width: min(340px, 82vw);
  min-height: 540px;
  flex: 0 0 min(340px, 82vw);
  scroll-snap-align: start;
}

.pricing-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.36);
  border-radius: 50%;
  background: rgba(8, 8, 8, 0.82);
  color: var(--gold-soft);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
}

.pricing-nav:hover {
  background: rgba(212, 175, 55, 0.12);
}

.pricing-nav.prev {
  left: -18px;
}

.pricing-nav.next {
  right: -18px;
}

.premium-card {
  background:
    linear-gradient(145deg, rgba(75, 210, 126, 0.1), transparent 48%),
    linear-gradient(180deg, #182119, #101010);
  border-color: rgba(75, 210, 126, 0.36);
}

.premium-card .badge,
.premium-card h3 {
  color: #bdf7c9;
}

.testimonial {
  padding: 34px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(212, 175, 55, 0.08), transparent),
    var(--card);
}

.testimonial p {
  margin-bottom: 18px;
  color: #dddddd;
  font-size: 17px;
}

.testimonial strong {
  color: var(--gold-soft);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.value-item {
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
}

.value-item strong {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #111111;
  font-size: 22px;
}

.value-item h3 {
  margin-bottom: 10px;
  color: var(--gold-soft);
  font-size: 19px;
}

.value-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.cta {
  padding: 70px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 36px;
  background:
    radial-gradient(circle at top, rgba(212, 175, 55, 0.15), transparent 45%),
    linear-gradient(180deg, #191919, #101010);
  box-shadow: var(--shadow);
  text-align: center;
}

.cta h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.12;
}

.cta p {
  max-width: 660px;
  margin: 0 auto 28px;
  color: var(--muted);
}

.site-footer {
  padding: 32px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.site-main {
  min-height: 60vh;
}

.page-main {
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.04), transparent 320px),
    var(--bg);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 58px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 48px;
  align-items: center;
}

.page-hero-copy {
  max-width: 780px;
}

.page-hero-copy .entry-title {
  max-width: 820px;
  margin-bottom: 20px;
}

.page-hero-copy p {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.page-hero-panel {
  min-height: 240px;
  display: grid;
  align-content: end;
  gap: 18px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(212, 175, 55, 0.16), transparent 48%),
    linear-gradient(180deg, #1c1c1c, #101010);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
}

.page-hero-panel img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  border-radius: 20px;
}

.page-hero-panel strong {
  color: var(--gold-soft);
  font-size: 22px;
}

.page-panel-lines {
  display: grid;
  gap: 12px;
}

.page-panel-lines span {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.page-panel-lines span:nth-child(1) {
  width: 46%;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.page-panel-lines span:nth-child(2) {
  width: 92%;
}

.page-panel-lines span:nth-child(3) {
  width: 72%;
}

.page-panel-lines span:nth-child(4) {
  width: 58%;
}

.page-content {
  width: min(920px, 92%);
  padding: 70px 0 92px;
}

.entry-title {
  margin-bottom: 24px;
  font-size: clamp(32px, 6vw, 56px);
  line-height: 1.08;
}

.entry-content {
  color: #dddddd;
  font-size: 17px;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content > *:last-child {
  margin-bottom: 0;
}

.entry-content p,
.entry-content ul,
.entry-content ol,
.entry-content blockquote,
.entry-content table,
.entry-content figure,
.entry-content .wp-block-columns {
  margin-bottom: 24px;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  color: var(--text);
  line-height: 1.2;
}

.entry-content h2 {
  margin: 52px 0 18px;
  padding-top: 28px;
  border-top: 1px solid rgba(212, 175, 55, 0.16);
  font-size: clamp(28px, 4vw, 40px);
}

.entry-content h3 {
  margin: 36px 0 14px;
  color: var(--gold-soft);
  font-size: 24px;
}

.entry-content h4 {
  margin: 28px 0 10px;
  font-size: 19px;
}

.entry-content a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-decoration-color: rgba(212, 175, 55, 0.45);
  text-underline-offset: 4px;
}

.entry-content ul,
.entry-content ol {
  display: grid;
  gap: 12px;
  padding-left: 1.2rem;
}

.entry-content li::marker {
  color: var(--gold-soft);
}

.entry-content blockquote {
  padding: 26px 28px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-left: 4px solid var(--gold);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
}

.entry-content blockquote p:last-child {
  margin-bottom: 0;
}

.entry-content figure {
  margin-right: 0;
  margin-left: 0;
}

.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 22px;
}

.entry-content figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 18px;
}

.entry-content th,
.entry-content td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  text-align: left;
}

.entry-content th {
  color: var(--gold-soft);
  background: rgba(212, 175, 55, 0.08);
}

.entry-content .wp-block-separator {
  margin: 42px 0;
  border: 0;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
}

.entry-content .wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0;
}

.entry-content .wp-block-button__link {
  min-height: 44px;
  padding: 12px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #111111;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.entry-content .wp-block-columns {
  gap: 22px;
}

.entry-content .wp-block-column {
  padding: 24px;
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
}

@media (max-width: 900px) {
  body.admin-bar .navbar {
    top: 46px;
  }

  .nav-menu {
    display: none;
  }

  .hero-grid,
  .grid-3,
  .page-hero-grid,
  .profile-split {
    grid-template-columns: 1fr;
  }

  .hero-image-bg {
    min-height: auto;
    background:
      linear-gradient(180deg, #080808 0%, rgba(8, 8, 8, 0.84) 42%, rgba(8, 8, 8, 0.98) 100%),
      var(--hero-image);
    background-repeat: no-repeat;
    background-size: auto 58%;
    background-position: top center;
  }

  .hero-image-bg .hero-grid {
    padding-top: 260px;
  }

  .page-hero-panel {
    min-height: 200px;
  }

  .hero-visual {
    min-height: 420px;
  }

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

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

@media (max-width: 640px) {
  .nav-inner {
    min-height: 68px;
  }

  .brand span:last-child {
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-inner > .btn {
    padding-inline: 14px;
  }

  .hero {
    padding-top: 68px;
  }

  .hero-image-bg {
    padding-top: 0;
    background-size: auto 46%;
  }

  .hero-image-bg .hero-grid {
    padding-top: 180px;
  }

  .hero-stats,
  .problem-list,
  .flow {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 360px;
    border-radius: 26px;
  }

  .document-card {
    top: 42px;
    right: 24px;
    left: 24px;
  }

  .floating-card {
    right: 24px;
    bottom: 28px;
    left: 24px;
    width: auto;
  }

  .cta {
    padding: 42px 24px;
  }

  .profile-panel {
    padding: 26px;
  }

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

  .pricing-track {
    margin-right: -4%;
    margin-left: -4%;
    padding-inline: 4%;
    scroll-padding-left: 4%;
  }

  .pricing-nav {
    display: none;
  }

  .page-hero {
    padding: 58px 0 42px;
  }

  .page-content {
    padding: 52px 0 72px;
  }

  .entry-content {
    font-size: 16px;
  }

  .entry-content blockquote,
  .entry-content .wp-block-column {
    padding: 22px;
  }
}
