/* Pushplay static site */

:root{
  --paper:#f3eee7;
  --paper-2:#e7dfd5;
  --paper-3:#fffaf2;
  --ink:#27282c;
  --ink-soft:#5e5d60;
  --muted:#8b8580;
  --line:rgba(39,40,44,.14);
  --line-strong:rgba(39,40,44,.24);
  --red:#ef4036;
  --red-dark:#c73530;
  --red-soft:rgba(239,64,54,.11);
  --graphite:#404041;
  --silver:#a7a9ac;
  --shadow:0 26px 80px rgba(39,40,44,.15);
  --shadow-soft:0 14px 40px rgba(39,40,44,.10);
  --radius:22px;
  --radius-lg:34px;
  --max:1160px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; background:var(--paper-2); }
body{
  margin:0;
  color:var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background:
    radial-gradient(980px 620px at 12% -10%, rgba(255,255,255,.82), transparent 64%),
    radial-gradient(760px 520px at 94% 4%, rgba(239,64,54,.14), transparent 62%),
    linear-gradient(180deg, var(--paper), var(--paper-2));
  min-height:100vh;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-2;
  background:
    linear-gradient(90deg, rgba(39,40,44,.055) 1px, transparent 1px) 0 0/88px 100%,
    linear-gradient(0deg, rgba(255,255,255,.35), rgba(255,255,255,0));
  pointer-events:none;
}
body::after{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  opacity:.32;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='170' height='170' viewBox='0 0 170 170'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='170' height='170' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  pointer-events:none;
}

img{ max-width:100%; height:auto; }
a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:none; }

.container{
  max-width:var(--max);
  margin:0 auto;
  padding:0 24px;
}

.skip-link{
  position:absolute;
  left:-999px;
  top:10px;
  background:var(--ink);
  color:#fff;
  padding:10px 12px;
  border-radius:12px;
  z-index:100;
}
.skip-link:focus{ left:10px; }

.site-header{
  position:sticky;
  top:0;
  z-index:40;
  border-bottom:1px solid var(--line);
  background:rgba(243,238,231,.82);
  backdrop-filter:blur(18px);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  min-height:78px;
}
.logo{
  display:flex;
  align-items:center;
  min-width:180px;
}
.logo img{ width:178px; display:block; }
.nav{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:8px;
  flex-wrap:wrap;
}
.nav a{
  color:var(--ink-soft);
  font-size:.94rem;
  padding:10px 12px;
  border-radius:999px;
  transition:background .16s ease, color .16s ease, transform .16s ease;
}
.nav a:hover{
  color:var(--ink);
  background:rgba(255,255,255,.58);
  transform:translateY(-1px);
}
.nav .nav-cta{
  color:#fff;
  background:var(--red);
  box-shadow:0 14px 34px rgba(239,64,54,.22);
  font-weight:780;
}
.nav .nav-cta:hover{ color:#fff; background:var(--red-dark); }

.hero{
  position:relative;
  padding:84px 0 58px;
  overflow:hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns:minmax(0, 1.02fr) minmax(340px, .82fr);
  align-items:center;
  gap:48px;
}
.hero-copy{ position:relative; z-index:1; }
.eyebrow,
.section-kicker{
  margin:0 0 16px;
  color:var(--red);
  text-transform:uppercase;
  letter-spacing:.17em;
  font-size:.78rem;
  line-height:1.35;
  font-weight:850;
}
.hero h1{
  margin:0;
  max-width:820px;
  font-size:clamp(3.7rem, 8vw, 7.4rem);
  line-height:.87;
  letter-spacing:-.085em;
}
.hero h1 span{ color:var(--red); }
.lede{
  margin:24px 0 0;
  max-width:690px;
  color:var(--ink-soft);
  font-size:clamp(1.14rem, 1.9vw, 1.42rem);
  line-height:1.48;
}
.lede.secondary{
  margin-top:14px;
  font-size:1.05rem;
  color:#686569;
}
.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:30px;
}
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:13px 17px;
  border-radius:999px;
  border:1px solid var(--line-strong);
  background:rgba(255,255,255,.56);
  color:var(--ink);
  font-weight:780;
  box-shadow:var(--shadow-soft);
  transition:transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.button:hover{ transform:translateY(-2px); box-shadow:var(--shadow); background:rgba(255,255,255,.75); }
