@charset "UTF-8";
/*==================================================
Saiful UI Framework
Main SCSS Entry File
Version : 1.0
Author : Shiful
Description :
Main stylesheet that imports all framework files.
==================================================*/
/*=========================================
Abstracts
==========================================*/
/*==================================================
Blueprint™ Design System
Design Tokens v2.0
Author : Shiful
==================================================*/
/*=========================================
Colors
==========================================*/
/*=========================================
Gradients
==========================================*/
/*=========================================
Typography
==========================================*/
/*=========================================
Font Sizes
==========================================*/
/*=========================================
Line Heights
==========================================*/
/*=========================================
Spacing
==========================================*/
/*=========================================
Container
==========================================*/
/*=========================================
Radius
==========================================*/
/*=========================================
Shadow
==========================================*/
/*=========================================
Transitions
==========================================*/
/*=========================================
Breakpoints
==========================================*/
/*=========================================
Z-index
==========================================*/
/*==================================================
Saiful UI Framework
Mixins
Version : 1.0
==================================================*/
/*=========================================
Responsive Breakpoints
==========================================*/
/* Flexible breakpoint */
/*=========================================
Flex Helpers
==========================================*/
/*=========================================
Grid Helpers
==========================================*/
/*=========================================
Container
==========================================*/
/*=========================================
Section
==========================================*/
/*=========================================
Card
==========================================*/
/*=========================================
Glass Effect
==========================================*/
/*=========================================
Button
==========================================*/
/*=========================================
Typography
==========================================*/
/*=========================================
Gradient Text
==========================================*/
/*=========================================
Absolute Center
==========================================*/
/*=========================================
Overlay
==========================================*/
/*=========================================
Image Cover
==========================================*/
/*=========================================
Scrollbar
==========================================*/
/*=========================================
Hover Lift
==========================================*/
/*=========================================
Text Clamp
==========================================*/
/*=========================================
Aspect Ratio
==========================================*/
/*=========================================
Animation Delay
==========================================*/
/*=========================================
Shadow Levels
==========================================*/
/*==================================================
Saiful UI Framework
Animations
Version : 1.0
==================================================*/
/*=========================================
Fade In
==========================================*/
@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Manrope:wght@200;300;400;500;600;700;800&display=swap");
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*=========================================
Fade Up
==========================================*/
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*=========================================
Fade Down
==========================================*/
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*=========================================
Fade Left
==========================================*/
@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/*=========================================
Fade Right
==========================================*/
@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/*=========================================
Floating
==========================================*/
@keyframes floating {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-25px);
  }
  100% {
    transform: translateY(0);
  }
}
/*=========================================
Rotate
==========================================*/
@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/*=========================================
Pulse
==========================================*/
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
/*=========================================
Heartbeat
==========================================*/
@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(1.08);
  }
  40% {
    transform: scale(0.96);
  }
  60% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1);
  }
}
/*=========================================
Zoom In
==========================================*/
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/*=========================================
Shimmer
==========================================*/
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}
/*=========================================
Gradient Shift
==========================================*/
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/*=========================================
Glow
==========================================*/
@keyframes glow {
  0% {
    box-shadow: 0 0 0 rgba(180, 224, 0, 0.2);
  }
  50% {
    box-shadow: 0 0 35px rgba(180, 224, 0, 0.45);
  }
  100% {
    box-shadow: 0 0 0 rgba(180, 224, 0, 0.2);
  }
}
/*=========================================
Marquee
==========================================*/
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/*=========================================
Bounce
==========================================*/
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-14px);
  }
  60% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-6px);
  }
}
/*=========================================
Ripple
==========================================*/
@keyframes ripple {
  from {
    transform: scale(0.4);
    opacity: 1;
  }
  to {
    transform: scale(2.5);
    opacity: 0;
  }
}
/*=========================================
Spin Slow
==========================================*/
@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
/*=========================================
Blink
==========================================*/
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}
/*=========================================
Animation Utility Classes
==========================================*/
.fade-up {
  animation: fadeUp 0.9s ease both;
}

.fade-down {
  animation: fadeDown 0.9s ease both;
}

.fade-left {
  animation: fadeLeft 0.9s ease both;
}

.fade-right {
  animation: fadeRight 0.9s ease both;
}

.fade-in {
  animation: fadeIn 0.8s ease both;
}

.float {
  animation: floating 8s ease-in-out infinite;
}

