/*
Theme Name: spredditor
Author: spredditor
Description: spredditor
Version:2.0
text Domain:spredditor
*/
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
    :root {
      --sprd-bg: #0f1117;
      --sprd-surface: #181c24;
      --sprd-border: #2a2f3d;
      --sprd-orange: #f05a28;
      --sprd-orange-hover: #d94d1f;
      --sprd-text: #f0f2f7;
      --sprd-muted: #8a90a2;
      --sprd-input-bg: #1a1f2e;
    }
 
html {
	scroll-behavior: smooth;
}
img{   
    max-width: 100%;
    height: auto;
}
body{
	font-family: 'DM Sans';
	margin: 0 !important;
	font-style: normal;
	font-weight: 400;
	-webkit-font-smoothing: antialiased; 
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: subpixel-antialiased;
}
a {
	text-decoration: none;
	font-family: 'DM Sans';
}
span{
	 font-family: 'Inter';
}
h1 {
	font-size:52px;	
}
h2 {
	font-size:40px;
     margin: 13px 0px;
}
h3{
	font-size:30px;
}
h4{
	font-size:20px;
	color: #2D2F31;
}
p {
    margin-bottom: 0.5rem;
    line-height: 22px;
	font-size:14px;
    color:#23352A;
	 font-family: 'Inter';
	letter-spacing: 0.35px;
}
.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}
/*header style*/
    html, body {
      min-height: 100vh;
      background: var(--sprd-bg);
      color: var(--sprd-text);
      font-family: 'DM Sans', sans-serif;
    }

    body::before {
      content: '';
      position: fixed;
      top: -120px;
      right: -180px;
      width: 620px;
      height: 620px;
      background: radial-gradient(circle, rgba(240,90,40,0.12) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }

    /* ── NAV ── */
    .sprd-nav {
      position: relative;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 48px;
      border-bottom: 1px solid rgba(255,255,255,0.04);
    }

    .sprd-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 1.15rem;
      letter-spacing: -0.01em;
    }

    .sprd-logo-icon {
      width: 36px;
      height: 36px;
      background: var(--sprd-orange);
      border-radius: 8px;
      display: grid;
      place-items: center;
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 1rem;
      color: #fff;
    }

    .sprd-nav-badge {
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--sprd-muted);
    }
  nav.sprd-nav a.sprd-logout-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: transparent;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    color: #888;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}

nav.sprd-nav a.sprd-logout-btn:hover { border-color: #444; color: #ccc; } 
    /* ── HERO ── */
    .sprd-hero {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 80px 48px 60px;
    }

    .sprd-hero-left {
      display: flex;
      flex-direction: column;
      gap: 24px;
      animation: sprd-fadeUp 0.6s ease both;
    }

    @keyframes sprd-fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .sprd-invite-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.05);
      border: 1px solid var(--sprd-border);
      border-radius: 999px;
      padding: 7px 14px;
      font-size: 0.8rem;
      color: var(--sprd-muted);
      width: fit-content;
    }

    .sprd-invite-pill svg { flex-shrink: 0; }

    .sprd-headline {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: clamp(2.4rem, 4vw, 3.2rem);
      line-height: 1.1;
      letter-spacing: -0.02em;
    }

    .sprd-headline span { color: var(--sprd-orange); }

    .sprd-subtext {
      font-size: 0.95rem;
      color: var(--sprd-muted);
      line-height: 1.7;
      max-width: 440px;
    }

    .sprd-trust-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 4px;
    }

    .sprd-trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.85rem;
      color: #b0b8cc;
    }

    .sprd-trust-icon {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: rgba(240,90,40,0.12);
      border: 1px solid rgba(240,90,40,0.25);
      display: grid;
      place-items: center;
      flex-shrink: 0;
    }

    /* ── CARD ── */
    .sprd-card {
      background: var(--sprd-surface);
      border: 1px solid var(--sprd-border);
      border-radius: 16px;
      padding: 36px 32px 40px;
      display: flex;
      flex-direction: column;
      gap: 22px;
      animation: sprd-fadeUp 0.7s 0.1s ease both;
      box-shadow: 0 24px 64px rgba(0,0,0,0.45);
    }

    .sprd-card-title {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 1.5rem;
      letter-spacing: -0.01em;
    }

    .sprd-card-sub {
      font-size: 0.85rem;
      color: var(--sprd-muted);
      margin-top: -14px;
    }

    .sprd-form-group {
      display: flex;
      flex-direction: column;
      gap: 7px;
    }

    .sprd-form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .sprd-label {
      font-size: 0.82rem;
      font-weight: 500;
      color: #c8cdd9;
    }

    .sprd-input,
    .sprd-textarea {
      background: var(--sprd-input-bg);
      border: 1px solid var(--sprd-border);
      border-radius: 8px;
      padding: 10px 14px;
      font-size: 0.88rem;
      color: var(--sprd-text);
      font-family: 'DM Sans', sans-serif;
      outline: none;
      transition: border-color 0.2s;
      width: 100%;
    }

    .sprd-input::placeholder,
    .sprd-textarea::placeholder { color: var(--sprd-muted); }

    .sprd-input:focus,
    .sprd-textarea:focus { border-color: rgba(240,90,40,0.5); }

    .sprd-textarea {
      resize: vertical;
      min-height: 72px;
    }

    .sprd-field-hint {
      font-size: 0.75rem;
      color: var(--sprd-muted);
      margin-top: 2px;
    }

    .sprd-btn {
      width: 100%;
      padding: 14px;
      background: var(--sprd-orange);
      color: #fff;
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      letter-spacing: 0.01em;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.18s, transform 0.12s;
      margin-top: 4px;
    }

    .sprd-btn:hover { background: var(--sprd-orange-hover); }
    .sprd-btn:active { transform: scale(0.985); }

    /* ── RESPONSIVE ── */
    @media (max-width: 820px) {
     

      .sprd-hero {
        grid-template-columns: 1fr;
        padding: 36px 20px 48px;
        gap: 36px;
      }

      .sprd-headline { font-size: clamp(1.9rem, 8vw, 2.6rem); }
      .sprd-subtext { font-size: 0.9rem; max-width: 100%; }

      .sprd-card {
        padding: 28px 20px 32px;
        gap: 18px;
        border-radius: 14px;
      }

      .sprd-card-title { font-size: 1.3rem; }

      .sprd-input,
      .sprd-textarea {
        font-size: 1rem;
        padding: 12px 14px;
      }

      .sprd-label { font-size: 0.85rem; }

      .sprd-btn {
        padding: 15px;
        font-size: 1rem;
        min-height: 52px;
      }

      .sprd-trust-item { font-size: 0.82rem; }
      .sprd-invite-pill { font-size: 0.78rem; }
    }

    @media (max-width: 480px) {
      .sprd-nav { padding: 12px 16px; }
      .sprd-hero { padding: 28px 16px 40px; gap: 32px; }
      .sprd-form-row { grid-template-columns: 1fr; gap: 18px; }
      .sprd-card { padding: 24px 16px 28px; }
      .sprd-headline { font-size: clamp(1.7rem, 9vw, 2.2rem); }
    }
/*for desktop style*/
@media (min-width: 1200px){
.container {
    max-width: 1140px;
}
}
@media screen and (min-width: 789px){
}
/*for desktop style*/
/*for mbl style*/
@media (max-width: 789px){	
	 .sprd-nav { padding: 14px 20px; }
	h1 {
    font-size: 42px;
}
}
/*for mbl style*/