.button.primary{ border-color:transparent; background:var(--red); color:#fff; }
.button.primary:hover{ background:var(--red-dark); }
.button.ghost{ box-shadow:none; background:transparent; }

.hero-art{
  position:relative;
  min-height:510px;
  border:1px solid rgba(255,255,255,.70);
  border-radius:var(--radius-lg);
  background:
    linear-gradient(90deg, rgba(39,40,44,.065) 1px, transparent 1px) 0 0/40px 100%,
    linear-gradient(0deg, rgba(39,40,44,.045) 1px, transparent 1px) 0 0/100% 40px,
    linear-gradient(150deg, rgba(255,255,255,.68), rgba(255,255,255,.28));
  box-shadow:var(--shadow);
  overflow:hidden;
}
.hero-art::before{
  content:"";
  position:absolute;
  width:280px;
  height:280px;
  right:-86px;
  top:-92px;
  border-radius:999px;
  background:rgba(239,64,54,.12);
  border:1px solid rgba(239,64,54,.18);
}
.hero-art::after{
  content:"pushplay.net";
  position:absolute;
  left:28px;
  bottom:24px;
  color:rgba(39,40,44,.30);
  font-family:Georgia, "Times New Roman", serif;
  font-size:1.05rem;
  font-style:italic;
}
.art-card{
  position:absolute;
  border:1px solid rgba(255,255,255,.74);
  background:rgba(255,250,242,.78);
  box-shadow:0 20px 56px rgba(39,40,44,.16);
  border-radius:24px;
  backdrop-filter:blur(12px);
}
.identity-card{
  top:50px;
  left:36px;
  right:42px;
  padding:26px;
}
.identity-card img{ width:310px; display:block; }
.identity-card p{
  margin:16px 0 0;
  color:var(--ink-soft);
  font-size:1rem;
  line-height:1.4;
}
.module-card{
  width:260px;
  padding:20px;
  display:flex;
  flex-direction:column;
  gap:6px;
}
.module-card strong{
  font-size:1.18rem;
  letter-spacing:-.025em;
}
.module-card small{
  color:var(--ink-soft);
  line-height:1.4;
}
.module-label{
  color:var(--red);
  font-size:.76rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-weight:850;
}
.vision-card{ left:50px; bottom:130px; transform:rotate(-2deg); }
.ios-card{ right:34px; bottom:112px; transform:rotate(2deg); }
.code-card{ right:70px; bottom:36px; background:var(--graphite); color:#fff; transform:rotate(-1deg); }
.code-card small{ color:rgba(255,255,255,.70); }
.code-card .module-label{ color:#fff; opacity:.72; }

.section{ padding:42px 0; }
.section-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:32px;
  margin-bottom:22px;
}
.section-header.compact{ margin-bottom:18px; }
.section h2,
.policy-main h1{
  margin:0;
  font-size:clamp(2.25rem, 4.4vw, 4.2rem);
  line-height:.96;
  letter-spacing:-.06em;
}
.section-header p{
  margin:0;
  max-width:500px;
  color:var(--ink-soft);
  line-height:1.58;
}

.split-panel,
.support-panel,
.contact-panel,
.legal-note,
.legal-section{
  border:1px solid rgba(255,255,255,.72);
  background:linear-gradient(145deg, rgba(255,255,255,.70), rgba(255,255,255,.32));
  box-shadow:var(--shadow-soft);
  border-radius:var(--radius-lg);
}
.split-panel{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:36px;
  padding:34px;
}
.split-copy p{
  margin:0 0 14px;
  color:var(--ink-soft);
  line-height:1.62;
  font-size:1.06rem;
}
.split-copy p:last-child{ margin-bottom:0; }

.project-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:16px;
}
.project-card,
.policy-card{
  position:relative;
  min-height:270px;
  padding:22px;
  border:1px solid rgba(255,255,255,.72);
  border-radius:var(--radius);
  background:linear-gradient(145deg, rgba(255,255,255,.70), rgba(255,255,255,.32));
  box-shadow:var(--shadow-soft);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  transition:transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.project-card::after,
.policy-card::after{
  content:"";
  position:absolute;
  width:140px;
  height:140px;
  right:-58px;
  top:-58px;
  border-radius:999px;
  background:rgba(239,64,54,.10);
  border:1px solid rgba(239,64,54,.16);
}
.project-card:hover,
.policy-card:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow);
  border-color:rgba(239,64,54,.24);
}
.project-card.featured{
  grid-column:span 1;
  background:
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px) 0 0/38px 100%,
    linear-gradient(145deg, rgba(64,64,65,.95), rgba(39,40,44,.96));
  color:#fff;
}
.project-card.featured p,
.project-card.featured time{ color:rgba(255,255,255,.72); }
.project-card.app-card{
  background:
    linear-gradient(90deg, rgba(39,40,44,.06) 1px, transparent 1px) 0 0/42px 100%,
    linear-gradient(145deg, rgba(255,250,242,.82), rgba(255,255,255,.36));
}
.project-card.wide{ grid-column:span 2; }
.project-topline{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:26px;
}
time{ color:var(--muted); font-size:.88rem; }
.tag{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  border-radius:999px;
  border:1px solid rgba(39,40,44,.12);
  padding:5px 10px;
  color:var(--ink-soft);
  background:rgba(255,255,255,.44);
  font-size:.78rem;
  font-weight:780;
  letter-spacing:.02em;
}
.tag.red{
  border-color:rgba(239,64,54,.25);
  background:var(--red-soft);
  color:var(--red);
}
.featured .tag.red{
  background:rgba(239,64,54,.20);
  border-color:rgba(239,64,54,.35);
  color:#fff;
}
.project-card h3,
.policy-card h3,
.support-panel h3{
  margin:0;
  font-size:1.45rem;
  line-height:1.05;
  letter-spacing:-.035em;
}
.project-card p,
.policy-card p,
.support-panel p,
.contact-panel p{
  margin:12px 0 0;
  color:var(--ink-soft);
  line-height:1.56;
}
.project-card.featured p{ color:rgba(255,255,255,.76); }
.project-link{
  position:relative;
  z-index:1;
  margin-top:24px;
  color:var(--red);
  font-weight:850;
}
.featured .project-link{ color:#fff; }

.support-panel{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  padding:26px;
}
.support-panel h3{ font-size:1.55rem; }
.support-panel p{ max-width:680px; }

.policy-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.policy-card{ min-height:230px; }

.contact-section{ padding-bottom:28px; }
.contact-panel{ padding:34px; }
.contact-panel h2{ max-width:720px; }
.contact-panel p{ max-width:760px; font-size:1.05rem; }
.contact-panel a{ color:var(--red); font-weight:850; }

.site-footer{
  margin-top:24px;
  border-top:1px solid var(--line);
  padding:30px 0;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}
.footer-nav{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:8px;
}
.footer-nav a{ color:var(--ink-soft); }
.footer-nav a:hover{ color:var(--ink); }
.sep{ color:rgba(39,40,44,.28); }
.footer-copy{ margin:0; color:var(--muted); }
.footer-social{ display:flex; align-items:center; gap:8px; }
.social{
  width:40px;
  height:40px;
  display:grid;
  place-items:center;
  border-radius:15px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.48);
  transition:transform .16s ease, background .16s ease;
}
.social:hover{ transform:translateY(-2px); background:rgba(255,255,255,.76); }
.social img{ width:23px; height:23px; display:block; }

