:root{
  --orange: #FF9F1C;
  --yellow: #FFBF69;
  --buff:   #CB997E;
  --peach:  #FFE8D6;

  --ink: #1f1a16;
  --card: rgba(255,255,255,0.55);
  --border: rgba(0,0,0,0.08);
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
  --radius: 20px;
  --radius-sm: 14px;
  --max: 1100px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Non-repeating “fixed” gradient background */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(1200px 600px at 20% 0%, rgba(255,191,105,0.35), transparent 60%),
    radial-gradient(900px 500px at 90% 15%, rgba(255,159,28,0.25), transparent 55%),
    linear-gradient(180deg, var(--peach), #fff 65%);
  background-repeat: no-repeat;
}

a { color: inherit; text-decoration: none; }
.wrap{ max-width: var(--max); margin: 0 auto; padding: 28px 20px 60px; }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(8px);
  font-weight: 600;
  cursor: pointer;
}
.btn.primary{
  background: var(--orange);
  border-color: rgba(0,0,0,0.06);
  color: #fff;
}

/* Disabled buttons */
.btn.disabled,
.btn[aria-disabled="true"]{
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
  background: rgba(255,255,255,0.45);
  color: var(--ink);
}


/* Top nav layout:
   - Left: brand
   - Middle: collapsible links (hamburger on mobile)
   - Right: actions (never collapse) */
.header{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
}

.brand{
  display:flex; align-items:center; gap: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.brand span{
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}
.mark{
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--orange), #ff8b00);
  display:grid; place-items:center;
  box-shadow: var(--shadow);
}
.mark.logo{
  padding: 6px;
}
.mark.logo img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

.nav-mid{
  display:flex;
  align-items:center;
  gap: 18px;
  opacity: 0.92;
}
.nav-actions{
  display:flex;
  align-items:center;
  gap: 10px;
}

/* Hamburger button (only visible on mobile) */
.nav-toggle{
  display:none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(8px);
  cursor: pointer;
}
.nav-toggle svg{ width: 22px; height: 22px; opacity: 0.85; }

.nav-drawer{
  display:none;
  margin-top: 12px;
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.65);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.nav-drawer a{
  display:block;
  padding: 12px 10px;
  border-radius: 12px;
}
.nav-drawer a:hover{
  background: rgba(255,191,105,0.22);
}

/* Page hero */
.hero{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: center;
  margin-top: 36px;
}
.badge{
  display:inline-flex; align-items:center; gap:10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,191,105,0.22);
  border: 1px solid rgba(0,0,0,0.06);
  font-weight: 600;
  width: fit-content;
}
.dot{
  width: 10px; height: 10px; border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,159,28,0.22);
}
h1{
  font-size: clamp(40px, 4.2vw, 58px);
  line-height: 1.05;
  margin: 14px 0 12px;
  letter-spacing: -0.03em;
}
.sub{
  font-size: 18px;
  line-height: 1.55;
  max-width: 56ch;
  opacity: 0.9;
  margin: 0 0 18px;
}
.ctaRow{ display:flex; gap: 12px; flex-wrap: wrap; margin: 18px 0 6px; }
.fine{ font-size: 13px; opacity: 0.75; margin-top: 8px; }

.bullets{
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display:grid;
  gap: 12px;
  max-width: 62ch;
}
.bullets li{
  display:flex; gap: 10px; align-items:flex-start;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.check{
  width: 22px; height: 22px; border-radius: 8px;
  background: rgba(255,159,28,0.18);
  display:grid; place-items:center;
  flex: 0 0 auto;
  margin-top: 1px;
}
.check svg{ width: 14px; height: 14px; }

/* Panel */
.panel{
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.65), rgba(255,255,255,0.45));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.panelHeader{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 16px;
  background: rgba(255,191,105,0.18);
  border-bottom: 1px solid var(--border);
  font-weight: 600;
}
.pill{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,159,28,0.18);
  border: 1px solid rgba(0,0,0,0.06);
  font-weight: 600;
}
.panelBody{ padding: 16px; display:grid; gap: 12px; }
.row{
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--border);
}
.row .k{ font-size: 12px; opacity: 0.7; margin-bottom: 6px; }
.row .v{ font-weight: 650; letter-spacing: -0.01em; }
.bar{
  height: 10px;
  border-radius: 999px;
  background: rgba(203,153,126,0.25);
  overflow:hidden;
  margin-top: 10px;
}
.bar > div{
  height: 100%;
  width: 68%;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  border-radius: 999px;
}

