:root {
  --color-primary: #ffca38;
  --color-primary-outline: #e0a100;
  --text-color: #000000;
  --background-color: #ffffff;
  --outline: #8e8e8e;
  --box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 12px;
  --font-red-hat-display: "Red Hat Display", sans-serif;
  --font-barlow: "Barlow", sans-serif;
}

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: "Red Hat Display", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color: var(--text-color);
  background-color: var(--background-color);
  margin: 0;
  padding: 0;
}

h1 {
  font-family: "Red Hat Display", sans-serif;
  font-weight: 700;
  font-style: normal;
}

h2 {
  font-family: "Red Hat Display", sans-serif;
  font-weight: 600;
  font-style: normal;
}

p {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-style: normal;
}

a {
  color: var(--text-color);
  text-decoration: underline var(--color-primary);
  font-style: normal;
}
a:hover {
  font-style: italic;
}

header {
  width: 100%;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

header .header {
  width: 90%;
  max-width: 1500px;
  min-width: 950px;
  height: 80px;
  margin: 0;
  padding-left: 20px;
  padding-right: 10px;
  box-sizing: border-box;
  background-color: var(--background-color);
  border: var(--outline) 1px solid;
  border-radius: 50px;
  box-shadow: var(--box-shadow);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}

header .header .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

header .header .logo h1 {
  font-family: var(--font-red-hat-display);
  font-weight: 900;
  font-style: italic;
  font-size: 25px !important;
}

header .header .logo img {
  height: 50px;
  width: auto;
  margin-right: 10px;
}

header .header .nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 30px;
  padding: 5px;
}

header .header a {
  font-family: var(--font-red-hat-display);
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  transition: font-weight 0.3s ease;
  box-sizing: border-box;
}
header .header a:hover {
  text-decoration: underline var(--text-color);
  font-weight: 900;
}

header .header .cta {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 20px;
  color: var(--text-color);
}

header .header .cta a {
  font-weight: 800;
}

a.register {
  height: 60px;
  border: var(--color-primary-outline) 1px solid;
  border-radius: 80px;
  background-color: var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  padding-inline: 40px;
  box-shadow: var(--box-shadow);
  font-family: var(--font-red-hat-display);
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  color: var(--text-color);
  cursor: pointer;
}

a.register:hover {
  font-weight: 700;
  font-style: normal;
  text-decoration: underline var(--text-color);
  text-decoration-thickness: 2px;
}

.burger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-color);
  z-index: 1002;
}

.burger-btn svg line {
  transition: all 0.3s ease;
  transform-origin: center;
}

.burger-btn.open svg line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.burger-btn.open svg line:nth-child(2) {
  opacity: 0;
}

.burger-btn.open svg line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100vh;
  background: var(--background-color);
  z-index: 1001;
  padding: 100px 24px 40px;
  box-sizing: border-box;
  flex-direction: column;
  gap: 8px;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu a {
  font-family: var(--font-red-hat-display);
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  color: var(--text-color);
  padding: 14px 16px;
  border-radius: 12px;
  transition: background 0.2s ease;
}

.mobile-menu a:hover {
  background: #f5f5f5;
  font-style: normal;
}

.mobile-menu-separator {
  height: 1px;
  background: #e5e5e5;
  margin: 8px 0;
}

a.mobile-register {
  background: var(--color-primary);
  border: 1px solid var(--color-primary-outline);
  text-align: center;
  font-weight: 700;
  border-radius: 14px;
  margin-top: 4px;
}

