/* ===========================
   Global frontend base
   =========================== */

.frontend-body{
  margin:0;
  min-height:120vh;
  font-family:-apple-system, system-ui, Segoe UI, Roboto, Arial, sans-serif;
  background:radial-gradient(circle at top left, #1e293b 0, #020617 10%, #000 100%);
  color:#e5e7eb;
}

.frontend-main{
  min-height:calc(100vh - 64px);
}

/* ===========================
   Header
   =========================== */

.pr-header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:blur(18px);
  background:linear-gradient(to right, rgba(15,23,42,.92), rgba(2,6,23,.95));
  border-bottom:1px solid rgba(148,163,184,.18);
}

.pr-header-inner{
  max-width:1120px;
  margin:0 auto;
  padding:12px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

/* Logo */

.pr-logo-link{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
}

.pr-logo-mark{
  width:40px;
  height:40px;
  border-radius:12px;
  overflow:hidden;
  background:radial-gradient(circle at 10% 0, #38bdf8 0, #fb923c 40%, #f97316 100%);
  display:flex;
  align-items:center;
  justify-content:center;
}

.pr-logo-img{
  width:32px;
  height:32px;
  object-fit:contain;
  display:block;
}

.pr-logo-text{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}

.pr-logo-text-primary{
  font-size:17px;
  font-weight:800;
  letter-spacing:.4px;
  color:#38bdf8;
}

.pr-logo-text-accent{
  font-size:15px;
  font-weight:700;
  color:#f97316;
}

/* Nav */

.pr-nav{
  display:flex;
  align-items:center;
  gap:18px;
  font-size:14px;
}

.pr-nav-link{
  color:#e5e7eb;
  text-decoration:none;
  opacity:.85;
  position:relative;
}

.pr-nav-link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  width:0;
  height:2px;
  background:linear-gradient(to right,#38bdf8,#f97316);
  border-radius:999px;
  transition:width .18s ease;
}

.pr-nav-link:hover{
  opacity:1;
}
.pr-nav-link:hover::after{
  width:100%;
}

/* Header CTAs */

.pr-header-cta{
  display:flex;
  align-items:center;
  gap:10px;
}

/* ===== Buttons ===== */

.pr-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  border-radius:999px;
  border:1px solid transparent;
  padding:7px 14px;
  font-size:14px;
  font-weight:600;
  text-decoration:none;
  cursor:pointer;
  transition:all .18s ease;
  white-space:nowrap;
}

.pr-btn-lg{
  padding:11px 22px;
  font-size:15px;
}

.pr-btn-primary{
  background:linear-gradient(135deg,#f97316,#facc15);
  color:#111827;
  box-shadow:0 2px 6px rgba(248,150,30,.45);
}
.pr-btn-primary:hover{
  transform:translateY(-1px);
  box-shadow:0 18px 40px rgba(248,150,30,.6);
}

.pr-btn-outline{
  background:transparent;
  border-color:rgba(148,163,184,.8);
  color:#e5e7eb;
}
.pr-btn-outline:hover{
  background:rgba(15,23,42,.8);
  border-color:rgba(148,163,184,.9);
}




.pr-btn-outline2{
  background:transparent;
  border-color:rgba(148,163,184,.8);
  color:#000;
}
.pr-btn-outline2:hover{
  background:rgba(15,23,42,.3);
  border-color:rgba(148,163,184,.9);
}



.pr-btn-ghost{
  background:rgba(15,23,42,.85);
  border-color:rgba(56,189,248,.5);
  color:#e5e7eb;
}
.pr-btn-ghost:hover{
  background:rgba(15,23,42,1);
  border-color:#38bdf8;
}

.pr-btn-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

/* ===========================
   HERO
   =========================== */

.pr-hero{
  padding:70px 15px 64px;
}

.pr-hero-inner{
  max-width:1120px;
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(0,1.15fr);
  align-items:center;
  gap:40px;
}

/* Right visual */

.pr-hero-visual{
  display:flex;
  justify-content:center;
  width:100%;
}

/*
  ✅ UPDATED: No "different color container".
  We remove the blue radial background so it blends with the hero section.
  The image itself will be more pronounced, with shadow and subtle border.
*/
.pr-hero-card{
  width:100%;
  max-width:620px;
  padding:0;                        /* remove padding so image can be larger */
  border-radius:28px;
  background:transparent;           /* key change: no different color block */
  box-shadow:0 28px 70px rgba(0,0,0,.55);
  border:1px solid rgba(148,163,184,.14);
  overflow:hidden;
}

.pr-hero-illustration{
  width:100%;
  height:auto;
  display:block;
}

/* Right copy */

.pr-hero-copy{
  max-width:540px;
}

.pr-hero-kicker{
  font-size:13px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:#38bdf8;
  margin:0 0 10px;
}

.pr-hero-title{
  margin:0 0 14px;
  font-size:38px;
  line-height:1.08;
  color:#f9fafb;
}

.pr-hero-title-highlight{
  color:#f97316;
}

.pr-hero-subtitle{
  margin:0 0 20px;
  font-size:15px;
  line-height:1.6;
  color:#cbd5f5;
}

.pr-hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:18px;
}

.pr-hero-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px 16px;
  font-size:12px;
  color:#9ca3af;
}