.rotate {
  animation: rotate360 18s linear infinite;
}

.rotate-reverse {
  animation: rotate360 18s linear infinite reverse;
}

.pulse {
  animation: pulse 2.5s infinite;
}

.heartbeat {
  animation: heartbeat 1.8s infinite;
}

.glow {
  animation: glow 3s infinite;
}

.bounce {
  animation: bounce 2.5s infinite;
}

.blink {
  animation: blink 1.4s infinite;
}

/*=========================================
Reduced Motion Support
==========================================*/
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*=========================================
Base
==========================================*/
/*==================================================
Blueprint™ Design System
Reset
Version : 2.0
Purpose:
Browser normalization only.
No layout, typography or component styles.
==================================================*/
/*=========================================
Box Model
==========================================*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*=========================================
HTML
==========================================*/
html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/*=========================================
Body
==========================================*/
body {
  min-height: 100vh;
  overflow-x: hidden;
  background: #FCFCFA;
  color: #0F172A;
}

/*=========================================
Media
==========================================*/
img,
picture,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

/*=========================================
Links
==========================================*/
a {
  text-decoration: none;
  color: inherit;
}

/*=========================================
Lists
==========================================*/
ul,
ol {
  list-style: none;
}

/*=========================================
Buttons
==========================================*/
button {
  appearance: none;
  border: none;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

/*=========================================
Form Elements
==========================================*/
input,
textarea,
select {
  appearance: none;
  background: transparent;
  border: none;
  outline: none;
  color: inherit;
  font: inherit;
}

textarea {
  resize: vertical;
}

/*=========================================
Tables
==========================================*/
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

/*=========================================
Horizontal Rule
==========================================*/
hr {
  border: 0;
  border-top: 1px solid #E5E7EB;
}

/*=========================================
Iframes
==========================================*/
iframe {
  border: 0;
}

/*=========================================
Code
==========================================*/
code,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

/*=========================================
Strong
==========================================*/
strong {
  font-weight: 700;
}

/*=========================================
Focus
==========================================*/
:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.18);
}

/*=========================================
Selection
==========================================*/
::selection {
  background: #2563EB;
  color: #FFFFFF;
}

/*=========================================
Scrollbar
==========================================*/
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #F8FAFC;
}

::-webkit-scrollbar-thumb {
  background: #E5E7EB;
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: #2563EB;
}

/*=========================================
Section
==========================================*/
section {
  position: relative;
}

/*=========================================
Hidden Attribute
==========================================*/
[hidden] {
  display: none !important;
}

/*==================================================
Blueprint™ Design System
Typography
Version : 2.0
==================================================*/
/*=========================================
Google Fonts
==========================================*/
/*=========================================
Root
==========================================*/
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.85;
  color: #0F172A;
  background: #FCFCFA;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*=========================================
Selection
==========================================*/
::selection {
  background: #2563EB;
  color: #FFFFFF;
}

/*=========================================
Headings
==========================================*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #0F172A;
}

h1 {
  font-size: clamp(4rem, 8vw, 7rem);
  margin-bottom: 1.8rem;
  max-width: 900px;
}

h2 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  margin-bottom: 1.5rem;
}

h3 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.4rem;
}

h5 {
  font-size: 1.15rem;
}

h6 {
  font-size: 1rem;
}

/*=========================================
Paragraph
==========================================*/
p {
  max-width: 760px;
  margin-bottom: 1.8rem;
  color: #334155;
  font-size: 1.12rem;
}

/*=========================================
Links
==========================================*/
a {
  color: inherit;
  text-decoration: none;
  transition: all 0.35s ease;
}

a:hover {
  color: #2563EB;
}

/*=========================================
Lists
==========================================*/
ul,
ol {
  list-style: none;
}

/*=========================================
Images
==========================================*/
img {
  display: block;
  max-width: 100%;
  height: auto;
}

/*=========================================
Strong
==========================================*/
strong {
  color: #0F172A;
  font-weight: 700;
}

/*=========================================
Small Text
==========================================*/
small {
  font-size: 0.875rem;
  color: #64748B;
}

/*=========================================
Lead Paragraph
==========================================*/
.lead {
  font-size: 1.35rem;
  line-height: 2;
  color: #334155;
  max-width: 850px;
}

/*=========================================
Eyebrow
==========================================*/
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: #2563EB;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 50px;
  height: 2px;
  background: #2563EB;
}