.policy-main{
  max-width:920px;
  margin:0 auto;
  padding:64px 24px 70px;
}
.policy-main .lede{ font-size:1.08rem; }
.legal-note{
  margin:26px 0;
  padding:18px 20px;
  border-left:5px solid var(--red);
  color:var(--ink-soft);
  line-height:1.58;
}
.legal-section{
  margin-top:18px;
  padding:26px;
  border-radius:var(--radius);
}
.legal-section h2{
  margin:0 0 10px;
  font-size:1.34rem;
  letter-spacing:-.025em;
}
.legal-section p,
.legal-section li{
  color:var(--ink-soft);
  line-height:1.64;
}
.legal-section a,
.policy-main a.inline-link{
  color:var(--red);
  font-weight:800;
}
.legal-section ul{ padding-left:1.2rem; margin-bottom:0; }
.legal-section li + li{ margin-top:6px; }

@media (max-width: 1000px){
  .hero-grid{ grid-template-columns:1fr; }
  .hero-art{ min-height:460px; }
  .project-grid{ grid-template-columns:1fr 1fr; }
  .project-card.wide{ grid-column:span 2; }
}
@media (max-width: 780px){
  .header-inner,
  .section-header,
  .support-panel,
  .footer-inner{ align-items:flex-start; flex-direction:column; }
  .nav{ justify-content:flex-start; }
  .logo img{ width:158px; }
  .hero{ padding-top:54px; }
  .hero h1{ letter-spacing:-.075em; }
  .hero-art{ min-height:430px; }
  .identity-card{ left:22px; right:22px; top:34px; }
  .identity-card img{ width:250px; }
  .module-card{ width:230px; }
  .vision-card{ left:24px; bottom:144px; }
  .ios-card{ right:24px; bottom:88px; }
  .code-card{ right:auto; left:54px; bottom:28px; }
  .split-panel{ grid-template-columns:1fr; padding:26px; }
  .project-grid{ grid-template-columns:1fr; }
  .project-card.wide{ grid-column:span 1; }
  .policy-grid{ grid-template-columns:1fr; }
}
@media (max-width: 520px){
  .container{ padding:0 18px; }
  .nav a{ padding:8px 9px; font-size:.9rem; }
  .hero{ padding-top:42px; }
  .hero h1{ font-size:3.5rem; }
  .hero-art{ min-height:460px; border-radius:26px; }
  .identity-card{ padding:20px; }
  .identity-card img{ width:225px; }
  .module-card{ width:215px; padding:17px; }
  .vision-card{ left:18px; bottom:170px; }
  .ios-card{ right:16px; bottom:92px; }
  .code-card{ left:22px; bottom:28px; }
  .project-card,
  .policy-card,
  .legal-section{ padding:20px; }
  .project-topline{ flex-direction:column; align-items:flex-start; margin-bottom:22px; }
  .section{ padding:34px 0; }
}