/* ===========================
   Generic sections
   =========================== */

.pr-section{
  padding:32px 20px 40px;
}

.pr-section-inner{
  max-width:960px;
  margin:0 auto;
}

.pr-section-inner h2{
  font-size:24px;
  margin:0 0 10px;
  color:#e5e7eb;
}

.pr-section-inner p{
  margin:0;
  color:#9ca3af;
  font-size:14px;
}

/* ===========================
   Footer
   =========================== */

.pr-footer{
  border-top:1px solid rgba(30,64,175,.45);
  background:radial-gradient(circle at top,#020617 0,#020617 40%,#000 100%);
  padding:14px 20px;
}

.pr-footer-inner{
  max-width:1120px;
  margin:0 auto;
  display:flex;
  flex-wrap:wrap;
  gap:10px 18px;
  align-items:center;
  justify-content:space-between;
  font-size:13px;
  color:#9ca3af;
}

.pr-footer-nav{
  display:flex;
  flex-wrap:wrap;
  gap:10px 16px;
}
.pr-footer-nav a{
  color:#9ca3af;
  text-decoration:none;
  font-size:13px;
}
.pr-footer-nav a:hover{
  color:#e5e7eb;
}

/* ===========================
   Responsive
   =========================== */

@media (max-width: 900px){
  .pr-header-inner{
    gap:14px;
  }
  .pr-nav{
    display:none;
  }
  .pr-hero-inner{
    grid-template-columns:minmax(0,1fr);
    gap:32px;
  }
  .pr-hero{
    padding-top:32px;
  }
  .pr-hero-title{
    font-size:30px;
  }
  .pr-hero-card{
    max-width:520px;
    border-radius:24px;
  }
}

@media (max-width: 600px){
  

  
  .pr-header-inner{
    padding-inline:14px;
  }
  .pr-hero-card{
    max-width:420px;
    border-radius:20px;
  }
  .pr-hero-actions{
    flex-direction:column;
    align-items:flex-start;
  }
}

/* ===========================
   Dynamic word animation helpers (unchanged)
   =========================== */

.pr-hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.pr-hero-dynamic-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.pr-hero-dynamic-prefix {
  opacity: 0.75;
  font-weight: 600;
  color: #9ca3af;
}

.pr-hero-dynamic-word {
  display: inline-block;
  min-width: 90px;
}

.pr-hero-cursor {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  background: #f97316;
  margin-left: 2px;
  transform: translateY(2px);
}

.pr-hero-cursor.is-hidden {
  opacity: 0;
}

@media (max-width: 900px) {
  .pr-hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Tablet & Mobile - Increase top padding */
@media (max-width: 900px) {
  .pr-hero {
    padding-top: 70px;     /* Increased from 32px → 100px */
    padding-bottom: 60px;
  }
}

/* Extra small phones - even more top space if needed */
@media (max-width: 600px) {
  .pr-hero {
    padding-top: 70px;     /* You can adjust this value */
    padding-bottom: 50px;
  }
}