/*=========================================
Display Title
==========================================*/
.display {
  font-size: clamp(5rem, 10vw, 8rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

/*=========================================
Editorial Quote
==========================================*/
blockquote {
  position: relative;
  padding-left: 40px;
  margin: 4rem 0;
  font-family: "Instrument Serif", serif;
  font-size: 2rem;
  line-height: 1.5;
  color: #0F172A;
}

blockquote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #C6922B;
}

/*=========================================
Section Number
==========================================*/
.section-number {
  font-size: 8rem;
  font-weight: 800;
  color: rgba(15, 23, 42, 0.05);
  line-height: 1;
  user-select: none;
}

/*=========================================
Text Utilities
==========================================*/
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-muted {
  color: #64748B;
}

.text-primary {
  color: #2563EB;
}

.text-gold {
  color: #C6922B;
}

/*=========================================
Responsive
==========================================*/
@media (max-width: 992px) {
  html {
    font-size: 15px;
  }
  h1 {
    font-size: clamp(3rem, 8vw, 4.8rem);
  }
  h2 {
    font-size: clamp(2.2rem, 6vw, 3.2rem);
  }
  .display {
    font-size: clamp(3.5rem, 10vw, 5rem);
  }
  blockquote {
    font-size: 1.5rem;
    padding-left: 24px;
  }
  .section-number {
    font-size: 4.5rem;
  }
}
/*==================================================
Blueprint™ Design System
Utilities
Version : 2.0
==================================================*/
/*=========================================
Container
==========================================*/
.container, .hero__wrapper {
  width: min(100% - 32px * 2, 1320px);
  margin-inline: auto;
}

/*=========================================
Sections
==========================================*/
.section {
  padding: 12rem 0;
}

.section-sm {
  padding: 6rem 0;
}

.section-lg {
  padding: 14rem 0;
}

/*=========================================
Section Backgrounds
==========================================*/
.section-white {
  background: #FFFFFF;
}

.section-soft {
  background: #F8FAFC;
}

.section-canvas {
  background: #FCFCFA;
}

/*=========================================
Grid
==========================================*/
.grid {
  display: grid;
  gap: 3rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4rem;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

/*=========================================
Auto Grid
==========================================*/
.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/*=========================================
Flex
==========================================*/
.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

/*=========================================
Flow
==========================================*/
.flow > * + * {
  margin-top: 1.5rem;
}

.flow-lg > * + * {
  margin-top: 3rem;
}

/*=========================================
Stack
==========================================*/
.stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stack-lg {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/*=========================================
Cluster
==========================================*/
.cluster {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

/*=========================================
Center
==========================================*/
.center {
  text-align: center;
}

.mx-auto {
  margin-inline: auto;
}

/*=========================================
Width
==========================================*/
.max-600 {
  max-width: 600px;
}

.max-700 {
  max-width: 700px;
}

.max-800 {
  max-width: 800px;
}

.max-900 {
  max-width: 900px;
}

/*=========================================
Spacing Helpers
==========================================*/
.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-5 {
  margin-top: 1.5rem;
}

.mt-6 {
  margin-top: 2rem;
}

.mt-7 {
  margin-top: 3rem;
}

.mt-8 {
  margin-top: 4rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-5 {
  margin-bottom: 1.5rem;
}

.mb-6 {
  margin-bottom: 2rem;
}

.mb-7 {
  margin-bottom: 3rem;
}

.mb-8 {
  margin-bottom: 4rem;
}

/*=========================================
Border Radius
==========================================*/
.rounded-sm {
  border-radius: 10px;
}

.rounded {
  border-radius: 16px;
}

.rounded-lg {
  border-radius: 24px;
}

.rounded-xl {
  border-radius: 36px;
}

/*=========================================
Shadow
==========================================*/
.shadow-sm {
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.05);
}

.shadow {
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.shadow-lg {
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.1);
}

/*=========================================
Screen Reader
==========================================*/
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/*=========================================
Responsive
==========================================*/
@media (max-width: 992px) {
  .section {
    padding: 8rem 0;
  }
  .section-lg {
    padding: 10rem 0;
  }
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}
/*==================================================
Blueprint™ Design System
Blueprint Patterns
Version : 1.0
==================================================*/
/*=========================================
Blueprint Background
==========================================*/
.blueprint {
  position: relative;
  overflow: hidden;
}

/*=========================================
Grid Pattern
==========================================*/
.blueprint::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image: linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
  background-size: 60px 60px;
}

/*=========================================
Large Dot Grid
==========================================*/
.blueprint-dots::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(15, 23, 42, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.25;
}

/*=========================================
Corner Marks
==========================================*/
.corner {
  position: absolute;
  width: 40px;
  height: 40px;
  border-color: #2563EB;
  opacity: 0.18;
}

.corner.top-left {
  top: 30px;
  left: 30px;
  border-top: 2px solid;
  border-left: 2px solid;
}

.corner.top-right {
  top: 30px;
  right: 30px;
  border-top: 2px solid;
  border-right: 2px solid;
}

.corner.bottom-left {
  left: 30px;
  bottom: 30px;
  border-left: 2px solid;
  border-bottom: 2px solid;
}

.corner.bottom-right {
  right: 30px;
  bottom: 30px;
  border-right: 2px solid;
  border-bottom: 2px solid;
}

/*=========================================
Blueprint Divider
==========================================*/
.blueprint-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 80px 0;
}

.blueprint-divider::before,
.blueprint-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #E5E7EB;
}

.blueprint-divider span {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #64748B;
}

/*=========================================
Measurement Label
==========================================*/
.measure {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #64748B;
}

.measure::before {
  content: "";
  width: 50px;
  height: 1px;
  background: #E5E7EB;
}

/*=========================================
Technical Label
==========================================*/
.label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.5rem 1rem;
  border: 1px solid #E5E7EB;
  border-radius: 999px;
  background: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 600;
}

