/* ============================================================
   DAYMARK — Website Stylesheet
   ============================================================ */

/* VARIABLES */
:root {
  --bg:            #0a0a0a;
  --surface:       #111111;
  --surface-2:     #1a1a1a;
  --border:        rgba(255, 255, 255, 0.06);
  --amber:         #c8862c;
  --amber-light:   #d99a42;
  --amber-dim:     rgba(200, 134, 44, 0.12);
  --teal:          #2d6b5e;
  --teal-light:    #4db8a4;
  --teal-dim:      rgba(77, 184, 164, 0.10);
  --text:          #f0ebe3;
  --text-secondary:#9e9488;
  --text-muted:    #5c5650;
  --serif:         'Cormorant Garamond', Georgia, serif;
  --sans:          'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius:        20px;
  --max-w:         1160px;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
em { font-style: italic; }

/* Subtle noise overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 300px 300px;
  opacity: 0.022;
  pointer-events: none;
  z-index: 9999;
}

/* LAYOUT */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 36px;
}

/* TYPOGRAPHY */
h1, h2 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.025em;
}
h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(44px, 5.5vw, 72px); }
h2 { font-size: clamp(36px, 4.2vw, 58px); }
h1 em, h2 em { color: var(--amber); }

.section-eyebrow {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 18px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--amber);
  color: #1c1004;
  font-weight: 600;
}
.btn-primary:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(200, 134, 44, 0.28);
}
.btn-nav {
  background: transparent;
  border: 1px solid rgba(200, 134, 44, 0.38);
  color: var(--amber);
  padding: 8px 20px;
  font-size: 14px;
}
.btn-nav:hover {
  background: rgba(200, 134, 44, 0.08);
  border-color: var(--amber);
}
.btn-large {
  padding: 18px 38px;
  font-size: 16px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.35s, border-color 0.35s;
}
nav.scrolled {
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
}
.nav-logo em { color: var(--amber); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}
.hero-text { position: relative; z-index: 1; }
.hero-text h1 { margin-bottom: 24px; }
.hero-desc {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.72;
  max-width: 440px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.watch-teaser {
  display: flex;
  align-items: center;
  gap: 10px;
}
.badge {
  background: rgba(200, 134, 44, 0.13);
  border: 1px solid rgba(200, 134, 44, 0.28);
  color: var(--amber);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}
.watch-teaser-text {
  font-size: 13px;
  color: var(--text-muted);
}

/* Hero glows */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
}
.glow-amber {
  width: 700px; height: 700px;
  background: var(--amber);
  right: -120px; top: -160px;
  opacity: 0.07;
}
.glow-teal {
  width: 500px; height: 500px;
  background: var(--teal);
  left: -100px; bottom: -100px;
  opacity: 0.08;
}

/* ============================================================
   PHONE MOCKUP
   ============================================================ */
.hero-device {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.phone-frame {
  width: 262px;
  height: 536px;
  background: linear-gradient(155deg, #2e2e30 0%, #1c1c1e 55%, #141416 100%);
  border-radius: 46px;
  padding: 11px;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.09),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 60px 120px rgba(0, 0, 0, 0.85),
    0 24px 48px rgba(0, 0, 0, 0.5);
  animation: float 7s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-14px) rotate(0.4deg); }
}
.phone-island {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 28px;
  background: #000;
  border-radius: 16px;
  z-index: 10;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: #0a0a0a;
  border-radius: 36px;
  overflow: hidden;
  position: relative;
}
.app-ui {
  position: absolute;
  inset: 0;
  padding: 54px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* App header inside phone */
.app-logo-sm {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  display: block;
}
.app-logo-sm em { color: var(--amber); }
.app-tagline {
  font-size: 8px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  display: block;
  margin-top: 2px;
}

/* Filter tabs */
.app-filters { display: flex; gap: 6px; margin-top: 2px; }
.filter {
  font-size: 8.5px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
}
.filter.active {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--text);
}