a.mobile-register:hover {
  background: var(--color-primary);
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

main {
  width: 100%;
  max-width: 100%;
  height: auto;
  overflow: hidden;
}
main .home {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
body.from-auth main,
body.from-auth main .home {
  overflow: visible;
}

main .hero {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 2;
}
main .hero h1 {
  line-height: 65px;
  letter-spacing: -0.01em;
  font-size: 70px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 10px;
  -webkit-text-stroke: var(--background-color) 5px;
  paint-order: stroke fill;
  text-shadow: 0 0 5px var(--background-color);
  width: 800px;
  max-width: 95vw;
}

main .hero h1 span {
  animation: spawn 1s both;
  animation-timing-function: ease-in-out;
  animation-delay: calc(0.1s * var(--span-index));
}

main .hero p {
  font-size: 16px;
  text-align: center;
  max-width: 500px;
  margin-bottom: 20px;
}

.grid-motion-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
}

.grid-motion-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.7) 0%, transparent 70%);
  z-index: 2;
  pointer-events: none;
}

.grid-motion-container {
  position: relative;
  width: 200vw;
  height: 150vh;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  grid-template-columns: 100%;
  gap: 1rem;
  z-index: 1;
}

.grid-motion-blur-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  -webkit-mask-image: radial-gradient(circle 200px at -200px -200px, transparent 80%, #000 100%);
  mask-image: radial-gradient(circle 200px at -200px -200px, transparent 80%, #000 100%);
}

.grid-motion-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(8, 1fr);
  will-change: transform;
}

.grid-motion-cell {
  position: relative;
  aspect-ratio: 4 / 3;
}

.grid-motion-cell-inner {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-color: #111;
}

@keyframes spawn {
  from {
    opacity: 0;
    filter: blur(20px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}

body.from-auth main .hero h1 span {
  animation: spawnFromAuth 0.5s both;
  animation-delay: calc(0.05s * var(--span-index));
}

@keyframes spawnFromAuth {
  from { opacity: 0; filter: blur(10px); transform: translateX(30px); }
  to { opacity: 1; filter: blur(0); transform: translateX(0); }
}


.claim-box {
  background: white;
  border: 1px solid #ddd;
  border-radius: 16px;
  padding: 8px;
  display: flex;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  transition: all 0.3s;
}

.claim-box:focus-within {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-color: #1d1d1b;
}

.input-group {
  flex: 1;
  display: flex;
  align-items: center;
  background: #f7f7f7;
  border-radius: 12px;
  padding: 0 20px;
  gap: 4px;
}

.domain-prefix {
  font-family: var(--font-red-hat-display);
  font-size: 17px;
  font-weight: 600;
  color: #666;
  white-space: nowrap;
}

.slug-input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--font-red-hat-display);
  font-size: 17px;
  font-weight: 600;
  padding: 15px 0;
  color: #1d1d1b;
  outline: none;
  max-width: 100px;
}

.slug-input::placeholder {
  color: #999;
  font-weight: 500;
}

.btn-claim {
  font-family: var(--font-red-hat-display);
  font-weight: 700;
  font-size: 17px;
  padding: 15px 20px;
  background: linear-gradient(135deg, #f1c800, #ffd700);
  color: #1d1d1b;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(241, 200, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-claim:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 16px rgba(241, 200, 0, 0.4);
}

.btn-claim:active {
  transform: scale(0.98);
}

.features {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 40px;
  box-sizing: border-box;
  content-visibility: auto;
  contain-intrinsic-size: auto 1200px;
}

.features h2 {
  font-size: 48px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 60px;
}

.features .grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.feature-card {
  width: calc(25% - 18px);
  min-width: 250px;
  background: var(--background-color);
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.1s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
  position: relative;
  opacity: 0;
  will-change: transform;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px;
  background: radial-gradient(
    circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    var(--color-primary) 0%,
    transparent 50%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: transparent;
}

.feature-image {
  width: 100%;
  aspect-ratio: 2/1;
  overflow: hidden;
  background: #f9f9f9;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card span {
  display: block;
  padding: 16px;
  font-family: var(--font-red-hat-display);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  color: var(--text-color);
}


.stats-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  box-sizing: border-box;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: var(--background-color);
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  padding: 36px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.stat-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  color: #1d1d1b;
}

.stat-number {
  font-family: var(--font-red-hat-display);
  font-size: 44px;
  font-weight: 900;
  font-style: italic;
  color: var(--text-color);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-barlow);
  font-size: 16px;
  font-weight: 400;
  color: #666;
}