/*=========================================
Blueprint Frame
==========================================*/
.frame {
  position: relative;
  border: 1px solid #E5E7EB;
  border-radius: 24px;
  background: #FFFFFF;
  padding: 3rem;
}

.frame::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 14px;
  height: 14px;
  border-top: 2px solid #2563EB;
  border-left: 2px solid #2563EB;
}

.frame::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 14px;
  height: 14px;
  border-right: 2px solid #2563EB;
  border-bottom: 2px solid #2563EB;
}

/*=========================================
Vertical Timeline
==========================================*/
.timeline {
  position: relative;
  padding-left: 60px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  width: 2px;
  height: 100%;
  background: #E5E7EB;
}

/*=========================================
Timeline Item
==========================================*/
.timeline-item {
  position: relative;
  padding-bottom: 60px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -49px;
  top: 8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #2563EB;
}

/*=========================================
Blueprint Caption
==========================================*/
.caption {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #64748B;
  letter-spacing: 0.05em;
}

/*=========================================
Responsive
==========================================*/
@media (max-width: 992px) {
  .frame {
    padding: 2rem;
  }
  .blueprint-divider {
    margin: 60px 0;
  }
  .corner {
    display: none;
  }
}
/*=========================================
Components
==========================================*/
/*==================================================
Saiful UI Framework
Buttons
Version : 1.0
==================================================*/
/*=========================================
Base Button
==========================================*/
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 34px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.35s ease;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  user-select: none;
  white-space: nowrap;
}

/*=========================================
Button Sizes
==========================================*/
.btn-sm {
  padding: 12px 24px;
  font-size: 0.9rem;
}

.btn-md {
  padding: 16px 34px;
}

.btn-lg {
  padding: 20px 42px;
  font-size: 1.05rem;
}

/*=========================================
Primary
==========================================*/
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 34px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.35s ease;
  cursor: pointer;
  border: none;
  background: #2563EB;
  color: #111;
}
.btn-primary:hover {
  background: #1D4ED8;
  transform: translateY(-3px);
}

/*=========================================
Outline
==========================================*/
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 34px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.35s ease;
  cursor: pointer;
  border: none;
  border: 1px solid #2563EB;
  color: #2563EB;
  background: transparent;
}
.btn-outline:hover {
  background: #2563EB;
  color: #111;
}

/*=========================================
Dark
==========================================*/
.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 34px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.35s ease;
  cursor: pointer;
  border: none;
  background: #FFFFFF;
  color: #FFFFFF;
  border: 1px solid #E5E7EB;
}
.btn-dark:hover {
  background: #F8FAFC;
  transform: translateY(-4px);
}

/*=========================================
Glass
==========================================*/
.btn-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 34px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.35s ease;
  cursor: pointer;
  border: none;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
}
.btn-glass:hover {
  border-color: #2563EB;
  color: #2563EB;
}

