:root{
  --bg:#333333;
  --dark:#101010;
  --panel:#1b1b1b;
  --card:#232323;
  --text:#ffffff;
  --muted:#d0d0d0;
  --soft:#9d9d9d;
  --orange:#ff5800;
  --orange2:#ff7a2f;
  --line:rgba(255,255,255,.12);
  --shadow:0 24px 70px rgba(0,0,0,.38);
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  background:
    radial-gradient(circle at top,#464646 0,#333333 42%,#101010 100%);
  color:var(--text);
  font-family:Arial,Helvetica,sans-serif;
  -webkit-font-smoothing:antialiased;
}

a{
  color:inherit;
  text-decoration:none;
}

button,input,select,textarea{
  font-family:inherit;
}

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  min-height:70px;
  padding:12px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  background:rgba(16,16,16,.86);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(18px);
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:950;
  letter-spacing:-.4px;
}

.brand-mark{
  width:42px;
  height:42px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,var(--orange),#ff9b60);
  box-shadow:0 14px 34px rgba(255,88,0,.34);
}

.nav{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:13px;
  font-weight:900;
}

.nav a{
  color:#e8e8e8;
}

.nav .login{
  padding:10px 13px;
  border-radius:999px;
  background:rgba(255,88,0,.18);
  border:1px solid rgba(255,88,0,.36);
  color:#fff;
}

.hero{
  width:min(1180px,100%);
  margin:auto;
  padding:18px 14px 10px;
}

.hero-card{
  min-height:520px;
  border-radius:34px;
  padding:28px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(180deg,rgba(0,0,0,.06),rgba(0,0,0,.92)),
    url("https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=1800&q=85") center/cover no-repeat;
  box-shadow:var(--shadow);
}

.hero-card:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 18% 18%,rgba(255,88,0,.24),transparent 32%),
    linear-gradient(90deg,rgba(0,0,0,.62),rgba(0,0,0,.08));
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:780px;
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding:8px 11px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(12px);
  font-size:13px;
  font-weight:950;
}

.kicker i{
  width:9px;
  height:9px;
  border-radius:50%;
  background:#48ff8b;
  box-shadow:0 0 20px rgba(72,255,139,.85);
}

h1{
  margin:16px 0 10px;
  font-size:clamp(44px,10vw,92px);
  line-height:.86;
  letter-spacing:-3px;
}

.hero p{
  margin:0 0 18px;
  max-width:690px;
  color:#f0f0f0;
  font-size:clamp(16px,3.6vw,22px);
  line-height:1.42;
}

.search{
  width:min(760px,100%);
  display:grid;
  grid-template-columns:1fr auto;
  gap:10px;
  padding:8px;
  border-radius:24px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(14px);
}

.search input{
  width:100%;
  border:0;
  outline:0;
  background:transparent;
  color:#fff;
  padding:15px;
  font-size:16px;
}

.search input::placeholder{
  color:#ddd;
}

.btn,
.search button{
  border:0;
  background:linear-gradient(135deg,var(--orange),var(--orange2));
  color:#fff;
  padding:15px 18px;
  border-radius:18px;
  font-weight:950;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  box-shadow:0 15px 35px rgba(255,88,0,.30);
}

.btn.secondary{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  box-shadow:none;
}

.chips{
  display:flex;
  flex-wrap:wrap;
  gap:9px;
  margin-top:12px;
}

.chips span{
  padding:8px 10px;
  border-radius:999px;
  background:rgba(0,0,0,.48);
  border:1px solid rgba(255,255,255,.14);
  font-size:12px;
  font-weight:900;
}

.cross-banner{
  width:min(1180px,calc(100% - 28px));
  margin:12px auto 14px;
  padding:22px;
  border-radius:28px;
  display:grid;
  grid-template-columns:1.4fr .6fr;
  gap:16px;
  align-items:center;
  background:
    linear-gradient(135deg,rgba(255,88,0,.97),rgba(255,122,47,.84)),
    radial-gradient(circle at right,rgba(255,255,255,.28),transparent 35%);
  box-shadow:0 22px 60px rgba(255,88,0,.22);
}

.cross-banner small,
.section small{
  color:#ffd4c2;
  font-size:12px;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.7px;
}

.cross-banner h2,
.section h2{
  margin:7px 0;
  font-size:clamp(26px,6vw,48px);
  line-height:1;
  letter-spacing:-1.6px;
}

.cross-banner p{
  margin:0;
  color:#fff4ee;
  line-height:1.4;
}

.cross-banner a{
  justify-self:end;
  background:#111;
  color:#fff;
  padding:14px 16px;
  border-radius:17px;
  font-weight:950;
  text-align:center;
}

.section{
  width:min(1180px,100%);
  margin:auto;
  padding:18px 14px;
}

.section-head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:14px;
  margin-bottom:14px;
}

.section-head p{
  margin:0;
  color:#cfcfcf;
  font-size:13px;
  font-weight:850;
}

.cat-grid{
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));
  gap:12px;
}

.cat-card{
  min-height:126px;
  padding:15px;
  border-radius:24px;
  background:rgba(255,255,255,.07);
  border:1px solid var(--line);
  color:#fff;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  box-shadow:0 14px 32px rgba(0,0,0,.22);
  transition:.2s ease;
}

.cat-card:hover{
  transform:translateY(-3px);
  border-color:rgba(255,88,0,.55);
}

.cat-icon{
  width:42px;
  height:42px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:rgba(255,88,0,.16);
  border:1px solid rgba(255,88,0,.30);
}

.cat-card b{
  display:block;
  margin-top:12px;
  font-size:16px;
}