.stat-highlight {
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
}

.stat-highlight-number {
  display: block;
  font-family: var(--font-red-hat-display);
  font-size: 120px;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  color: var(--text-color);
}

.stat-highlight-label {
  display: block;
  font-family: var(--font-barlow);
  font-size: 20px;
  font-weight: 400;
  color: #666;
  margin-top: 8px;
}

.marketplace-section {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px;
  box-sizing: border-box;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.marketplace-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.marketplace-header {
  margin-bottom: 40px;
}

.marketplace-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--color-primary);
  border: 1px solid var(--color-primary-outline);
  border-radius: 80px;
  font-family: var(--font-red-hat-display);
  font-size: 14px;
  font-weight: 700;
  color: #1d1d1b;
  margin-bottom: 20px;
}

.marketplace-header h2 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 12px;
}

.marketplace-subtitle {
  font-size: 18px;
  color: #666;
  font-family: var(--font-barlow);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.marketplace-preview {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.marketplace-frame {
  height: 420px;
  border-radius: 20px;
  border: 1px solid #e5e5e5;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.marketplace-frame iframe {
  width: 166.67%;
  height: 166.67%;
  border: none;
  overflow: hidden;
  transform: scale(0.6);
  transform-origin: 0 0;
}

.marketplace-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(transparent, var(--background-color));
  border-radius: 0 0 20px 20px;
  pointer-events: none;
}

.marketplace-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.btn-marketplace {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--color-primary);
  color: #1d1d1b;
  border: 1px solid var(--color-primary-outline);
  border-radius: 80px;
  font-family: var(--font-red-hat-display);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 16px rgba(241, 200, 0, 0.2);
}

.btn-marketplace:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(241, 200, 0, 0.35);
  font-style: normal;
}

.btn-marketplace:active {
  transform: scale(0.98);
}

.btn-marketplace-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: transparent;
  color: var(--text-color);
  border: 1px solid #e5e5e5;
  border-radius: 80px;
  font-family: var(--font-red-hat-display);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-marketplace-secondary:hover {
  border-color: var(--text-color);
  font-style: normal;
}

@media (max-width: 970px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-number { font-size: 36px; }
  .stat-highlight-number { font-size: 80px; }
  .stat-highlight-label { font-size: 17px; }
}

@media (max-width: 768px) {
  .marketplace-section { padding: 60px 20px; }
  .marketplace-header h2 { font-size: 32px; }
  .marketplace-frame { height: 320px; border-radius: 14px; }
  .marketplace-cta { flex-direction: column; }
}

@media (max-width: 680px) {
  .stats-section { padding: 60px 16px; }
  .stats-grid { gap: 14px; }
  .stat-card { padding: 24px 16px; border-radius: 14px; }
  .stat-number { font-size: 30px; }
  .stat-label { font-size: 14px; }
  .stat-highlight-number { font-size: 64px; }
  .stat-highlight-label { font-size: 15px; }
  .stat-icon { width: 44px; height: 44px; border-radius: 12px; }
  .stat-icon svg { width: 22px; height: 22px; }
  .marketplace-header h2 { font-size: 28px; }
  .marketplace-frame { height: 260px; }
  .btn-marketplace, .btn-marketplace-secondary { padding: 14px 24px; font-size: 14px; }
}

@media (max-width: 450px) {
  .stat-number { font-size: 26px; }
  .stat-label { font-size: 13px; }
  .marketplace-header h2 { font-size: 24px; }
  .marketplace-subtitle { font-size: 15px; }
}

.reviews-section {
  width: 100%;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}

.reviews-section h2 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 48px;
}

.reviews-marquee {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 80px, #000 calc(100% - 80px), transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 80px, #000 calc(100% - 80px), transparent);
  margin-bottom: 12px;
  transform: rotate(-2deg);
}

.reviews-marquee:last-child {
  margin-bottom: 0;
}

