﻿:root {
  --bg: #f9f4ef;
  --surface: #ffffff;
  --surface-soft: #fbf6ee;
  --surface-strong: #151212;
  --text: #17120d;
  --muted: #6f6257;
  --primary: #ff6b00;
  --primary-dark: #d24d00;
  --border: rgba(20, 12, 7, 0.08);
}
* {
  box-sizing: border-box;
}
body.site-body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fff 0%, #fcf5ed 100%);
}
body.site-body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle at 18% 20%, rgba(255, 91, 56, 0.12), transparent 18%), radial-gradient(circle at 82% 34%, rgba(255, 57, 146, 0.12), transparent 17%), radial-gradient(circle at 55% 92%, rgba(255, 182, 105, 0.16), transparent 14%);
  pointer-events: none;
  z-index: -1;
}
img {
  max-width: 100%;
  display: block;
}
.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 2rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(20, 12, 7, 0.06);
  position: sticky;
  top: 0;
  z-index: 30;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}
.brand a {
  color: var(--surface-strong);
  font-size: 1.15rem;
  font-weight: 800;
  text-decoration: none;
}
.brand-icon {
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ff6b00, #ff3d81);
  border-radius: 18px;
  color: #fff;
  font-size: 1rem;
}
.site-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  transition: background 180ms ease, color 180ms ease;
}
.site-nav a:hover,
.site-nav a.active {
  background: rgba(255, 107, 0, 0.12);
  color: var(--primary);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--surface-strong);
  font-size: 1rem;
  cursor: pointer;
}
.site-nav.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.98);
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(20, 12, 7, 0.08);
  box-shadow: 0 20px 40px rgba(15, 8, 4, 0.1);
}
.site-main {
  flex: 1;
  padding: 2.6rem 2rem 3rem;
  max-width: 1400px;
  width: min(100%, 1400px);
  margin: 0 auto;
}
.site-footer {
  padding: 1.75rem 2rem;
  margin-top: auto;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--muted);
  border-top: 1px solid rgba(20, 12, 7, 0.06);
  font-size: 0.95rem;
}
.site-footer a {
  color: var(--muted);
  text-decoration: none;
}
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}
.hero-copy {
  max-width: 680px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: rgba(255, 107, 0, 0.12);
  color: var(--primary);
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.hero h1 {
  font-size: clamp(3rem, 4vw, 5.2rem);
  line-height: 0.95;
  margin: 0 0 1.4rem;
}
.hero-text {
  margin: 0;
  color: #5a5148;
  font-size: 1.08rem;
  line-height: 1.95;
  max-width: 48rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 1rem 1.8rem;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-primary {
  background: linear-gradient(135deg, #ff8a31 0%, #ff3d7f 100%);
  color: #fff;
  box-shadow: 0 20px 45px rgba(255, 96, 70, 0.24);
}
.btn-secondary {
  background: rgba(255, 107, 0, 0.1);
  color: var(--primary);
}
.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 107, 0, 0.25);
  color: var(--primary);
}
.hero-visual {
  position: relative;
  min-height: 540px;
}
.hero-panel {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  border-radius: 32px;
  overflow: hidden;
  min-height: 520px;
  box-shadow: 0 28px 80px rgba(22, 12, 8, 0.14);
  background: linear-gradient(180deg, #fff 0%, #fff 62%, #fff 100%);
}
.hero-panel::before,
.hero-panel::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(32px);
  opacity: 0.55;
}
.hero-panel::before {
  width: 280px;
  height: 280px;
  background: rgba(255, 141, 123, 0.18);
  top: -60px;
  right: -70px;
}
.hero-panel::after {
  width: 240px;
  height: 240px;
  background: rgba(255, 62, 140, 0.16);
  bottom: -70px;
  left: -50px;
}
.hero-panel-inner {
  padding: 2rem;
  background: transparent;
}
.hero-panel-inner h3 {
  margin: 0 0 0.9rem;
  font-size: 1.45rem;
}
.hero-panel-inner p {
  margin: 0;
  color: #5d5448;
  line-height: 1.8;
}
.hero-profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1.5rem 2rem 2rem;
}
.hero-profile-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 30px;
  overflow: hidden;
  min-height: 220px;
  background: linear-gradient(180deg, #fff 0%, #fdf1ed 100%);
  border: 1px solid rgba(255, 137, 106, 0.18);
  box-shadow: 0 16px 40px rgba(22, 12, 8, 0.1);
}
.hero-profile-card-large {
  grid-column: 1 / span 2;
  min-height: 320px;
}
.hero-profile-photo {
  position: relative;
  flex: 1;
  background: linear-gradient(180deg, #ff8f4b 0%, #ff4e98 100%);
  clip-path: polygon(0 0, 100% 0, 100% 83%, 0 100%);
}
.hero-profile-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
}
.hero-profile-photo.hero-profile-photo-1::after {
  background-image: url('/assets/images/profile1.svg');
}
.hero-profile-photo.hero-profile-photo-2::after {
  background-image: url('/assets/images/profile2.svg');
}
.hero-profile-photo.hero-profile-photo-3::after {
  background-image: url('/assets/images/profile3.svg');
}
.hero-profile-meta {
  padding: 1rem 1.25rem;
}
.hero-profile-meta strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}
.hero-profile-meta span {
  display: block;
  color: #7b6d63;
}
.hero-card-left {
  transform: translateY(22px);
}
.hero-card-right {
  transform: translateY(40px);
}
.hero-floating-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, #ff6f35 0%, #ff3f84 100%);
  color: #fff;
  border-radius: 999px;
  font-size: 0.95rem;
  box-shadow: 0 14px 32px rgba(255, 108, 87, 0.18);
}
.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.hero-stat {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 1.2rem 1.25rem;
  text-align: center;
  border: 1px solid rgba(255, 107, 0, 0.12);
}
.hero-stat strong {
  display: block;
  font-size: 1.7rem;
  color: #241b15;
}
.hero-stat span {
  display: block;
  margin-top: 0.45rem;
  color: #7c7167;
  font-size: 0.95rem;
}
.features {
  margin-bottom: 3rem;
}
.features h2 {
  font-size: 2.1rem;
  margin-bottom: 1.5rem;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.feature-card {
  padding: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  box-shadow: 0 18px 45px rgba(22, 12, 8, 0.08);
}
.feature-card h3 {
  margin-top: 0;
}
.feature-card p {
  color: #5d5448;
  line-height: 1.8;
}
.content-block {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 3rem;
}
.content-panel {
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 24px 60px rgba(22, 12, 8, 0.08);
  border-radius: 30px;
}
.content-panel h3 {
  margin-top: 0;
}
.auth-panel,
.dashboard-panel {
  display: flex;
  justify-content: center;
  padding: 2.5rem 0;
}
.auth-card,
.dashboard-card {
  width: min(860px, 100%);
  padding: 2.2rem;
  border-radius: 32px;
  box-shadow: 0 24px 80px rgba(22, 12, 8, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.65);
}
.auth-card h1,
.dashboard-card h1 {
  margin-top: 0;
  font-size: 2.3rem;
}
.auth-card p,
.dashboard-card p {
  color: #5e554d;
  line-height: 1.85;
}
.site-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}
.site-form label {
  display: grid;
  gap: 0.55rem;
  font-size: 0.95rem;
  color: #31291f;
}
.site-form input,
.site-form textarea,
.site-form select {
  width: 100%;
  border: 1px solid rgba(20, 12, 7, 0.12);
  border-radius: 20px;
  padding: 1.05rem 1.15rem;
  font-size: 1rem;
  background: #fff;
  color: #241b15;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.site-form input:focus,
.site-form textarea:focus,
.site-form select:focus {
  outline: none;
  border-color: rgba(255, 107, 0, 0.45);
  box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.12);
}
.site-form textarea {
  min-height: 140px;
  resize: vertical;
}
.form-message {
  min-height: 1.4rem;
  color: var(--primary-dark);
  font-size: 0.95rem;
}
.small-text {
  margin: 0;
  color: #6f6257;
}
.small-text a {
  color: var(--primary);
  text-decoration: none;
}
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.dashboard-widget {
  padding: 1.35rem;
  border: 1px solid rgba(20, 12, 7, 0.08);
  border-radius: 24px;
  background: #fff;
}
.dashboard-widget h2 {
  margin-top: 0;
}
.discover-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.discover-card {
  border: 1px solid rgba(20, 12, 7, 0.08);
  border-radius: 30px;
  overflow: hidden;
}
.discover-card-hero {
  min-height: 280px;
  background: #f9f5ef;
  background-size: cover;
  background-position: center;
  display: grid;
  place-items: center;
}
.discover-hero-placeholder {
  color: rgba(20, 12, 7, 0.4);
  font-weight: 700;
  font-size: 1rem;
}
.discover-card-body {
  padding: 1.5rem;
}
.discover-card-body h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.discover-subtitle {
  margin: 0 0 1rem;
  color: #7c7167;
}
.discover-meta {
  margin-top: 1.25rem;
  color: #7c7167;
  font-size: 0.95rem;
}
.discover-actions {
  display: flex;
  gap: 0.85rem;
  padding: 1.25rem;
}
.profile-summary {
  padding: 1.75rem;
  border: 1px solid rgba(20, 12, 7, 0.08);
  border-radius: 28px;
  background: #fff;
}
.match-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}
.match-card {
  padding: 1.5rem;
  border: 1px solid rgba(20, 12, 7, 0.08);
  border-radius: 28px;
  background: #fff;
}
.match-card h3 {
  margin-top: 0;
}
.profile-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.profile-block {
  padding: 1.5rem;
  border: 1px solid rgba(20, 12, 7, 0.08);
  border-radius: 28px;
  background: #fff;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  color: #6f6257;
}
.contact-list li {
  margin-bottom: 0.85rem;
}
@media (max-width: 1024px) {
  .hero,
  .content-block,
  .feature-grid,
  .dashboard-grid,
  .profile-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    min-height: 420px;
  }
}
@media (max-width: 760px) {
  .site-header {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .site-main,
  .site-footer,
  .auth-card,
  .dashboard-card,
  .hero-panel,
  .feature-card,
  .content-panel {
    padding: 1.1rem;
  }
  .hero {
    gap: 1.25rem;
  }
  .hero h1 {
    font-size: 2.6rem;
  }
  .hero-stat-grid,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
  .site-nav {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
}