/* Pushplay refinements */
.drop-quote{
  position:relative;
  margin:0;
  padding:40px 42px 42px 72px;
  border:1px solid rgba(255,255,255,.72);
  border-radius:var(--radius-lg);
  background:
    linear-gradient(90deg, rgba(39,40,44,.055) 1px, transparent 1px) 0 0/64px 100%,
    linear-gradient(145deg, rgba(255,255,255,.72), rgba(255,255,255,.32));
  box-shadow:var(--shadow-soft);
}
.drop-quote::before{
  content:"“";
  position:absolute;
  left:24px;
  top:10px;
  color:var(--red);
  font-family:Georgia, "Times New Roman", serif;
  font-size:5.6rem;
  line-height:1;
  opacity:.9;
}
.drop-quote p{
  margin:0;
  color:var(--ink);
  font-size:clamp(1.48rem, 3vw, 2.35rem);
  line-height:1.22;
  letter-spacing:-.045em;
}
.drop-quote span{
  color:var(--red);
  font-weight:780;
}
.section-header.full-width{
  display:block;
}
.section-header.full-width h2{
  max-width:none;
}
.project-card.app-card.featured{
  background:
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px) 0 0/38px 100%,
    linear-gradient(145deg, rgba(64,64,65,.95), rgba(39,40,44,.96));
  color:#fff;
}
.project-card.app-card.featured p,
.project-card.app-card.featured time{
  color:rgba(255,255,255,.74);
}
.project-card.app-card.featured .tag.red{
  background:rgba(239,64,54,.20);
  border-color:rgba(239,64,54,.35);
  color:#fff;
}
.project-card.app-card.featured .project-link{
  color:#fff;
}
@media (max-width: 520px){
  .drop-quote{ padding:34px 24px 28px 48px; }
  .drop-quote::before{ left:16px; top:10px; font-size:4.4rem; }
  .drop-quote p{ font-size:1.42rem; }
}
