:root {
  --accent: #d4a514;
  --accent-soft: #fff7db;
  --ink: #111827;
  --muted: #5f6673;
  --line: #e8e8e4;
  --bg: #ffffff;
  --card: #ffffff;
  --graphite: #262a31;
  --shadow: 0 24px 70px rgba(17, 24, 39, 0.09);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid transparent;
  background: var(--bg);
  backdrop-filter: blur(18px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  border-color: rgba(17, 24, 39, 0.08);
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.04);
}

.nav {
  /* width: min(1180px, calc(100% - 40px)); */
  max-width: 1440px; 
  width: 100%;
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}


.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}

.brand span {
  font-size: 0.72rem;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #3f4652;
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-links a{

    position:relative;

    display:inline-flex;
    align-items:center;

    height:76px;

    color:#3f4652;

    transition:color .25s ease;
}

.nav-links a:hover,
.nav-links a.active{

    color:var(--ink);
}

.nav-links a::after{

    content:"";

    position:absolute;

    left:50%;
    bottom:18px;

    width:0;
    height:3px;

    background:var(--accent);

    border-radius:3px 3px 0 0;

    transform:translateX(-50%);

    transition:width .25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after{

    width:32px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0 20px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button.primary {
  background: var(--accent);
  color: #161616;
  box-shadow: 0 18px 40px rgba(212, 165, 20, 0.24);
}

.button.secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.12);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 11px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

/* .section {
  width: min(1440px, calc(100% - 80px));
  
  margin: 0 auto;
  padding: 94px 0;
} */
.section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: 20px; /* Small padding so text doesn't touch the literal screen edge */
  padding-right: 20px;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  /*grid-template-columns: minmax(0, 1fr) minmax(390px, 1fr);*/
  grid-template-columns: 46% 54%;
  align-items: center;
  /*gap: 42px;*/
  gap:20px;
/*padding-top: 56px;*/
  padding-top:10px;
  padding-bottom:30px;
}

.hero-copy{
    max-width: 620px;
    margin-left: 10px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  overflow-wrap: normal;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.04;
}

h1 {
  /*font-size: clamp(2.9rem, 6.2vw, 5.65rem);
  letter-spacing: 0;*/
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height:1.05;
}

h2 {
  font-size: clamp(2.5rem, 4.4vw, 4.3rem);
  letter-spacing: 0;
}

.hero-accent,
.accent-text {
  color: var(--accent);
}

/*.hero-copy h1 {
  white-space: nowrap;
}

.no-break {
  white-space: nowrap;
}*/

.hero-copy h1 br {
  display: block;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.hero-text,
.section-text,
.section-heading p,
.mini-card p,
.footer-grid p,
.mission-card p {
  color: var(--muted);
}

.hero-text {
  max-width: 560px;
  margin: 24px 0 0;
  /*font-size: clamp(1.05rem, 2vw, 1.28rem);*/
  font-size:1.15rem;
  line-height:1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-visual {
  position: relative;
  display:flex;
  justify-content:center;
}

.hero-visual::before {
  position: absolute;
  inset: 8% 4% auto auto;
  width: 52%;
  height: 42%;
  content: "";
  border-radius: 50%;
  background: rgba(212, 165, 20, 0.12);
  filter: blur(28px);
}

.hero-visual img {
  /*position: relative;*/
  width:100%;
  max-width:none;
  transform: scale(1.1);
  transform-origin: right center;
}

.section-heading{
    max-width:900px;
    margin:0 auto 70px;
    text-align:center;
}

.contact-section .section-heading{

    margin-bottom:20px;

}

.contact-section .section-heading h2{

    font-size:clamp(3rem,4vw,4.6rem);

    line-height:1.05;
}

.contact-section .section-heading p{

    max-width:1000px;
    margin:18px auto 0;
    font-size:1.15rem;
    line-height:1.5;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading p {
  max-width: 760px;
  margin-top: 18px;
  font-size: 1.07rem;
}

.solution-grid,
.features-grid,
.values-grid,
.contact-grid,
.journey-grid {
  display: grid;
  gap: 22px;
}

.solution-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card,
.mini-card,
.dashboard-panel,
.process,
.contact-form,
.contact-card {
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 20px 60px rgba(17, 24, 39, 0.055);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover,
.mini-card:hover,
.process:hover,
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-card.large {
  overflow: hidden;
  padding: 20px;
}

.feature-card.large img {
  width: 100%;
  border-radius: 18px;
  background: #f5f6f4;
}

.feature-card.large div {
  padding: 22px 6px 8px;
}

.features{
    min-height:100vh;

    display:flex;
    flex-direction:column;
    justify-content:center;

    padding-top:90px;
    padding-bottom:50px;
}

#home{
    scroll-margin-top:76px;
}

#platform{
    scroll-margin-top:10px;
}

#partners{
    scroll-margin-top:76px;
}

#brands{
    scroll-margin-top:76px;
}

#about{
    scroll-margin-top:76px;
}