/* Content pages */
.page{
  margin-top: 28px;
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.60);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}
.page h2{ margin: 0 0 12px; letter-spacing: -0.02em; }
.page p, .page li{ line-height: 1.65; opacity: 0.92; }
.page ul{ margin: 10px 0 0; }

/* Forms */
.form{
  display:grid;
  gap: 12px;
  margin-top: 12px;
}
.field{
  display:grid;
  gap: 6px;
}
.field label{ font-weight: 600; font-size: 14px; opacity: 0.9; }
.field input, .field select, .field textarea{
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.75);
  outline: none;
  font-size: 15px;
}
.field textarea{ min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus{
  border-color: var(--orange);
}

/* Pricing cards */
.pricing-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.pricing-card{
  padding: 22px;
  border-radius: var(--radius);
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.75),
    rgba(255,255,255,0.55)
  );
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
}

.pricing-card.featured{
  border-color: rgba(255,159,28,0.45);
  box-shadow: 0 20px 50px rgba(255,159,28,0.25);
}

.pricing-title{
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.pricing-desc{
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 14px;
}

.pricing-price{
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 10px 0 14px;
}

.pricing-price span{
  font-size: 14px;
  font-weight: 500;
  opacity: 0.7;
}

.pricing-features{
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 10px;
  font-size: 14px;
}

.pricing-features li{
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.pricing-features li::before{
  content: "✓";
  color: var(--orange);
  font-weight: 700;
}

.pricing-cta{
  margin-top: 10px;
}

/* How it works */
.workflow-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 18px;btn
  
  margin-top: 18px;
}

.workflow-card{
  padding: 22px;
  border-radius: var(--radius);
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.75),
    rgba(255,255,255,0.55)
  );
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
}

.workflow-step{
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--orange), #ff8b00);
  color: #fff;
  font-weight: 700;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  box-shadow: 0 8px 20px rgba(255,159,28,0.35);
}

.workflow-title{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.workflow-desc{
  font-size: 14px;
  line-height: 1.55;
  opacity: 0.85;
}

/* Optional emphasis */
.workflow-card.featured{
  border-color: rgba(255,159,28,0.45);
}

/* Responsive */
@media (max-width: 1000px){
  .workflow-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px){
  .workflow-grid{
    grid-template-columns: 1fr;
  }
}



/* Responsive */
@media (max-width: 900px){
  .pricing-grid{
    grid-template-columns: 1fr;
  }
}



/* Footer */
footer{
  margin-top: 54px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,0.08);
  display:flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0.85;
  font-size: 13px;
}
.footer-links{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Modal */
.modal-backdrop{
  position: fixed;
  inset: 0;
  background: rgba(255,159,28,0.35);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  z-index: 999;
}
.modal{
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.75));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px 26px 26px;
  max-width: 440px;
  width: calc(100% - 40px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.18);
  position: relative;
  text-align: center;
}
.modal h2{
  margin: 6px 0 8px;
  font-size: 28px;
  letter-spacing: -0.02em;
}
.modal-sub{
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.9;
  margin: 0 0 18px;
}
.modal-form{
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.modal-form input{
  flex: 1;
  padding: 14px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 15px;
  outline: none;
}
.modal-form input:focus{ border-color: var(--orange); }
.modal-fine{
  font-size: 13px;
  opacity: 0.75;
  margin-top: 8px;
}
.modal-close{
  position: absolute;
  top: 10px;
  right: 12px;
  border: none;
  background: none;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.6;
}
.modal-close:hover{ opacity: 1; }
.hidden{ display: none !important; }

/* Responsive */
@media (max-width: 920px){
  .hero{ grid-template-columns: 1fr; }
}

/* Mobile nav behavior */
@media (max-width: 760px){
  .nav-mid{ display:none; }
  .nav-toggle{ display:inline-grid; place-items:center; }
  .nav-drawer{ display:block; }
}
