/* SalonTime landing — same design language as app: white, black, orange, grey, rounded cards */

:root {
  --bg: #ffffff;
  --text: #111111;
  --text-muted: #6b7280;
  --accent: #f97316;
  --accent-hover: #ea580c;
  --border: #e5e7eb;
  --card-bg: #f9fafb;
  --radius: 16px;
  --radius-sm: 12px;
  --radius-pill: 9999px;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 16px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

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

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-select {
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  outline: none;
}

.lang-select:hover {
  border-color: var(--accent);
}

.header-coming-soon {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
}

.logo {
  font-weight: 700;
  font-size: 20px;
  color: var(--text);
  text-decoration: none;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
}

.nav a:hover {
  color: var(--accent);
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }
}

/* Hero */
.hero {
  padding: 80px 0 100px;
  text-align: center;
}

.hero-title {
  font-size: clamp(36px, 6vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-title-line {
  display: block;
  color: var(--text);
}

.hero-title-accent {
  display: block;
  color: var(--accent);
}

.hero-subtitle {
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: 18px;
  color: var(--text-muted);
}

.hero-coming-soon {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.hero-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--card-bg);
  border: 1px solid var(--border);
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Showcase sections */
.showcase {
  padding: 80px 0;
}

.showcase-alt {
  background: var(--card-bg);
}

.showcase-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}

.showcase-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.showcase-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.showcase-desc {
  font-size: 16px;
  color: var(--text-muted);
}

.phone-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* iPhone 14 Pro–style frame: accurate proportions, Dynamic Island, thin bezel
   Device ~71.5×146.7mm, screen 390×844 pt → frame scale matches */
.iphone-14 {
  --phone-width: 280px;
  --bezel: 3px;
  --screen-radius: 40px;
  width: var(--phone-width);
  padding: var(--bezel);
  background: #000;
  border-radius: 46px;
  box-shadow:
    0 0 0 2px #2c2c2e,
    0 0 0 4px #1c1c1e,
    0 20px 40px rgba(0,0,0,0.4);
  position: relative;
}

/* Side Buttons */
.iphone-14::before,
.iphone-14::after {
  content: '';
  position: absolute;
  background: #1c1c1e;
  border-radius: 2px;
}

/* Silent & Volume */
.iphone-14::before {
  left: -3px;
  top: 80px;
  width: 3px;
  height: 24px;
  box-shadow: 0 40px 0 #1c1c1e, 0 80px 0 #1c1c1e; /* Volume up/down */
}

/* Side Button (Power) */
.iphone-14::after {
  right: -3px;
  top: 140px;
  width: 3px;
  height: 50px;
}

.iphone-14-screen {
  width: 100%;
  aspect-ratio: 390 / 844;
  border-radius: var(--screen-radius);
  overflow: hidden;
  background: #000;
  position: relative;
  border: 1px solid rgba(255,255,255,0.1);
}

.screen-glass {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(255,255,255,0.1) 0%, transparent 40%, rgba(255,255,255,0.05) 60%, transparent 100%);
  pointer-events: none;
  z-index: 3;
}

.screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: inherit;
}

@media (max-width: 640px) {
  .iphone-14 {
    --phone-width: 260px;
    --bezel: 2px;
    --screen-radius: 38px;
    border-radius: 42px;
  }
}

/* Features */
.features {
  padding: 80px 0 100px;
  background: var(--bg);
}

.features-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.feature-card:hover {
  box-shadow: var(--shadow);
  border-color: rgba(249, 115, 22, 0.3);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

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

/* CTA */
.cta {
  padding: 80px 0;
  background: var(--card-bg);
  border-top: 1px solid var(--border);
}

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

.cta-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.cta-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.site-footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 14px;
  color: var(--text-muted);
}

@media (max-width: 640px) {
  .hero {
    padding: 48px 0 64px;
  }
  .showcase,
  .features,
  .cta {
    padding: 48px 0 64px;
  }
  .header-coming-soon {
    display: none;
  }
}