.reviews-track {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  width: max-content;
}

.reviews-track-left {
  animation: reviews-scroll-left 20s linear infinite;
}

.reviews-track-right {
  animation: reviews-scroll-right 20s linear infinite;
}

.reviews-marquee:hover .reviews-track {
  animation-play-state: paused;
}

@keyframes reviews-scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

@keyframes reviews-scroll-right {
  0% { transform: translateX(-33.333%); }
  100% { transform: translateX(0); }
}

.review-item {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 16px 20px;
  width: 300px;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  flex-shrink: 0;
  text-align: left;
}

.review-item-stars {
  display: flex;
  gap: 3px;
}

.review-item-text {
  font-family: var(--font-barlow);
  font-size: 15px;
  line-height: 1.5;
  color: #444;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-item-text:hover {
  -webkit-line-clamp: unset;
}

a.review-item-author {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-family: var(--font-red-hat-display);
  font-weight: 700;
  font-size: 12px;
  color: #1d1d1b;
  text-decoration: none;
  transition: opacity 0.15s;
}

a.review-item-author:hover {
  opacity: 0.7;
}

.review-item-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.review-item-avatar-placeholder {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #e5e5e5;
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

@media (max-width: 970px) {
  .reviews-section h2 { font-size: 36px; }
}

@media (max-width: 600px) {
  .reviews-section { padding: 60px 0; }
  .reviews-section h2 { font-size: 28px; margin-bottom: 32px; }
  .review-item { width: 260px; min-height: 140px; }
}

.pricing {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 100px 40px;
  box-sizing: border-box;
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}

.pricing h2 {
  font-size: 48px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 60px;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.pricing-card {
  width: 380px;
  background: var(--background-color);
  border: 1px solid #e5e5e5;
  border-radius: 24px;
  padding: 40px 28px;
  box-sizing: border-box;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pricing-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(0.15s * var(--card-index));
}

.pricing-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  transform: translateY(-8px);
}

.pricing-card.recommended {
  border: 2px solid var(--color-primary);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: var(--text-color);
  font-family: var(--font-red-hat-display);
  font-size: 14px;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-header {
  text-align: center;
  margin-bottom: 20px;
}

.pricing-header h3 {
  font-family: var(--font-red-hat-display);
  font-size: 26px;
  font-weight: 900;
  font-style: italic;
  margin: 0 0 8px 0;
}

.plan-type {
  font-family: var(--font-red-hat-display);
  font-size: 16px;
  font-weight: 500;
  color: #666;
}

.pricing-separator {
  width: 100%;
  height: 1px;
  background: #e5e5e5;
  margin-bottom: 24px;
}

.pricing-features-wrapper {
  max-height: 200px;
  overflow: hidden;
  position: relative;
  transition: max-height 0.4s ease;
}

.pricing-features-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, var(--background-color));
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.pricing-features-wrapper.expanded {
  max-height: 600px;
}

.pricing-features-wrapper.expanded::after {
  opacity: 0;
}

.features-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  margin-bottom: 16px;
  background: transparent;
  border: none;
  font-family: var(--font-red-hat-display);
  font-size: 14px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: all 0.2s ease;
}

.features-toggle:hover {
  color: var(--text-color);
}

.features-toggle svg {
  transition: transform 0.3s ease;
}

.features-toggle.expanded svg {
  transform: rotate(180deg);
}

.pricing-card.free .pricing-features-wrapper {
  max-height: none;
}

.pricing-card.free .pricing-features-wrapper::after {
  display: none;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.pricing-features li {
  font-family: var(--font-barlow);
  font-size: 15px;
  font-weight: 400;
  color: var(--text-color);
  margin-bottom: 12px;
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}

.pricing-features li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: var(--text-color);
}

.pricing-price {
  text-align: center;
  margin-bottom: 8px;
}

.pricing-price .price {
  font-family: var(--font-red-hat-display);
  font-size: 48px;
  font-weight: 900;
  font-style: italic;
  color: var(--text-color);
}