#contact{
    scroll-margin-top:76px;
}

.features-grid{
    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:10px;

    margin-top:10px;
}

.mini-card{

    min-height:330px;

    display:flex;
    flex-direction:column;
    justify-content:flex-start;

    padding:10px;
}

.mini-card span {
  display: inline-flex;
  width: 56px;
  height: 56px;
  font-size:1.35rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: #8d6800;
  font-weight: 800;
}

.mini-card h3 {
  font-size: 1.55rem;
  margin-bottom: 18px;
}

.mini-card p {
  margin-bottom: 0;
  font-size: 1.08rem;
  line-height:1.7;
}

.partner-section,
.brand-section,
.about-section {
  width: 100%;
  max-width: none;
  background: #fff;
}

.partner-section > *,
.brand-section > *,
.about-section > * {
  width: min(1500px, calc(100% - 60px));
  margin-inline: auto;
}

#partners h2{
    font-size:clamp(2.9rem,4vw,4.5rem);
}

.split {
  min-height:calc(100vh - 76px);

    display:grid;

    grid-template-columns:45% 55%;

    align-items:flex-start;

    gap:70px;

    padding-top:20px;
    padding-bottom:30px;
}

.split .section-text {
  max-width: 580px;
  margin: 22px 0 0;
  font-size: 1.08rem;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}


.outcome-row {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 2px;
  margin-top: 10px;
  width:100%;

}

.outcome-row div {
    height: 90px;
    padding: 16px 28px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    gap: 8px;

    border: 1px solid rgba(17,24,39,.08);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(17,24,39,.1);
}

.outcome-row strong{
    font-size:2rem;
    font-weight:800;
    line-height:1;
    color:var(--ink);
	padding: 1px 70px;
}

.outcome-row span{
    font-size:1.35rem;
    font-weight:600;
    line-height:1.1;
    color:var(--muted);
	padding: 1px 70px;
}

.pill-grid span {
  border: 1px solid rgba(212, 165, 20, 0.26);
  border-radius: 999px;
  background: var(--accent-soft);
  padding: 9px 13px;
  color: #4c3a07;
  font-size: 0.9rem;
  font-weight: 700;
}

.dashboard-panel {
  padding: 18px;
  background: linear-gradient(180deg, #fff, #f7f7f5);
  
  margin-bottom:0px;
}

.partner-right{
    display:flex;
    flex-direction:column;
    align-items:center;
}

.partner-right .dashboard-panel{
    width:100%;
    max-width:600px;
    margin-bottom:10px;
}

.partner-right .pill-grid{
    width:100%;
    max-width:760px;

    display:flex;
    flex-wrap:wrap;
    justify-content:center;

    gap:10px;
}

.partner-right .pill-grid span{
    flex:0 0 auto;
}

.split > div:last-child{
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
	max-width:none;
}

.journey-grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
}

.journey-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: 0 20px 60px rgba(17, 24, 39, 0.055);
}