/* Cards inside phone */
.app-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  flex: 1;
}
.app-card {
  border-radius: 16px;
  padding: 11px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  overflow: hidden;
}
.card-green { background: radial-gradient(ellipse at 35% 25%, #1d4a3e 0%, #0d2318 100%); }
.card-gold  { background: radial-gradient(ellipse at 35% 25%, #3e2b10 0%, #1b1106 100%); }

.c-icon {
  width: 26px; height: 26px;
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.green-icon { background: rgba(77, 184, 164, 0.2); color: var(--teal-light); }
.gold-icon  { background: rgba(200, 134, 44, 0.25); color: var(--amber); }

.c-num {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
}
.green-num { color: var(--teal-light); }
.gold-num  { color: var(--amber); }

.c-label {
  font-size: 6.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(240, 235, 227, 0.5);
  margin-top: 2px;
}
.c-sublabel { font-size: 6.5px; color: rgba(240, 235, 227, 0.32); }
.c-sep {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 9px 0 5px;
}
.c-title { font-size: 8px; font-weight: 600; color: var(--text); line-height: 1.3; }
.c-date  { font-size: 6.5px; color: rgba(240, 235, 227, 0.32); }

/* FAB */
.app-fab {
  background: var(--amber);
  color: #1c1004;
  font-size: 10px;
  font-weight: 700;
  padding: 10px 0;
  border-radius: 100px;
  text-align: center;
  margin-top: auto;
  letter-spacing: 0.01em;
  flex-shrink: 0;
}

/* ============================================================
   FEATURES
   ============================================================ */
.features { padding: 130px 0; }
.section-header {
  text-align: center;
  margin-bottom: 72px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.feature-item:hover {
  transform: translateY(-5px);
  border-color: rgba(200, 134, 44, 0.22);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
}
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.amber-icon-bg {
  background: rgba(200, 134, 44, 0.12);
  border: 1px solid rgba(200, 134, 44, 0.16);
  color: var(--amber);
}
.teal-icon-bg {
  background: rgba(77, 184, 164, 0.10);
  border: 1px solid rgba(77, 184, 164, 0.13);
  color: var(--teal-light);
}
.feature-item h3 { margin-bottom: 10px; }
.feature-item p  { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ============================================================
   APPLE WATCH SECTION
   ============================================================ */
.watch-section {
  padding: 130px 0;
  background: linear-gradient(180deg, var(--bg) 0%, #0d0904 50%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}
.watch-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.watch-content h2 { margin-bottom: 20px; }
.watch-content p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.72;
  max-width: 400px;
  margin-bottom: 36px;
}
.watch-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.watch-coming-note {
  font-size: 13px;
  color: var(--text-muted);
}

/* Watch mockup */
.watch-mockup {
  display: flex;
  justify-content: center;
  position: relative;
  padding-bottom: 44px;
}
.watch-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
.watch-band {
  width: 138px;
  height: 80px;
  position: relative;
  z-index: 0;
}
.watch-band-top {
  background: linear-gradient(to top, #1c1c1e, #282828);
  border-radius: 10px 10px 0 0;
  border: 1px solid rgba(255,255,255,0.05);
  border-bottom: none;
  margin-bottom: -3px;
}
.watch-band-bottom {
  background: linear-gradient(to bottom, #1c1c1e, #282828);
  border-radius: 0 0 12px 12px;
  border: 1px solid rgba(255,255,255,0.05);
  border-top: none;
  margin-top: -3px;
}
.watch-body {
  width: 180px;
  height: 214px;
  background: linear-gradient(150deg, #323234 0%, #1e1e20 60%, #161618 100%);
  border-radius: 54px;
  padding: 14px;
  position: relative;
  z-index: 1;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 40px 80px rgba(0, 0, 0, 0.75),
    0 0 60px rgba(200, 134, 44, 0.06);
}
.watch-face {
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 40% 30%, #3d2510 0%, #1c1006 55%, #0e0804 100%);
  border-radius: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.watch-face-ui { text-align: center; padding: 8px; }
.wf-icon {
  color: var(--amber);
  font-size: 16px;
  display: block;
  margin-bottom: 4px;
}
.wf-number {
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 500;
  color: var(--amber);
  line-height: 1;
  letter-spacing: -0.03em;
}
.wf-label {
  font-size: 7.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(240, 235, 227, 0.48);
  margin-top: 5px;
  text-transform: uppercase;
}
.wf-sep {
  height: 1px;
  background: rgba(255, 255, 255, 0.09);
  margin: 10px 8px 8px;
}
.wf-title {
  font-size: 9.5px;
  font-weight: 600;
  color: var(--text);
}
.watch-crown {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-65%);
  width: 8px;
  height: 38px;
  background: linear-gradient(to right, #2e2e30, #404044);
  border-radius: 4px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 2px 6px rgba(0,0,0,0.5);
}
.watch-side-btn {
  position: absolute;
  right: -8px;
  top: calc(50% + 22px);
  width: 6px;
  height: 24px;
  background: linear-gradient(to right, #2e2e30, #404044);
  border-radius: 3px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 2px 6px rgba(0,0,0,0.5);
}

/* Watch ambient glow */
.watch-orb-glow {
  position: absolute;
  width: 340px; height: 340px;
  background: var(--amber);
  border-radius: 50%;
  opacity: 0.055;
  filter: blur(70px);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

/* Coming soon pill */
.watch-coming-pill {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(200, 134, 44, 0.1);
  border: 1px solid rgba(200, 134, 44, 0.3);
  color: var(--amber);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  white-space: nowrap;
  z-index: 2;
}

/* ============================================================
   CTA
   ============================================================ */
.cta-section {
  padding: 150px 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(200, 134, 44, 0.05) 0%, transparent 65%);
}
.cta-container { text-align: center; }
.cta-container h2 { margin-bottom: 16px; }
.cta-container p {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 36px;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  border-top: 1px solid var(--border);
  padding: 44px 0;
}
.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
}
.footer-logo em { color: var(--amber); }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 12px; color: var(--text-muted); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-in, .fade-in-delay {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-in-delay { transition-delay: 0.18s; }
.fade-in.visible, .fade-in-delay.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — Tablet
   ============================================================ */
@media (max-width: 1024px) {
  .hero-container  { gap: 52px; }
  .watch-container { gap: 52px; }
  .features-grid   { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   RESPONSIVE — Mobile
   ============================================================ */
@media (max-width: 768px) {
  .container { padding: 0 20px; }

  .hero {
    padding: 96px 0 64px;
    align-items: flex-start;
  }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 52px;
    text-align: center;
  }
  .hero-desc { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-actions { align-items: center; }
  .hero-device { order: -1; }

  .features { padding: 90px 0; }
  .features-grid { grid-template-columns: 1fr; gap: 16px; }
  .section-header { margin-bottom: 52px; }

  .watch-section { padding: 90px 0; }
  .watch-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .watch-content p  { max-width: 100%; }
  .watch-actions    { justify-content: center; }
  .watch-mockup     { margin-top: 56px; }

  .cta-section { padding: 100px 0; }

  .footer-container { flex-direction: column; text-align: center; gap: 16px; }
}

@media (max-width: 480px) {
  .phone-frame { width: 220px; height: 450px; }
  .c-num { font-size: 34px; }
  h1 { font-size: 40px; }
  h2 { font-size: 34px; }
  .email-form { flex-direction: column; }
  .email-form input[type="email"] { width: 100%; }
}

/* ============================================================
   EMAIL NOTIFICATION FORM
   ============================================================ */
.coming-soon-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(200, 134, 44, 0.1);
  border: 1px solid rgba(200, 134, 44, 0.25);
  color: var(--amber);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.01em;
}
.notify-label {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 4px 0 0;
}
.email-form {
  display: flex;
  gap: 8px;
  max-width: 420px;
  margin-top: 4px;
}
.email-form input[type="email"] {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 13px 20px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  min-width: 0;
}
.email-form input[type="email"]::placeholder { color: var(--text-muted); }
.email-form input[type="email"]:focus { border-color: rgba(200, 134, 44, 0.4); }
.notify-success {
  display: none;
  font-size: 14px;
  color: var(--teal-light);
  margin-top: 12px;
}
.notify-success.visible { display: block; }
.email-form-cta { justify-content: center; max-width: 100%; }

/* ============================================================
   PHONE MOCKUP — UPDATED CARD LAYOUT
   ============================================================ */
.app-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.app-icon-btn {
  width: 22px;
  height: 22px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(240, 235, 227, 0.4);
}
.app-filter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.app-filter-row .app-filters { margin-top: 0; }
.app-count {
  font-size: 7.5px;
  color: var(--text-muted);
}
.app-card-wrap {
  display: flex;
  flex-direction: column;
}
/* Override old card layout */
.app-card {
  padding: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
}
.c-badge {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.green-badge { background: rgba(77, 184, 164, 0.22); color: var(--teal-light); }
.gold-badge  { background: rgba(200, 134, 44, 0.28); color: var(--amber); }
.c-card-foot {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.c-art {
  display: flex;
  align-items: flex-end;
  color: rgba(77, 184, 164, 0.65);
}
.c-countdown { display: flex; flex-direction: column; gap: 3px; }
.c-card-foot .c-num { font-size: 30px; line-height: 1; }
.c-pill {
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.88);
  color: #1c1004;
  padding: 2.5px 7px;
  border-radius: 100px;
  display: inline-block;
  text-transform: uppercase;
}
.c-info {
  padding: 5px 2px 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