/*=========================================
Gradient
==========================================*/
.btn-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 34px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.35s ease;
  cursor: pointer;
  border: none;
  background: linear-gradient(135deg, #2563EB, #1E40AF);
  color: #111;
}
.btn-gradient:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.1);
}

/*=========================================
Ghost
==========================================*/
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 34px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.35s ease;
  cursor: pointer;
  border: none;
  background: transparent;
  color: #0F172A;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
}

/*=========================================
Full Width
==========================================*/
.btn-block {
  width: 100%;
}

/*=========================================
Rounded
==========================================*/
.btn-rounded {
  border-radius: 24px;
}

/*=========================================
Square
==========================================*/
.btn-square {
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

/*=========================================
Icon
==========================================*/
.btn-icon {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.btn-icon i,
.btn-icon svg {
  font-size: 1rem;
}

/*=========================================
Loading
==========================================*/
.btn-loading {
  pointer-events: none;
  opacity: 0.8;
}

.btn-loading::after {
  content: "";
  width: 18px;
  height: 18px;
  margin-left: 12px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: rotate360 0.8s linear infinite;
}

/*=========================================
Ripple Effect
==========================================*/
.btn::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: 0.6s;
}

.btn:active::before {
  width: 280px;
  height: 280px;
}

/*=========================================
Disabled
==========================================*/
.btn:disabled,
.btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/*=========================================
Focus
==========================================*/
.btn:focus-visible {
  outline: 2px solid #2563EB;
  outline-offset: 4px;
}

/*=========================================
Responsive
==========================================*/
@media (max-width: 992px) {
  .btn {
    width: 100%;
    justify-content: center;
  }
}
/*==================================================
Blueprint™ Design System
Cards
Version : 2.0
==================================================*/
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2.5rem;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 24px;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.05);
  transition: all 0.35s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.1);
  border-color: #DBEAFE;
}

.card__number {
  margin-bottom: 1.5rem;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(37, 99, 235, 0.12);
}

.card__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  background: #DBEAFE;
  color: #2563EB;
}

.card__title {
  margin-bottom: 1rem;
}

.card__text {
  color: #334155;
  margin-bottom: 2rem;
}

.card__footer {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid #E5E7EB;
}

.card--soft {
  background: #F8FAFC;
}

.card--outline {
  background: transparent;
  border: 2px solid #E5E7EB;
  box-shadow: none;
}

.card--outline:hover {
  background: #FFFFFF;
}

.card--feature {
  padding: 3rem;
}

.card--center {
  text-align: center;
  align-items: center;
}

@media (max-width: 992px) {
  .card {
    padding: 2rem;
  }
}
/*==================================================
Blueprint™ Design System
Section Header
Version : 2.0
==================================================*/
/*=========================================
Section Header
==========================================*/
.section-header {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 8rem;
}

/*=========================================
Large Section Number
==========================================*/
.section-number {
  font-family: "Manrope", sans-serif;
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 0.9;
  color: rgba(15, 23, 42, 0.06);
  user-select: none;
}

/*=========================================
Content
==========================================*/
.section-content {
  max-width: 760px;
}

/*=========================================
Eyebrow
==========================================*/
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #2563EB;
}

.section-eyebrow::before {
  content: "";
  width: 48px;
  height: 2px;
  background: #2563EB;
}

/*=========================================
Title
==========================================*/
.section-title {
  margin: 0 0 1.5rem;
  max-width: 760px;
}

.section-title em {
  font-style: normal;
  color: #2563EB;
}

/*=========================================
Description
==========================================*/
.section-description {
  max-width: 680px;
  color: #334155;
  font-size: 1.15rem;
  margin: 0;
}

/*=========================================
Optional Meta Row
==========================================*/
.section-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-top: 2rem;
}

.section-meta span {
  position: relative;
  color: #64748B;
  font-size: 0.95rem;
}

.section-meta span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -1rem;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #E5E7EB;
  transform: translateY(-50%);
}

/*=========================================
Centered Variant
==========================================*/
.section-header.center {
  grid-template-columns: 1fr;
  text-align: center;
}

.section-header.center .section-content {
  margin-inline: auto;
}

.section-header.center .section-eyebrow {
  justify-content: center;
}

.section-header.center .section-eyebrow::before {
  display: none;
}

.section-header.center .section-meta {
  justify-content: center;
}

.section-header.center .section-number {
  margin-bottom: 1rem;
}

/*=========================================
Divider
==========================================*/
.section-divider {
  width: 100%;
  max-width: 180px;
  height: 1px;
  margin-top: 2.5rem;
  background: #E5E7EB;
}