.pricing-price .period {
  font-family: var(--font-barlow);
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  color: #666;
  margin-left: 4px;
}

.yearly-savings {
  text-align: center;
  margin-bottom: 12px;
}

.yearly-savings span {
  background: var(--color-primary);
  color: var(--text-color);
  font-family: var(--font-red-hat-display);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
}

.pricing-btn {
  display: block;
  width: 100%;
  padding: 16px;
  font-family: var(--font-red-hat-display);
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-radius: 14px;
  transition: all 0.2s ease;
  box-sizing: border-box;
  background: #f5f5f5;
  color: var(--text-color);
  border: 1px solid #e5e5e5;
}

.pricing-btn:hover {
  background: #eee;
  font-style: normal;
  transform: scale(1.02);
}

.pricing-btn.premium-btn {
  background: linear-gradient(135deg, #f1c800, #ffd700);
  border: 1px solid var(--color-primary-outline);
  box-shadow: 0 4px 16px rgba(241, 200, 0, 0.3);
}

.pricing-btn.premium-btn:hover {
  box-shadow: 0 6px 24px rgba(241, 200, 0, 0.4);
}


.faq {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 100px 40px;
  box-sizing: border-box;
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}

.faq h2 {
  font-size: 48px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 60px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--background-color);
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item.visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(0.08s * var(--faq-index));
}

.faq-item:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-color: #d0d0d0;
}

.faq-item.open {
  border-color: var(--color-primary);
}

.faq-question {
  width: 100%;
  padding: 24px 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
}

.faq-question span {
  font-family: var(--font-red-hat-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-color);
}

.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: #666;
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
  color: var(--color-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 28px 24px 28px;
  margin: 0;
  font-family: var(--font-barlow);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #444;
}

@media (max-width: 600px) {
  .faq h2 {
    font-size: 32px;
  }

  .faq-question {
    padding: 20px;
  }

  .faq-question span {
    font-size: 16px;
  }

  .faq-answer p {
    padding: 0 20px 20px 20px;
    font-size: 15px;
  }
}


@media (max-width: 970px) {
  .header .nav {
    display: none !important;
  }
  .header .cta a:not(.register) {
    display: none;
  }
  .header .cta {
    gap: 10px;
  }
  .header .cta a.register {
    height: 44px;
    padding-inline: 18px;
    font-size: 14px;
  }
  header .header {
    min-width: 0px;
  }
  .burger-btn {
    display: flex;
  }
  .mobile-menu {
    display: flex;
  }
  .mobile-menu-overlay {
    display: block;
  }
  main .hero h1 {
    font-size: 60px;
  }
}

@media (max-width: 680px) {
  .header .logo h1 {
    display: none !important;
  }
  main .hero h1 {
    font-size: 45px;
  }
  main .hero p {
    font-size: 14px;
    max-width: 90vw;
    padding: 0 10px;
  }
  .claim-box {
    padding: 5px;
    gap: 5px;
    border-radius: 12px;
    max-width: 90vw;
  }
  .input-group {
    padding: 0 12px;
    border-radius: 10px;
  }
  .domain-prefix {
    font-size: 14px;
  }
  .slug-input {
    font-size: 14px;
    padding: 10px 0;
    max-width: 80px;
  }
  .btn-claim {
    font-size: 14px;
    padding: 10px 14px;
    border-radius: 10px;
  }
  .btn-claim svg {
    width: 16px;
    height: 16px;
  }
  .features {
    padding: 60px 16px;
  }
  .features h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .features .grid {
    gap: 14px;
  }
  .features .grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
  }
  .feature-card {
    min-width: 0 !important;
    width: 100% !important;
  }
  .feature-card span {
    font-size: 13px;
    padding: 10px;
  }
  .pricing {
    padding: 60px 16px;
  }
  .pricing h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .pricing-card {
    width: 100%;
    padding: 28px 20px;
  }
  .pricing-header h3 {
    font-size: 20px;
  }
  .pricing-price .price {
    font-size: 36px;
  }
  .faq {
    padding: 60px 16px;
  }
  .faq h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .marketplace-section h2 {
    font-size: 28px;
  }
  .reviews-section h2 {
    font-size: 28px;
  }
}