.journey-timeline div {
  min-height: 320px;
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 24px;
  background: linear-gradient(180deg, #fff 0%, #fbf7e8 100%);
  position: relative;
}

.journey-timeline div::before {
  position: absolute;
  top: 32px;
  width: 14px;
  height: 14px;
  content: "";
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 1px rgba(212, 165, 20, 0.25);
}

.journey-timeline span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-weight: 800;
}

.process {
  padding: 30px;
}

.process h3 {
  margin-bottom: 20px;
}

.process ol {
  display: grid;
  gap: 14px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.process li {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--graphite);
  font-weight: 700;
}

.process li span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--accent-soft);
  color: #8d6800;
}

.values-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 22px;
}

.contact-section{

    min-height:calc(100vh - 76px);

    display:flex;
    flex-direction:column;
    justify-content:flex-start;

    padding:20px 0;
}

.contact-grid{

    width:calc(100% - 80px);
    max-width:1450px;

    margin:0 auto;

    display:grid;

    grid-template-columns:70% 30%;

    gap:30px;

    align-items:start;
}

.contact-form{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

    padding:28px;
}

.field{

    display:flex;

    flex-direction:column;

    gap:8px;
}

.field.full{

    grid-column:1/-1;
}

.field label{

    font-weight:700;

    color:var(--graphite);

    font-size:.95rem;
}


.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 14px 18px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input{

    height:40px;

}

.contact-form textarea{

    height:72px;
    resize:none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(212, 165, 20, 0.8);
  box-shadow: 0 0 0 4px rgba(212, 165, 20, 0.14);
}


.form-button{

    grid-column:1/-1;

    display:flex;

    justify-content:center;

    margin-top:6px;
}

.form-button button{

    border:0;

    cursor:pointer;

    padding:0 42px;
}

.contact-card{

    padding:32px;

    display:flex;

    flex-direction:column;

    justify-content:center;
}

.contact-card h3{

    font-size:2.2rem;

    margin-bottom:1px;
}

.contact-card dt {
  margin-top: 15px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-card dd{

    margin:8px 0 0;

    color:var(--graphite);

    font-size:1.15rem;

    font-weight:700;

    line-height:1.6;
}

.site-footer {
  padding: 56px 0 28px;
  background: #111827;
  color: #fff;
}

.footer-grid {
  width: min(1180px, calc(100% - 40px));
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 30px;
  margin: 0 auto;
}

.footer-grid h2 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 0.95rem;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.68);
}

.copyright {
  width: min(1180px, calc(100% - 40px));
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1500px) {
  .hero-copy h1 {
    /* white-space: normal; */
    font-size: 2rem; /* Or adjust your clamp: clamp(2rem, 5vw, 4rem) */
    line-height: 1;  /* Tighten the space between lines */
  }

  .hero,
  .split,
  .journey-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .features-grid,
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    max-width: 720px;
    margin: 0 auto;
  }
}

