/* Public landing page — modern PWA install screen */
:root{
  --bg: #0b1220;
  --bg2: #060912;
  --surface: rgba(255,255,255,0.04);
  --surface-2: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.08);
  --text: #ffffff;
  --muted: rgba(255,255,255,0.6);
  --primary: #0f68ff;
  --accent: #f8c600;
  --radius: 16px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:'Inter','Lato',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  background:
    radial-gradient(1200px 800px at 50% -10%, color-mix(in srgb, var(--primary) 18%, transparent), transparent 60%),
    radial-gradient(800px 500px at 100% 100%, color-mix(in srgb, var(--accent) 10%, transparent), transparent 60%),
    var(--bg);
  color:var(--text);
  min-height:100vh;
  -webkit-font-smoothing:antialiased;
}
a{color:var(--primary);text-decoration:none}
img{max-width:100%}

.header{
  position:sticky;top:0;z-index:50;
  background:rgba(11,18,32,0.7);
  backdrop-filter:saturate(180%) blur(14px);
  border-bottom:1px solid var(--border);
}
.header-inner{
  max-width:1100px;margin:auto;padding:14px 22px;
  display:flex;align-items:center;justify-content:space-between;gap:12px;
}
.brand{display:flex;align-items:center;gap:12px;font-weight:700;color:#fff}
.brand-logo{width:34px;height:34px;border-radius:9px;object-fit:cover;background:#000}
.btn-site{
  display:inline-flex;align-items:center;gap:8px;padding:9px 16px;border-radius:10px;
  background:var(--accent);color:#0b1220;font-weight:700;font-size:14px;
  border:1px solid transparent;transition:.2s
}
.btn-site:hover{filter:brightness(1.06)}

.hero{
  max-width:980px;margin:auto;padding:60px 22px 40px;text-align:center;
}
.hero-icon{
  width:120px;height:120px;border-radius:28px;margin:0 auto 22px;
  display:grid;place-items:center;
  background:transparent;
  box-shadow:0 30px 80px -20px rgba(0,0,0,.6);
  overflow:hidden;
}

/* Animasyonlu gradient ring — panelden açılır/kapanır */
@property --ring-angle{
  syntax:'<angle>';
  initial-value:0deg;
  inherits:false;
}
.hero-icon.has-ring{
  position:relative;
  padding:var(--ring-width,2.5px);
  background:conic-gradient(
    from var(--ring-angle,0deg),
    var(--primary),
    var(--accent),
    var(--primary),
    var(--accent),
    var(--primary)
  );
  animation:ring-rotate var(--ring-speed,6s) linear infinite;
  box-shadow:
    0 30px 80px -20px rgba(0,0,0,.6),
    0 0 30px -8px var(--accent);
  overflow:visible;
}
.hero-icon.has-ring img{
  width:100%;height:100%;
  border-radius:25.5px;
  display:block;
  position:relative;z-index:1;
}
@keyframes ring-rotate{
  to{--ring-angle:360deg}
}
/* @property desteklenmeyen tarayıcılar için fallback (transform rotate) */
@supports not (background:conic-gradient(from var(--ring-angle))){
  .hero-icon.has-ring{animation:ring-spin var(--ring-speed,6s) linear infinite}
  @keyframes ring-spin{to{transform:rotate(360deg)}}
}
.hero-icon img{width:100%;height:100%;object-fit:cover}
.hero h1{
  font-size:clamp(28px,4vw,44px);font-weight:800;letter-spacing:-.02em;
  margin:0 0 10px;
}
.hero p{color:var(--muted);font-size:17px;margin:0 auto;max-width:560px}

.cta-row{
  display:flex;flex-wrap:wrap;justify-content:center;gap:14px;margin-top:32px;
}
.cta{
  display:inline-flex;align-items:center;gap:14px;padding:12px 22px 12px 18px;
  background:linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border:1px solid var(--border);border-radius:14px;
  color:#fff;font-weight:600;cursor:pointer;transition:.2s;
  min-width:200px;
}
.cta:hover{border-color:color-mix(in srgb, var(--primary) 60%, transparent);transform:translateY(-1px);color:#fff}
.cta svg{width:32px;height:32px;flex-shrink:0}
.cta small{display:block;font-size:11px;color:var(--muted);font-weight:500;margin-bottom:1px;letter-spacing:.5px}
.cta .label{font-size:16px;line-height:1.1}

/* Modal / steps */
.modal{
  position:fixed;inset:0;background:rgba(3,7,18,.85);
  backdrop-filter:blur(8px);
  display:none;justify-content:center;align-items:flex-start;
  z-index:100;overflow-y:auto;padding:24px 18px;
  animation:fadeIn .25s ease;
}
.modal.open{display:flex}
@keyframes fadeIn{from{opacity:0}to{opacity:1}}
.modal-card{
  width:100%;max-width:780px;
  background:linear-gradient(180deg,#0f1729,#0a1120);
  border:1px solid var(--border);border-radius:20px;
  padding:32px 28px 24px;margin:auto;
  position:relative;
}
.modal-close{
  position:absolute;top:14px;right:14px;
  width:36px;height:36px;border-radius:50%;
  background:rgba(255,255,255,.06);border:1px solid var(--border);
  color:#fff;cursor:pointer;
  display:grid;place-items:center;
  transition:.15s;z-index:10;padding:0;
}
.modal-close:hover{background:rgba(255,255,255,.14);border-color:var(--accent);color:var(--accent)}
.modal-close svg{width:16px;height:16px}
.modal-head{text-align:center;margin-bottom:30px;padding:0 50px}
.modal-head h2{font-size:28px;margin:0 0 10px;font-weight:800;line-height:1.2}
.modal-head p{color:var(--muted);margin:0 auto;max-width:440px;font-size:15px}
.modal-head strong{color:var(--text)}

.steps{
  display:grid;grid-template-columns:repeat(2,1fr);gap:20px;
}
@media (max-width:720px){.steps{grid-template-columns:1fr}}
.step{
  background:rgba(255,255,255,0.025);border:1px solid var(--border);
  border-radius:18px;padding:22px 18px 24px;text-align:center;
}
.step-num{
  display:inline-block;color:var(--accent);font-weight:800;font-size:18px;margin-bottom:6px;
}
.step h3{margin:0 0 16px;font-size:16px;font-weight:700;line-height:1.3}

/* ===== iPhone (Dynamic Island) ===== */
.iphone{
  width:210px;height:430px;margin:auto;position:relative;
  background:#1c1c1e;border-radius:44px;padding:4px;
  box-shadow:
    0 0 0 2px #2a2a2c,
    0 24px 50px -10px rgba(0,0,0,.7),
    inset 0 0 0 1px rgba(255,255,255,.04);
}
.iphone-side{display:none}
.iphone-screen{
  width:100%;height:100%;border-radius:40px;
  background:#000;position:relative;overflow:hidden;
}
.iphone-island{
  width:60px;height:17px;background:#000;border-radius:10px;
  position:absolute;top:9px;left:50%;transform:translateX(-50%);z-index:10;
}

.ios-status{
  display:flex;justify-content:space-between;align-items:center;
  padding:9px 18px 0;font-size:10.5px;font-weight:700;color:#fff;
  position:relative;z-index:5;
}
.ios-status-light{color:#000}
.ios-status .ios-time{font-feature-settings:"tnum"}
.ios-status .ios-icons{display:flex;align-items:center;gap:4px}
.ios-status .ios-icons svg{width:14px;height:9px}
.ios-status-light svg path,
.ios-status-light svg rect,
.ios-status-light svg circle{stroke:#000;fill:#000}
.ios-status-light svg rect[fill="none"]{fill:none}
.ios-status-light svg path[fill="none"]{fill:none}

/* iOS home screen */
.ios-home{
  position:absolute;inset:0;
  display:flex;flex-direction:column;
  padding:34px 12px 0;
}
.ios-wallpaper{
  position:absolute;inset:0;z-index:0;
  background:
    radial-gradient(ellipse at 30% 0%, #ff8a65 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, #ffd54f 0%, transparent 50%),
    radial-gradient(ellipse at 50% 70%, #ec407a 0%, transparent 60%),
    linear-gradient(180deg,#7e57c2,#5e35b1);
}
.ios-grid{
  position:relative;z-index:1;
  display:grid;grid-template-columns:repeat(4,1fr);gap:14px 10px;
  margin-top:14px;
}
.ios-icon{
  aspect-ratio:1;border-radius:11px;
  box-shadow:0 2px 4px rgba(0,0,0,.2);
  position:relative;overflow:hidden;
}
.ios-icon.app{background:#000}
.ios-icon.app img{width:100%;height:100%;object-fit:cover}
.ios-icon.app .ring{
  position:absolute;inset:-3px;border:2px solid var(--accent);border-radius:14px;
  animation:pulse 1.6s ease-in-out infinite;pointer-events:none;
}
.ios-icon.safari{
  background:url("../img/safari.png") center/cover no-repeat,#fff;
}
.ios-dock{
  position:relative;z-index:1;margin-top:auto;margin-bottom:14px;
  background:rgba(255,255,255,.22);
  -webkit-backdrop-filter:blur(15px);backdrop-filter:blur(15px);
  border:1px solid rgba(255,255,255,.18);
  border-radius:18px;padding:7px;
  display:grid;grid-template-columns:repeat(4,1fr);gap:8px;
}
.ios-dock .ios-icon{aspect-ratio:1}
.ios-bar{
  position:absolute;bottom:5px;left:50%;transform:translateX(-50%);
  width:90px;height:4px;border-radius:3px;background:#fff;z-index:6;
}
.ios-bar.dark{background:#000}

/* iOS Safari page */
.safari-page{
  position:absolute;inset:0;
  display:flex;flex-direction:column;
  background:#fff;
  padding-top:30px;
}
.safari-tab-area{
  flex:1;background:#fff;display:flex;flex-direction:column;
}
.safari-url-bar{
  margin:8px;padding:6px 14px;
  background:#f0f0f3;border-radius:11px;
  font-size:10px;color:#1c1c1e;text-align:center;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
  font-weight:500;
}
.safari-toolbar{
  background:rgba(248,248,248,.96);
  -webkit-backdrop-filter:blur(20px);backdrop-filter:blur(20px);
  border-top:.5px solid rgba(0,0,0,.08);
  display:flex;align-items:center;justify-content:space-between;
  padding:8px 14px 10px;
}
.safari-btn{
  width:28px;height:28px;display:grid;place-items:center;position:relative;
}
.safari-btn svg{width:20px;height:20px}
.safari-btn.safari-share svg{width:18px;height:20px}

/* iOS Share sheet */
.ios-share-sheet{
  position:absolute;left:6px;right:6px;bottom:0;top:32px;
  background:rgba(28,28,30,.96);
  -webkit-backdrop-filter:blur(20px);backdrop-filter:blur(20px);
  border-radius:14px;
  padding:10px;display:flex;flex-direction:column;gap:8px;
  z-index:5;
}
.share-handle{
  width:36px;height:4px;background:rgba(255,255,255,.3);border-radius:3px;
  margin:0 auto 2px;
}
.share-app-card{
  background:rgba(72,72,74,.6);border-radius:10px;
  padding:8px 10px;display:flex;align-items:center;gap:8px;
  color:#fff;
}
.share-app-icon{
  width:30px;height:30px;border-radius:7px;overflow:hidden;flex-shrink:0;background:#000;
}
.share-app-icon img{width:100%;height:100%;object-fit:cover}
.share-app-info{flex:1;min-width:0}
.share-app-name{font-size:9.5px;font-weight:700;line-height:1.1;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.share-app-host{font-size:7.5px;color:rgba(255,255,255,.5);margin-top:2px}
.share-options{font-size:7.5px;color:#0a84ff;font-weight:600;flex-shrink:0}
.share-actions{
  background:rgba(72,72,74,.6);border-radius:10px;
  display:flex;flex-direction:column;
}
.share-action{
  padding:9px 12px;font-size:9.5px;color:#fff;
  display:flex;align-items:center;justify-content:space-between;gap:8px;
  border-bottom:.5px solid rgba(255,255,255,.08);
}
.share-action:last-child{border-bottom:none}
.share-action svg{width:14px;height:14px;flex-shrink:0;opacity:.85}
.share-action-highlight{
  background:rgba(255,255,255,.08);
  outline:2px solid var(--accent);outline-offset:-2px;
  border-radius:8px;position:relative;
}
.share-action-highlight svg{stroke:var(--accent);opacity:1}

/* ===== Samsung Galaxy ===== */
.galaxy{
  width:200px;height:430px;margin:auto;position:relative;
  background:#1a1a1a;border-radius:34px;padding:5px;
  box-shadow:
    0 0 0 2px #2a2a2a,
    0 24px 50px -10px rgba(0,0,0,.7),
    inset 0 0 0 1px rgba(255,255,255,.04);
}
.galaxy-camera{
  width:8px;height:8px;background:#000;border-radius:50%;
  position:absolute;top:11px;left:50%;transform:translateX(-50%);z-index:10;
  box-shadow:0 0 0 1.5px #1a1a1a,inset 0 0 0 1px rgba(80,150,255,.15);
}
.galaxy-screen{
  width:100%;height:100%;border-radius:30px;
  background:#000;position:relative;overflow:hidden;
}

.android-status{
  display:flex;justify-content:space-between;align-items:center;
  padding:6px 14px 4px;font-size:10px;font-weight:600;color:#fff;
  position:relative;z-index:5;background:transparent;
}
.android-status .and-icons{display:flex;gap:3px;align-items:center}
.android-status .and-icons svg{width:12px;height:8px}

/* Android home */
.android-home{
  position:absolute;inset:22px 0 0;
  display:flex;flex-direction:column;
  padding:8px 12px 0;
}
.and-wallpaper{
  position:absolute;inset:0;z-index:0;
  background:
    radial-gradient(ellipse at 20% 10%, #2196f3 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, #00bcd4 0%, transparent 60%),
    linear-gradient(180deg,#1a237e,#0d47a1);
}
.and-grid{
  position:relative;z-index:1;
  display:grid;grid-template-columns:repeat(4,1fr);gap:14px 10px;
  margin-top:14px;
}
.and-icon{
  aspect-ratio:1;border-radius:50%;
  position:relative;overflow:hidden;
  box-shadow:0 2px 4px rgba(0,0,0,.25);
}
.and-icon.and-app{background:#000;border-radius:13px}
.and-icon.and-app img{width:100%;height:100%;object-fit:cover}
.and-icon.and-app .ring{
  position:absolute;inset:-3px;border:2px solid var(--accent);border-radius:16px;
  animation:pulse 1.6s ease-in-out infinite;pointer-events:none;
}
.and-chrome{
  background:url("../img/chrome.png") center/cover no-repeat;
}
.and-dock{
  position:relative;z-index:1;margin-top:auto;margin-bottom:18px;
  background:rgba(255,255,255,.12);
  border-radius:22px;padding:7px;
  display:grid;grid-template-columns:repeat(4,1fr);gap:8px;
}
.and-dock .and-icon{aspect-ratio:1}
.and-navbar{
  position:absolute;left:0;right:0;bottom:0;
  height:18px;background:rgba(0,0,0,.3);
  display:flex;align-items:center;justify-content:space-around;
  z-index:5;
}
.and-nav-tri{width:0;height:0;border-left:5px solid transparent;border-right:5px solid transparent;border-bottom:7px solid rgba(255,255,255,.85);transform:rotate(-90deg)}
.and-nav-dot{width:8px;height:8px;border-radius:50%;border:1.5px solid rgba(255,255,255,.85)}
.and-nav-sq{width:8px;height:8px;border:1.5px solid rgba(255,255,255,.85);border-radius:1px}

/* Chrome page */
.chrome-page{
  position:absolute;inset:22px 0 0;
  display:flex;flex-direction:column;
  background:#202124;
}
.chrome-tabs{
  background:#35363a;padding:6px 8px;display:flex;align-items:center;gap:6px;
}
.chrome-tab-count{
  width:18px;height:18px;border:1.5px solid #bdc1c6;border-radius:4px;
  display:grid;place-items:center;color:#bdc1c6;font-size:9px;font-weight:700;
}
.chrome-omni{
  flex:1;background:#202124;border-radius:18px;padding:5px 10px;
  display:flex;align-items:center;gap:5px;
  font-size:9px;color:#bdc1c6;overflow:hidden;
}
.chrome-omni .lock{width:9px;height:9px}
.chrome-host{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.chrome-menu-dots{
  width:18px;height:18px;display:flex;flex-direction:column;justify-content:center;align-items:center;gap:2px;cursor:pointer;
}
.chrome-menu-dots span{width:3px;height:3px;background:#bdc1c6;border-radius:50%}
.chrome-body{flex:1;background:#fff;position:relative}

/* Chrome 3-dot pop menu */
.chrome-popmenu{
  position:absolute;top:6px;right:6px;left:18px;
  background:#fff;border-radius:8px;
  box-shadow:0 8px 24px rgba(0,0,0,.25),0 0 0 1px rgba(0,0,0,.04);
  padding:6px 0;overflow:hidden;
}
.chrome-menu-row{padding:8px 6px;border-bottom:1px solid #eaeaea}
.cmr-actions{display:flex;justify-content:space-around;align-items:center}
.cmr-circle{
  width:26px;height:26px;border-radius:50%;
  background:#f1f3f4;display:grid;place-items:center;
}
.cmr-circle svg{width:12px;height:12px}
.chrome-menu-item{
  padding:8px 10px;font-size:10px;color:#3c4043;
  display:flex;align-items:center;gap:9px;
  white-space:nowrap;
}
.chrome-menu-item svg{width:13px;height:13px;flex-shrink:0;opacity:.8}
.chrome-menu-item.highlight{
  background:rgba(26,115,232,.12);
  outline:2px solid var(--accent);outline-offset:-2px;
  border-radius:6px;color:#1a73e8;font-weight:600;
  margin:1px 4px;
}
.chrome-menu-item.highlight svg{opacity:1}

/* shared */
@keyframes pulse{
  0%,100%{opacity:1;transform:scale(1)}
  50%{opacity:.4;transform:scale(1.05)}
}
.arrow-overlay{
  position:absolute;color:var(--accent);font-size:24px;font-weight:bold;
  filter:drop-shadow(0 2px 6px rgba(0,0,0,.5));
  animation:bob 1.2s ease-in-out infinite;
  z-index:20;
}
@keyframes bob{
  0%,100%{margin-top:0}
  50%{margin-top:-5px}
}

.close-btn-modal{
  display:block;margin:24px auto 0;padding:11px 26px;border-radius:12px;
  background:rgba(255,255,255,.08);color:#fff;border:1px solid var(--border);
  font-size:14px;font-weight:600;cursor:pointer;transition:.15s
}
.close-btn-modal:hover{background:rgba(255,255,255,.14)}

/* Info section */
.info{
  max-width:980px;margin:60px auto 40px;padding:0 22px;
}
.info-card{
  background:var(--surface);border:1px solid var(--border);border-radius:18px;
  padding:28px;color:var(--muted);font-size:14px;line-height:1.7;
}
.info-card strong{color:#fff}
.info-card h3{color:#fff;margin:0 0 14px;font-size:18px}
.info-card p{margin:0 0 10px}

/* Banners */
.banner img{display:block;max-width:100%;height:auto;border-radius:14px}
.banner a{display:block}

.banner-top{
  max-width:1100px;margin:18px auto 0;padding:0 22px;
}
.banner-top img{width:100%;border-radius:14px;box-shadow:0 12px 30px -12px rgba(0,0,0,.5)}

.banner-left, .banner-right{
  position:fixed;top:50%;transform:translateY(-50%);z-index:30;
  max-width:200px;
}
.banner-left{left:18px}
.banner-right{right:18px}
.banner-left img, .banner-right img{
  width:100%;border-radius:14px;
  box-shadow:0 12px 30px -10px rgba(0,0,0,.6),
             0 0 0 1px rgba(255,255,255,.06);
}

@media (max-width:1300px){
  .banner-left, .banner-right{display:none}
}

/* Web/mobil aç-kapa */
@media (min-width:761px){
  .banner.hide-web{display:none !important}
}
@media (max-width:760px){
  .banner.hide-mobile{display:none !important}
  .banner-top{padding:0 14px;margin-top:14px}
}

/* Brand footer */
.brand-footer{
  text-align:center;padding:34px 20px 56px;color:var(--muted);font-size:13px;
}
.long-brand{
  display:inline-flex;align-items:center;gap:8px;
  color:rgba(255,255,255,.55);text-decoration:none;
  transition:.2s;
  font-size:13px;letter-spacing:.6px;text-transform:uppercase;font-weight:700;
}
.long-brand:hover{color:rgba(255,255,255,.85)}
.long-brand:hover .long-brand-logo{opacity:1}
.long-brand-logo{
  height:1.1em;width:auto;display:inline-block;
  vertical-align:middle;
  opacity:.75;transition:.2s
}

footer{
  text-align:center;padding:30px 20px 50px;color:var(--muted);font-size:13px;
}

@media (max-width:540px){
  .hero{padding:40px 18px 30px}
  .modal-card{padding:24px 16px}
  .modal-head{padding:0 40px}
  .modal-head h2{font-size:20px}
  .modal-head p{font-size:13px}
  .modal-close{width:32px;height:32px;top:10px;right:10px}
  .modal-close svg{width:14px;height:14px}
  .phone{width:170px;height:340px}
}
