/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  text-decoration: none;
  white-space: nowrap;
}

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

.btn-primary {
  background: linear-gradient(180deg, var(--cyan), var(--cyan-dark));
  color: #fff;
  box-shadow: 0 4px 16px rgba(52, 168, 216, 0.35);
}

.btn-primary:hover {
  color: #fff;
  box-shadow: 0 6px 20px rgba(52, 168, 216, 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-ghost:hover {
  color: var(--gold);
  background: rgba(243, 189, 69, 0.08);
}

.btn-gold {
  background: linear-gradient(180deg, #f4d77a, #b8862a);
  color: var(--bg-deep);
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(243, 189, 69, 0.3);
}

.btn-gold:hover {
  color: var(--bg-deep);
}

.btn-icon::before {
  content: "▶";
  font-size: 0.7em;
}

/* Section title */
.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--gold);
  white-space: nowrap;
}

.section-title::before,
.section-title::after {
  content: "";
  flex: 1;
  max-width: 280px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}

.section-title .diamond {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* Watch frame */
.watch-frame {
  width: clamp(140px, 18vw, 220px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 3px solid var(--gold);
  box-shadow: var(--shadow-watch);
  overflow: hidden;
  background: var(--bg-deep);
  flex-shrink: 0;
}

.watch-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.watch-frame--sm {
  width: clamp(100px, 14vw, 160px);
}

.watch-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--gold-muted);
  text-align: center;
  margin-top: 0.5rem;
  text-transform: uppercase;
}

/* Feature card */
.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
}

.feature-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  overflow: hidden;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 20px rgba(243, 189, 69, 0.15);
}

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

.feature-card h3 {
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 220px;
}

/* Step badge */
.step-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.step-badge {
  flex-shrink: 0;
  width: 48px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(180deg, var(--cyan), var(--cyan-dark));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  box-shadow: 0 4px 12px rgba(52, 168, 216, 0.3);
}

.step-item p {
  font-size: 0.95rem;
  color: var(--text);
  padding-top: 0.5rem;
}

/* Screenshot ring */
.screenshot-ring {
  flex-shrink: 0;
  width: clamp(120px, 15vw, 170px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid var(--gold);
  overflow: hidden;
  box-shadow: var(--shadow-watch);
  scroll-snap-align: center;
}

.screenshot-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin-inline: auto;
}

.faq-item {
  border-bottom: 1px solid var(--bg-slate);
}

.faq-item summary {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold);
  padding: 1.25rem 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.25rem;
  color: var(--cyan);
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding-bottom: 1.25rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Social icons */
.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--bg-slate);
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 700;
  transition: border-color 0.2s, color 0.2s;
}

.social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Legal / text pages */
.page-legal {
  padding-block: var(--section-pad);
  background: var(--bg-deep);
}

.page-legal .container {
  max-width: 720px;
}

.page-legal h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--gold);
  margin-bottom: 1rem;
}

.page-legal h2 {
  font-size: 1rem;
  color: var(--gold-muted);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.page-legal p,
.page-legal li {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.page-legal ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.page-legal code {
  font-size: 0.85em;
  color: var(--cyan);
}

.page-legal-meta {
  font-size: 0.85rem;
  border-bottom: 1px solid var(--bg-slate);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

.page-legal-back {
  margin-top: 2.5rem;
}