/*=========================================
Responsive
==========================================*/
@media (max-width: 992px) {
  .section-header {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .section-number {
    font-size: 3.5rem;
  }
  .section-content {
    max-width: 100%;
  }
}
/*=========================================
Layout
==========================================*/
/*==================================================
Blueprint™ Design System
Header
==================================================*/
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 999;
  padding: 1.25rem 0;
  transition: all 0.35s ease;
}

.site-header.scrolled {
  padding: 0.75rem 0;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.05);
}

/*=========================================
Navbar
==========================================*/
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/*=========================================
Logo
==========================================*/
.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo__mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #2563EB;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1.35rem;
}

.logo__text {
  display: flex;
  flex-direction: column;
}

.logo__text strong {
  font-size: 1rem;
  line-height: 1.2;
}

.logo__text small {
  color: #64748B;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/*=========================================
Navigation
==========================================*/
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-menu a {
  position: relative;
  font-weight: 500;
  color: #334155;
  transition: all 0.35s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #2563EB;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #2563EB;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.35s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  transform: scaleX(1);
}

/*=========================================
Actions
==========================================*/
.nav-actions {
  display: flex;
  align-items: center;
}

/*=========================================
Mobile Toggle
==========================================*/
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: #0F172A;
  transition: all 0.35s ease;
}

/*=========================================
Responsive
==========================================*/
@media (max-width: 1200px) {
  .nav-menu {
    display: none;
  }
  .nav-actions {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
}
/*==================================================
Blueprint™ Design System
Chapter 01 - Hero
==================================================*/
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 10rem 0 8rem;
  background: #FCFCFA;
}

.hero__wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 7rem;
  align-items: center;
}

/*=========================================
Left
==========================================*/
.hero__content {
  max-width: 760px;
}

.hero__chapter {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  color: #64748B;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.hero__chapter::before {
  content: "01";
  color: #2563EB;
  font-size: 1rem;
  font-weight: 800;
}

.hero__title {
  margin-bottom: 2rem;
}

.hero__title span {
  color: #2563EB;
}

.hero__lead {
  max-width: 680px;
  font-size: 1.35rem;
  color: #334155;
  margin-bottom: 3rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.hero__stat {
  border-left: 2px solid #E5E7EB;
  padding-left: 1.25rem;
}

.hero__stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #0F172A;
}

.hero__stat span {
  color: #64748B;
  font-size: 0.95rem;
}

/*=========================================
Right
==========================================*/
.hero__blueprint {
  position: relative;
  border: 1px solid #E5E7EB;
  border-radius: 24px;
  background: #FFFFFF;
  padding: 3rem;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.05);
}

.hero__blueprint::before {
  content: "BUSINESS BLUEPRINT";
  display: block;
  margin-bottom: 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  color: #64748B;
}

/*=========================================
Framework
==========================================*/
.framework {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.framework__step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.framework__number {
  font-size: 2rem;
  font-weight: 800;
  color: #DBEAFE;
}

.framework__content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.35rem;
}

.framework__content p {
  margin: 0;
  font-size: 1rem;
}

/*=========================================
Connector
==========================================*/
.framework__step:not(:last-child) {
  position: relative;
  padding-bottom: 2rem;
}

.framework__step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 30px;
  top: 60px;
  width: 1px;
  height: calc(100% - 20px);
  background: #E5E7EB;
}

/*=========================================
Responsive
==========================================*/
@media (max-width: 1200px) {
  .hero__wrapper {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .hero__blueprint {
    max-width: 720px;
    margin-inline: auto;
  }
}
@media (max-width: 992px) {
  .hero {
    padding: 8rem 0 6rem;
  }
  .hero__stats {
    grid-template-columns: 1fr;
  }
  .hero__actions {
    flex-direction: column;
  }
}
/*==================================================
Blueprint™ Design System
Chapter 02
Who I Help
Version : 2.0
==================================================*/
.who {
  position: relative;
  overflow: hidden;
}

/*=========================================
Wrapper
==========================================*/
.who__wrapper {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 5rem;
  align-items: start;
}

/*=========================================
Sticky Intro
==========================================*/
.who__intro {
  position: sticky;
  top: 120px;
}

.who__intro p {
  margin-bottom: 2rem;
}

/*=========================================
Industry Grid
==========================================*/
.who__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

/*=========================================
Card
==========================================*/
.who__card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2.5rem;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 24px;
  transition: all 0.35s ease;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.05);
}