.cat-card span{
  color:#cfcfcf;
  font-size:12px;
  line-height:1.35;
}

.clean-state{
  margin-top:16px;
  padding:18px;
  border-radius:24px;
  background:#1b1b1b;
  border:1px solid var(--line);
  color:#d6d6d6;
  line-height:1.45;
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}

.feature-card{
  padding:18px;
  border-radius:26px;
  background:#1b1b1b;
  border:1px solid var(--line);
  box-shadow:0 14px 34px rgba(0,0,0,.22);
}

.feature-card h3{
  margin:0 0 8px;
  font-size:20px;
}

.feature-card p{
  margin:0 0 14px;
  color:#d6d6d6;
  line-height:1.45;
}

.publish-box{
  display:grid;
  grid-template-columns:1.4fr .6fr;
  gap:18px;
  align-items:center;
  padding:24px;
  border-radius:32px;
  background:
    linear-gradient(135deg,rgba(255,88,0,.20),rgba(255,255,255,.06)),
    #171717;
  border:1px solid rgba(255,88,0,.28);
}

.publish-box p{
  color:#d7d7d7;
  line-height:1.55;
}

.price{
  padding:20px;
  border-radius:26px;
  background:#0d0d0d;
  border:1px solid var(--line);
  text-align:center;
}

.price strong{
  display:block;
  font-size:70px;
  letter-spacing:-3px;
}

.price span{
  color:#bbb;
}

.price a{
  width:100%;
  margin-top:12px;
}

.bottom{
  position:fixed;
  left:12px;
  right:12px;
  bottom:12px;
  z-index:100;
  max-width:580px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:8px;
  padding:8px;
  border-radius:26px;
  background:rgba(15,15,15,.88);
  border:1px solid var(--line);
  backdrop-filter:blur(18px);
}

.bottom a{
  text-align:center;
  padding:11px 5px;
  border-radius:18px;
  color:#ddd;
  font-size:12px;
  font-weight:900;
}

.bottom .active{
  background:rgba(255,88,0,.18);
  color:#fff;
}

.zap{
  position:fixed;
  right:14px;
  bottom:92px;
  z-index:101;
  padding:12px 14px;
  border-radius:999px;
  background:#25d366;
  color:#071b0e;
  font-weight:950;
  box-shadow:0 18px 45px rgba(0,0,0,.35);
}

.footer{
  margin-top:36px;
  padding:26px 14px calc(96px + env(safe-area-inset-bottom));
  background:#090909;
  border-top:1px solid var(--line);
  text-align:center;
}

.footer-inner{
  width:min(1180px,100%);
  margin:auto;
  display:grid;
  gap:18px;
}

.footer-brand{
  font-weight:950;
  font-size:18px;
}

.footer-links{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
}

.footer-links a{
  color:#d8d8d8;
  font-size:13px;
  font-weight:800;
}

.social-row{
  display:flex;
  justify-content:center;
  gap:12px;
}

.social-row a{
  width:42px;
  height:42px;
  border-radius:15px;
  display:grid;
  place-items:center;
  color:#fff;
  font-weight:950;
}

.instagram{background:linear-gradient(135deg,#f58529,#dd2a7b,#8134af,#515bd4)}
.facebook{background:#1877f2}
.linkedin{background:#0a66c2}

.copy{
  color:#9f9f9f;
  font-size:12px;
}

.page{
  min-height:100svh;
  padding:94px 14px 110px;
  display:grid;
  place-items:center;
}

.panel{
  width:min(760px,100%);
  padding:24px;
  border-radius:30px;
  background:rgba(18,18,18,.88);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.panel h1{
  margin:0 0 8px;
  font-size:clamp(34px,8vw,58px);
  line-height:.95;
}

.panel p{
  color:#d7d7d7;
  line-height:1.45;
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.panel input,
.panel select,
.panel textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:16px;
  background:#151515;
  color:#fff;
  padding:14px;
  font-size:15px;
  outline:none;
}

.panel textarea{
  grid-column:1/-1;
  min-height:120px;
  resize:vertical;
}

.note{
  margin-top:14px;
  padding:12px;
  border-radius:18px;
  background:rgba(255,88,0,.12);
  border:1px solid rgba(255,88,0,.32);
  color:#ffd8c7;
  font-size:12px;
  line-height:1.45;
}

.social-login{
  display:grid;
  gap:10px;
}

.social-login button{
  min-height:54px;
  border-radius:18px;
  border:1px solid var(--line);
  font-weight:950;
  cursor:pointer;
}

.google{background:#fff;color:#111}
.apple{background:#111;color:#fff}
.fb{background:#1877f2;color:#fff}
.guest{background:#ff5800;color:#fff;border-color:#ff5800!important}

@media(max-width:980px){
  .cat-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
  .feature-grid{grid-template-columns:1fr}
  .publish-box{grid-template-columns:1fr}
}

@media(max-width:720px){
  .nav a:not(.login){display:none}

  .hero{padding:12px}

  .hero-card{
    min-height:540px;
    padding:20px;
    border-radius:28px;
  }

  .search{grid-template-columns:1fr}
  .search button{width:100%}

  .cross-banner{
    grid-template-columns:1fr;
    margin:10px 12px 14px;
    border-radius:24px;
  }

  .cross-banner a{
    width:100%;
    justify-self:stretch;
  }

  .section-head{
    align-items:flex-start;
    flex-direction:column;
  }

  .cat-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px;
  }

  .cat-card{
    min-height:112px;
    border-radius:22px;
  }

  .form-grid{grid-template-columns:1fr}
}

@media(max-width:380px){
  .cat-grid{grid-template-columns:1fr}
}