@media (max-width: 450px) {
  main .hero h1 {
    font-size: 30px;
    line-height: normal;
  }
  .features h2,
  .pricing h2,
  .faq h2,
  .marketplace-section h2,
  .reviews-section h2 {
    font-size: 24px;
  }
  .feature-card span {
    font-size: 12px;
    padding: 8px;
  }
}

.bottom-cta-section {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 100px 40px;
  box-sizing: border-box;
  text-align: center;
}

.bottom-cta-section h2 {
  font-family: var(--font-red-hat-display);
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 16px;
}

.bottom-cta-section p {
  font-size: 18px;
  color: #666;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.bottom-cta-section .cta {
  display: flex;
  justify-content: center;
}

/* Footer landing styles */
.landing-footer {
  width: 100%;
  background: linear-gradient(180deg, rgba(255,202,56,0.06), transparent);
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 36px 0;
  margin-top: 40px;
}
.landing-footer .footer-content {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-sizing: border-box;
}
.landing-footer .footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-red-hat-display);
  font-weight: 800;
  color: var(--text-color);
}
.landing-footer .footer-brand img {
  height: 36px;
}
.landing-footer .footer-links {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
}
.landing-footer .footer-links a {
  color: var(--text-color);
  text-decoration: none;
  font-family: var(--font-barlow);
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 0.18s ease, color 0.18s ease, transform 0.12s ease;
}
.landing-footer .footer-links a:hover {
  background: var(--color-primary);
  color: var(--background-color);
  transform: translateY(-2px);
}
.landing-footer .footer-copyright {
  color: #666;
  font-family: var(--font-barlow);
  font-weight: 400;
}

@media (max-width: 900px) {
  .landing-footer .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }
  .landing-footer .footer-links {
    flex-wrap: wrap;
  }
}

/* Legal pages styles */
.legal-header {
  background: transparent;
  border-bottom: none;
  padding: 24px 0;
}
.legal-header .header-content {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.legal-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  box-sizing: border-box;
  color: #1d1d1b;
}
.legal-container h1 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 12px;
}
.last-update {
  color: #666;
  font-size: 14px;
  margin-bottom: 28px;
}
.info-box {
  background: rgba(255, 236, 179, 0.4);
  border: 1px solid rgba(224, 161, 0, 0.12);
  border-radius: 10px;
  padding: 14px 18px;
  margin: 18px 0;
}
.warning-box {
  background: rgba(255, 224, 178, 0.4);
  border: 1px solid rgba(245, 158, 11, 0.12);
  border-radius: 10px;
  padding: 14px 18px;
  margin: 18px 0;
}
.legal-container h2 {
  font-size: 22px;
  margin-top: 36px;
}
.legal-container p, .legal-container ul, .legal-container li {
  color: #333;
  line-height: 1.7;
}
.legal-nav {
  margin-top: 48px;
  padding: 16px;
  border-radius: 10px;
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.04);
}
.legal-nav-title { color: #666; font-weight:700; font-size:12px; }
.legal-nav-links a { color: var(--text-color); text-decoration:none; margin-right:12px; }

table.legal-table { width:100%; border-collapse: collapse; margin: 18px 0; }
table.legal-table th, table.legal-table td { padding: 10px 12px; border:1px solid #eee; text-align:left; }
table.legal-table th { background: #fafafa; }

@media (max-width:640px) {
  .legal-container { padding: 90px 14px 60px; }
  .legal-container h1 { font-size:28px; }
}

/* Back link used in legal headers */
.back-link {
  color: #666;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-barlow);
  font-weight: 600;
}
.back-link svg {
  width: 16px;
  height: 16px;
  transform: translateY(1px);
}
.back-link:hover { color: var(--color-primary-outline); }