@media (max-width: 820px) {
  .nav {
    width: min(100% - 28px, 1180px);
  }

  .brand span {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    padding: 10px;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px;
    border-radius: 12px;
  }

  .nav-links a:hover {
    background: var(--accent-soft);
  }

  .section,
  .partner-section > *,
  .brand-section > *,
  .about-section > * {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 40px 0;
  }

  .solution-grid,
  .features-grid,
  .values-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .journey-timeline {
    grid-template-columns: 1fr;
  }

  .journey-timeline div {
    min-height: 92px;
    align-items: center;
  }

  .journey-timeline span {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .feature-card.large,
  .mini-card,
  .process,
  .contact-form,
  .contact-card {
    border-radius: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}



.brand-visual,
.contact-visual {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 34px;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(17, 24, 39, 0.055);
}

.brand-visual img,
.contact-visual img {
  width: 100%;
}


/*==========================
  BRANDS
==========================*/

.brand-section{
    min-height:calc(100vh - 76px);
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:20px;
    padding-top:20px;
    padding-bottom:35px;
	padding-left:0;
    padding-right:0;
}

.brand-top{
    width:calc(100% - 80px);
    margin:0 auto;
    display:grid;
    grid-template-columns:56% 44%;
    align-items:center;
    gap:20px;
	grid-template-areas:
        "image content";
}

.brand-copy{
	max-width:620px;
	margin-left:auto;
    grid-area:content;
}

.brand-copy h2{
    font-size:clamp(3rem,4vw,4.6rem);
    margin-bottom:28px;
}

.brand-copy p{
    font-size:1.15rem;
    line-height:1.7;
}

.brand-image{
    grid-area:image;

    display:flex;
    justify-content:flex-center;
    align-items:center;
	
	margin-left:150px;
}

.brand-image img{
    width:100%;
    max-width:500px;
}

.campaign-flow{
    display:grid;
    grid-template-columns:
        1fr auto
        1fr auto
        1fr auto
        1fr auto
        1fr;
    gap:20px;
    align-items:start;
}

.flow-step{
    text-align:center;
}

.step-number{
    width:54px;
    height:54px;
    margin:auto;
    border-radius:50%;
    background:#fff7db;
    color:#b07d00;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:1.3rem;
    font-weight:800;
    margin-bottom:18px;
}

.flow-step h4{
    font-size:1.05rem;
    margin-bottom:10px;
}

.flow-step p{
    color:#666;
    font-size:.93rem;
    line-height:1.55;
}

.flow-arrow{
    font-size:2rem;
    color:#d4a514;
    margin-top:12px;
}


/* =======================================
   ABOUT SECTION
======================================= */

.about-section{

    min-height:calc(100vh - 76px);

    display:flex;
    flex-direction:column;
    justify-content:center;

    gap:26px;

    padding-top:25px;
    padding-bottom:25px;

    padding-left:0;
    padding-right:0;

}


.about-top{

    width:calc(100% - 80px);
    max-width:1500px;
    margin:0 auto;

    display:grid;

    grid-template-columns:23% 77%;

    gap:30px;

    align-items:start;

}


.about-copy{

    max-width:600px;

}


.about-copy h2{

    font-size:clamp(3rem,4vw,4.6rem);

    margin-bottom:24px;

}


.about-copy p{

    font-size:1.15rem;

    line-height:1.75;

}



.story-content{
    padding:15px;

    border-radius:24px;

    background:#fff;

    border:1px solid rgba(17,24,39,.08);

    box-shadow:0 20px 60px rgba(17,24,39,.06);

}


.story-content h3{

    font-size:1.3rem;

    margin-bottom:18px;

}


.story-content p{

    color:#5f6673;

    line-height:1.8;
	font-size:.9rem;

}

.story-content p+p{

    margin-top:18px;

}



.about-card{

    display:flex;

    flex-direction:column;

    gap:10px;

    padding:11.5px;

    border-radius:24px;

    background:#fff;

    border:1px solid rgba(17,24,39,.08);

    box-shadow:0 20px 60px rgba(17,24,39,.06);

}

.vision-mission{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:10px;

}


.vision-box,
.mission-box{

    padding:15px;

    border-radius:24px;

    background:#fff;

    border:1px solid rgba(17,24,39,.08);

    box-shadow:0 20px 60px rgba(17,24,39,.06);

}


.vision-box h3,
.mission-box h3{

    font-size:1rem;

    margin-bottom:1px;

}


.vision-box p,
.mission-box p{

    color:#5f6673;

    line-height:1.8;

    font-size:.8rem;

}


.about-section .values-grid{
    width:calc(100% - 80px);
    max-width:1500px;
    margin:0 auto;

    display:grid;
    grid-template-columns:repeat(4, minmax(0,1fr));
    gap:18px;
}

.about-section .values-grid .mini-card{
    min-height:90px;
    padding:20px;
	overflow:hidden;
}

.about-section .values-grid .mini-card h3,
.about-section .values-grid .mini-card p{
    word-break:normal;
    overflow-wrap:break-word;
	font-size:1rem;
}




