/* DynamicLake styles — inspired by tryalcove.com */
:root{
  --bg: #F7EBDD;         /* warm beige */
  --ink: #1C1C1C;        /* almost black */
  --muted: #5E5E5E;      /* mid grey */
  --card: #FFFFFF;
  --pill: rgba(28,28,28,0.92);
  --glass: rgba(28,28,28,0.6);
  --accent: #1C1C1C;
  --radius-xl: 26px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-soft: 0 10px 30px rgba(0,0,0,0.12);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji", sans-serif;
  color:var(--ink);
  background:var(--bg);
  line-height:1.4;
  text-rendering:optimizeLegibility;
}

.container{max-width:1200px; margin:0 auto; padding:20px 24px}
.container.narrow{max-width:900px}

.site-header{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px;
}
.brand{display:flex; align-items:center; gap:12px; text-decoration:none; color:var(--ink)}
.logo-mark{
  width:36px; height:36px; border-radius:12px; background:var(--pill);
  color:#fff; display:grid; place-items:center; font-weight:800; letter-spacing:0.5px
}
.brand-text{font-weight:700; font-size:20px}

.nav{display:flex; align-items:center; gap:18px}
.nav-link{color:var(--muted); text-decoration:none; font-weight:500}
.nav-link:hover{color:var(--ink)}
.nav-cta, .btn-primary, .btn-ghost{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 20px; border-radius:999px; text-decoration:none; font-weight:800; letter-spacing:.2px;
  border:1.5px solid var(--ink); transition:transform .12s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.nav-cta, .btn-primary{
  background: var(--ink); color:#fff; border-color:#000;
  box-shadow: 0 10px 18px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.15);
}
.nav-cta:hover, .btn-primary:hover{ transform: translateY(-1px); box-shadow:0 14px 28px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.2); }
.nav-cta:active, .btn-primary:active{ transform:translateY(0px); box-shadow:0 8px 18px rgba(0,0,0,.26); }
.btn-ghost{
  background:#fff; color:var(--ink); border-color:var(--ink); 
  box-shadow: 0 8px 18px rgba(0,0,0,.12), inset 0 1px 0 rgba(255,255,255,.6);
}
.btn-ghost:hover{ background:#f2eee8 }
.btn-ghost:active{ background:#ebe6de }

.nav-cta, .btn-primary{background:var(--ink); color:#fff;}
.btn-ghost{background:transparent; color:var(--ink); border-color:var(--ink);}
.btn-ghost:hover{background:rgba(0,0,0,0.06)}

.hero{display:grid; grid-template-columns:1.05fr 1.2fr; gap:40px; align-items:center; padding-top:34px; padding-bottom:30px}
.hero h1{font-size:56px; line-height:1.05; margin:0 0 10px 0}
.hero p{font-size:18px; color:var(--muted); max-width:50ch}
.cta-row{display:flex; gap:12px; margin-top:14px; flex-wrap:wrap}

.device{
  position:relative;
  height:560px;
  border-radius:38px;
  background: radial-gradient(1200px 600px at 70% 100%, #7E64E5, #412883 60%, #2B185A 100%),
              linear-gradient(180deg, #3D2C6B, #1D1142);
  box-shadow:var(--shadow-soft);
  overflow:hidden;
  border:10px solid rgba(255,255,255,0.22);
}
.status-bar{
  position:absolute; top:18px; left:18px; right:18px;
  display:flex; align-items:center; justify-content:space-between;
  background: rgba(255,255,255,0.08);
  border-radius:14px; padding:8px 12px; color:#fff; font-weight:600;
  backdrop-filter: blur(6px);
}
.status-left{display:flex; gap:8px; align-items:center}
.apple-chip{width:30px; height:30px; border-radius:10px; background:#1f1f1f; display:grid; place-items:center}
.status-right{display:flex; gap:10px; align-items:center}
.status-icon{opacity:.9}
.status-clock{opacity:.95}

.island{
  position:absolute; top:78px; left:50%; transform:translateX(-50%);
  background: var(--pill); color:#fff; border-radius:999px; padding:10px 14px;
  display:flex; align-items:center; gap:10px; font-weight:700; letter-spacing:.2px
}
.island-dot{width:10px; height:10px; border-radius:999px; background:#7BD1FF; display:inline-block}

.hero-gif-wrap{
  position:absolute; inset:80px 36px 84px 36px;
  display:grid; place-items:center;
}
.hero-gif{max-width:100%; max-height:100%; filter:saturate(1.05) contrast(1.05); image-rendering:auto; object-fit:contain;}

.dock{
  position:absolute; left:50%; transform:translateX(-50%); bottom:20px;
  padding:12px 16px; border-radius:22px; display:flex; gap:12px;
  background: rgba(255,255,255,.32);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 14px 30px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.4);
}

.dock-icon{
  width:58px; height:58px; border-radius:16px; display:grid; place-items:center;
  background: linear-gradient(180deg,#ffffff,#efe8dc);
  border:1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 20px rgba(0,0,0,.20), inset 0 1px 0 rgba(255,255,255,.7);
  transform-origin: bottom center; transform: translateZ(0);
  transition: transform .14s ease, box-shadow .2s ease, filter .2s ease;
}
.dock-icon img{ width:100%; height:100%; filter: drop-shadow(0 1px 0 rgba(255,255,255,.7)); }
.dock-icon:hover{ transform: translateY(-6px) scale(1.1); box-shadow: 0 16px 28px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.8); }
.dock-icon:active{ transform: translateY(-2px) scale(1.04); }

.dock-item{
  width:56px; height:56px; border-radius:16px;
  background:linear-gradient(180deg, #9E79FB, #7E56F4);
  box-shadow: inset 0 2px 10px rgba(255,255,255,0.3),
              0 8px 18px rgba(0,0,0,0.25);
}
.dock-item-k{
  display:grid; place-items:center; background:#0f0f0f; color:#fff; font-weight:800; font-size:22px;
}

.features{padding:50px 0 64px}
.feature-grid{
  list-style:none; margin:0; padding:0;
  display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap:28px
}
.feature-card{background:transparent; text-align:center; padding:10px 6px 0 6px; transition: transform .18s ease, filter .2s ease}
.feature-icon{
  position:relative;
  width:76px; height:76px; border-radius:20px;
  display:grid; place-items:center; margin:0 auto 16px;
  background: linear-gradient(180deg,#ffffff, #f3ece2); /* blends with beige bg */
  box-shadow: 0 10px 22px rgba(0,0,0,.12), inset 0 1px 0 rgba(255,255,255,.7);
  border: 1px solid rgba(0,0,0,.06);
  transition: transform .22s ease, box-shadow .3s ease, background .3s ease, filter .25s ease;
  overflow:hidden;
}
.feature-icon svg{width:34px; height:34px}
.feature-card h3{margin:0 0 6px 0; font-size:20px}
.feature-card p{color:var(--muted); margin:0 auto; max-width:32ch}

.bottom-cta{display:flex; justify-content:center; margin-top:28px}

.card{
  background:var(--card); border-radius:var(--radius-lg);
  padding:22px; box-shadow:var(--shadow-soft);
}
.download-hero{padding:24px 0 50px}
.download-hero h1{font-size:42px; margin:6px 0 6px}
.lead{color:var(--muted)}
.download-actions{display:flex; gap:12px; margin:18px 0 24px; flex-wrap:wrap; justify-content: center;}
.gif-frame{display:grid; place-items:center; border-radius:16px; overflow:hidden; background:#111; min-height:280px}
.gif-frame img{max-width:100%; max-height:420px}
.steps{margin:18px 0 0 20px}
.steps li{margin:6px 0; color:var(--muted)}

.site-footer{padding:34px 0 50px; color:var(--muted)}

/* animations */
@keyframes spin{ from{transform:rotate(0deg)} to{transform:rotate(360deg)} }



/* responsive */
@media (max-width:1100px){
  .hero{grid-template-columns:1fr; gap:28px}
  .device{height:500px}
}
@media (max-width:720px){
  .feature-grid{grid-template-columns: repeat(2, minmax(0,1fr)); gap:18px}
  .hero h1{font-size:42px}
  .device{height:460px}
}
@media (max-width:480px){
  .nav{gap:10px}
  .brand-text{display:none}
  .container{padding:16px}
  .feature-card p{font-size:14px}
}