.who__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.1);
  border-color: #DBEAFE;
}

/*=========================================
Number
==========================================*/
.who__number {
  margin-bottom: 1.5rem;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(37, 99, 235, 0.12);
}

/*=========================================
Icon
==========================================*/
.who__icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  background: #DBEAFE;
  color: #2563EB;
}

.who__icon svg {
  width: 30px;
  height: 30px;
}

/*=========================================
Title
==========================================*/
.who__title {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

/*=========================================
Description
==========================================*/
.who__text {
  margin-bottom: 2rem;
  color: #334155;
  flex: 1;
}

/*=========================================
Footer
==========================================*/
.who__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid #E5E7EB;
}

.who__link {
  font-weight: 600;
  color: #2563EB;
  transition: all 0.35s ease;
}

.who__link:hover {
  transform: translateX(6px);
}

/*=========================================
Accent
==========================================*/
.who__card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #2563EB;
  transform: scaleY(0);
  transform-origin: top;
  transition: all 0.35s ease;
}

.who__card:hover::before {
  transform: scaleY(1);
}

/*=========================================
Responsive
==========================================*/
@media (max-width: 1200px) {
  .who__wrapper {
    grid-template-columns: 1fr;
  }
  .who__intro {
    position: static;
  }
}
@media (max-width: 992px) {
  .who__grid {
    grid-template-columns: 1fr;
  }
}
.framework {
  position: relative;
}

.framework-roadmap {
  position: relative;
  margin-top: 5rem;
}

.framework-roadmap::before {
  content: "";
  position: absolute;
  left: 42px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #E5E7EB;
}

.framework-step {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 3rem;
  margin-bottom: 5rem;
}

.framework-step:last-child {
  margin-bottom: 0;
}

.framework-step__circle {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid #2563EB;
  font-size: 1.5rem;
  font-weight: 800;
  z-index: 2;
}

.framework-step__content {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.05);
  transition: all 0.35s ease;
}

.framework-step__content:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.1);
}

/*==================================================
Business Solutions
==================================================*/
.solutions {
  position: relative;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 5rem;
}

/*==================================================
Page Hero
==================================================*/
.page-hero {
  position: relative;
  padding: 12rem 0 7rem;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.page-hero__content {
  max-width: 900px;
}

.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2563EB;
}

.page-hero h1 {
  margin-bottom: 2rem;
}

.page-hero p {
  max-width: 720px;
  font-size: 1.125rem;
  color: #334155;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

@media (max-width: 1200px) {
  .two-column {
    grid-template-columns: 1fr;
  }
}
/*==================================================
Call To Action
==================================================*/
.cta {
  position: relative;
}

.cta-box {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  padding: 5rem;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 36px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.1);
}

.cta-content h2 {
  margin: 1rem 0 2rem;
  max-width: 700px;
}

.cta-content p {
  max-width: 620px;
  margin-bottom: 3rem;
}

.cta-buttons {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.cta-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cta-item {
  padding: 2rem;
  background: #F8FAFC;
  border-radius: 24px;
  border: 1px solid #E5E7EB;
}

.cta-item strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: #2563EB;
  color: #FFFFFF;
  font-size: 1.125rem;
}

.cta-item h4 {
  margin-bottom: 0.75rem;
}

.cta-item p {
  margin: 0;
  color: #334155;
}

@media (max-width: 1200px) {
  .cta-box {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 992px) {
  .cta-box {
    padding: 3rem 2rem;
  }
}
/*==================================================
Footer
==================================================*/
.site-footer {
  padding: 6rem 0 2rem;
  background: #FFFFFF;
  border-top: 1px solid #E5E7EB;
}

.footer {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
}

.footer__brand p {
  margin-top: 2rem;
  max-width: 420px;
  color: #334155;
}

.footer__column h4 {
  margin-bottom: 1.5rem;
}

.footer__column ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__column a {
  color: #334155;
  transition: all 0.35s ease;
}

.footer__column a:hover {
  color: #2563EB;
  padding-left: 6px;
}

.footer-bottom {
  margin-top: 5rem;
  padding-top: 2rem;
  border-top: 1px solid #E5E7EB;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom__links {
  display: flex;
  gap: 2rem;
}

@media (max-width: 1200px) {
  .footer {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 992px) {
  .footer {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/*# sourceMappingURL=style.css.map */
