/* =========================
   FONT FACE
========================= */
@font-face {
  font-family: "Fanlste";
  src: url("../fonts/fanlste.otf") format("opentype");
}

@font-face {
  font-family: "General Sans Regular";
  src: url("../fonts/GeneralSans-Regular.otf") format("opentype");
}

@font-face {
  font-family: "General Sans Medium";
  src: url("../fonts/GeneralSans-Medium.otf") format("opentype");
}

@font-face {
  font-family: "General Sans Semibold";
  src: url("../fonts/GeneralSans-Semibold.otf") format("opentype");
}

@font-face {
  font-family: "Bw Gradual DEMO Light Italic";
  src: url("../fonts/BwGradualDEMO-LightItalic.otf") format("opentype");
}

@font-face {
  font-family: "Bw Gradual DEMO Regular";
  src: url("../fonts/BwGradualDEMO-Regular.otf") format("opentype");
}

@font-face {
  font-family: "Bw Gradual DEMO Bold";
  src: url("../fonts/BwGradualDEMO-Bold.otf") format("opentype");
}

@font-face {
  font-family: "Bw Gradual DEMO Bold Italic";
  src: url("../fonts/BwGradualDEMO-BoldItalic.otf") format("opentype");
}

@font-face {
  font-family: "Bw Gradual DEMO Medium";
  src: url("../fonts/BwGradualDEMO-Medium.otf") format("opentype");
}

@font-face {
  font-family: "Amsterdam Handwriting Regulat";
  src: url("../fonts/Amsterdam\ Handwriting_Regular.ttf") format("opentype");
}




/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "General Sans", system-ui, sans-serif;
  background: #fff;
}

/* =========================
   HERO LAYOUT
========================= */
.hero {
  position: relative;
  height: auto;
  overflow: hidden;
  margin-bottom: 20dp;

  padding-top: 92px;
  display: flex;
  flex-direction: column;
}



/* =========================
   HEADER
========================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  padding: 16px 20px 8px;
}

.header-container {
  max-width: 960px;
  width: auto;
  margin: 0 auto;
  height: 68px;
  padding: 0 28px;

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

  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(12px);

  border-radius: 999px;
  border: 0.5px solid rgba(0, 0, 0, 0.05);

  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.logo {
  font-family: "Fanlste";
  font-size: 26px;
  text-decoration: none;
  color: #000;
}

.logo:hover,
.logo:focus,
.logo:active {
  text-decoration: none;
  color: #000;
}

.menu-toggle{
  display:none;
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: #777;
  text-decoration: none;
}

.nav a.active {
  font-weight: 600;
  color: #000;
}


/* CTA */
/* .cta {
  display: flex;
  align-items: center;
  gap: 10px;

  height: 44px;
  padding: 6px 18px 6px 6px;

  background: #111;
  color: #fff;
  border: none;
  border-radius: 999px;
  cursor: pointer;
}

.cta-icon {
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 50%;

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

.cta-icon img {
  width: 16px;
  height: 16px;
} */





/* =========================
   HERO CONTENT
========================= */

.hero-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px 60px; /* space after fixed header */
  text-align: center;
}

/* First small title */
.hero-subtitle {
  font-family: "Bw Gradual DEMO Regular";
  font-size: 38px;
  color: rgba(20, 20, 20, 1);
  margin-bottom: 8px;
}

/* Main heading */
.hero-title {
  font-family: "Bw Gradual DEMO Bold Italic";
  font-size: 38px;
  line-height: 1.2;
  color: rgba(20, 20, 20, 1);
  margin-bottom: 14px;
}

/* Description */
.hero-desc {
  max-width: 500px;
  margin: 0 auto 36px;
  font-family: "General Sans Regular";
  font-size: 13px;
  line-height: 1.6;
  color: rgba(116, 113, 114, 1);
}

/* =========================
   ASYMMETRIC HERO IMAGES
========================= */

.hero-images.asymmetric {
  display: grid;
  grid-template-columns: 1fr 2fr; /* 1:2 ratio */
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

/* same height using aspect ratio */
.hero-img-card {
  position: relative;
  width: 100%;
  height: 400px;
  aspect-ratio: 3 / 4; /* similar to design */
  border-radius: 18px;
  overflow: hidden;
}

/* image fill */
.hero-img-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}







/* =========================
   OUR STORY
========================= */

.our-story-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 0px 0px;
  text-align: center;
}

/* Glass pill */
.story-glass-pill {
  position: relative;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 7px;

  padding: 8px 15px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);

  border: 0.5px solid rgba(0, 0, 0, 0.099);

  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);

  overflow: hidden;
}

/* Keep text/icons above blobs */
.story-glass-pill > * {
  position: relative;
  z-index: 5;
}

.story-glass-pill span {
  font-family: "General Sans Medium";
  font-size: 13px;
  color: rgba(20, 20, 20, 1);
  font-weight: 100;
}

.story-glass-pill img {
  width: 14px;
  height: 14px;
}

/* =========================
   CLEAR LIQUID BLOBS
========================= */

.story-glass-pill::before {
  content: "";
  position: absolute;

  width: 30px;
  height: 16px;
  border-radius: 50%;
  background: transparent;

  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.18),
    0 2px 6px rgba(0, 0, 0, 0.12);

  filter: blur(1.5px);
  top: -10px;
  left: 12px;
  z-index: 1;
}

.story-glass-pill span::before {
  content: "";
  position: absolute;

  width: 30px;
  height: 12px;
  border-radius: 50%;
  background: transparent;

  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.10),
    0 1px 4px rgba(0, 0, 0, 0.10);

  filter: blur(1.5px);
  top: 13px;
  left: -50px;
  z-index: 1;
}

.story-glass-pill::after {
  content: "";
  position: absolute;

  width: 30px;
  height: 20px;
  border-radius: 50%;
  background: transparent;

  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.10),
    0 -2px 6px rgba(0, 0, 0, 0.10);

  filter: blur(1.5px);
  bottom: 50px;
  right: -10px;
  z-index: 2;
}

.story-glass-pill span::after {
  content: "";
  position: absolute;

  width: 30px;
  height: 14px;
  border-radius: 50%;
  background: transparent;

  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.10),
    0 2px 5px rgba(0, 0, 0, 0.10);

  filter: blur(1.5px);
  bottom: -5px;
  right: -50px;
  z-index: 0;
}

.story-glass-pill img {
  width: 14px;
}

/* Title */
.story-title {
  margin-top: 18px;
  font-size: 43px;
  line-height: 1.2;
  font-weight: 100;
}

.story-title .regular {
  font-family: "Bw Gradual DEMO Regular";
}

.story-title .italic {
  font-family: "Bw Gradual DEMO Bold Italic";
}

/* Desc */
.story-desc {
  max-width: 820px;
  margin: 16px auto 100px;
  font-size: 11.5px;
  font-weight: 100;
  font-family: "General Sans Regular";
  color: rgba(116,113,114,1);
  line-height: 1.7;
}

/* =========================
   STORY VISUAL CENTER IMAGE
========================= */

.story-visual-wrap {
  position: relative;
  max-width: 1100px;
  margin: 0px auto 0;
  margin-top: 160px;
  margin-bottom: 10px;
  z-index: 1;
}

/* Center Image */
.story-center-img {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  z-index: 2;
}

.story-center-img img {
  height: 650px;
  object-fit: contain;
}

/* Grid behind image */
.story-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  position: relative;
  z-index: 1;
}

.card-tl {
  top: -120px;
  left: 200px;
}

.card-tr {
  top: -70px;
  right: -140px;
}

.card-bl {
  bottom: 100px;
  left: 60px;
}

.card-br {
  bottom: 60px;
  right: -170px;
}

/* Cards */
.story-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.story-card {
  position: relative;
  text-align: left;
  padding: 22px 22px 26px;
  border-radius: 18px;
  min-height: 260px;
  max-width: 350PX;
}

.story-card h4 {
  font-family: "General Sans Medium";
  font-size: 22px;
  margin: 10px 0 15px;
}

.story-card p {
  font-size: 11px;
  line-height: 1.6;
  max-width: 300px;
  margin-bottom: 10PX;
  color: rgb(117, 117, 117);
}

/* Backgrounds */
.bg1 { background: rgba(226,241,238,1); }
.bg2 { background: rgba(243,239,227,1); }
.bg3 { background: rgba(241,227,226,1); }
.bg4 { background: rgba(233,240,247,1); }

/* Icon */
.card-icon {
  width: 50px;
  margin-top: 20px;
  margin-bottom: 20PX;
}

/* Card 4 list */
.mini-points strong {
  display: block;
  font-family: "General Sans Medium";
  font-size: 15px;
  margin-top: 10px;
}

.mini-points p {
  margin-top: 2px;
  font-size: 11px;
}





/* =========================
   PHILOSOPHY
========================= */

.philosophy-section {
  position: relative;
  background: rgba(20,20,20,1);
  border-radius: 24px;
  margin: -30px auto;
  max-width: 1200px;
  z-index: 5;
}

.philosophy-inner {
  padding: 40px 50px;
  color: #fff;
}

.philosophy-title {
  text-align: center;
}

.philosophy-title .med {
  font-family: "Bw Gradual DEMO Medium";
  font-size: 38px;
  font-weight: 100;
}

.philosophy-title .bold-italic {
  font-family: "Bw Gradual DEMO Bold Italic";
  font-size: 38px;
  font-weight: 100;
}

.philosophy-sub {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  text-align: center;
  font-size: 12px;
  font-weight: 100;
  color: rgba(134, 134, 134, 0.766);
  font-family: "General Sans Medium";
}

/* Content */
.philosophy-content {
  display: grid;
  grid-template-columns: auto auto;
  gap: 40px;
  margin: 40px auto 0;
  align-items: center;
  justify-content: center;
}

.philo-img img {
  width: 480px;
  height: 270px;
  object-fit: contain;
  border-radius: 18px;
}

.philo-text h4 {
  font-family: "General Sans Medium";
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 100;
}

.philo-text p {
  font-family: "General Sans Medium";
  line-height: 1.7;
  font-size: 15px;
  max-width: 480px;
  font-weight: 100;
  color: rgba(134, 134, 134, 0.766);
  margin-bottom: 14px;
}





/* =========================
   ABOUT FEATURES GRID
========================= */

.about-features {
  max-width: 1000px;
  margin: 80px auto 0;
  padding: 0 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

/* Card */
.feature-card {
  background: rgba(247, 247, 247, 1);
  border-radius: 16px;
  padding: 22px 22px 24px;
}

/* Icon circle */
.feature-icon {
  width: 55px;
  height: 55px;
  background: #fff;
  border-radius: 10px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 12px;
}

.feature-icon img {
  width: 30px;
  height: 30px;
}

/* Title */
.feature-card h4 {
  font-family: "General Sans Medium";
  font-size: 14px;
  margin-bottom: 6px;
  color: rgba(20,20,20,1);
}

/* Description */
.feature-card p {
  font-family: "General Sans Regular";
  font-size: 12px;
  line-height: 1.6;
  color: rgba(116,113,114,1);
}








/* =========================
   BENEFITS SECTION
========================= */

.benefits-section {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

/* reuse glass pill */
.benefits-pill {
  margin: 0 auto 14px;
}

.benefits-title {
  font-size: 40px;
  line-height: 1.2;
}

.benefits-title .regular {
  font-family: "Bw Gradual DEMO Regular";
  font-weight: 100;
}

.benefits-title .italic {
  font-family: "Bw Gradual DEMO Bold Italic";
  font-weight: 100;
}

.benefits-desc {
  max-width: 700px;
  margin: 14px auto 40px;
  font-family: "General Sans Medium";
  font-size: 11.5px;
  line-height: 1.7;
  color: rgba(116,113,114,1);
}

/* Compare layout */
.benefits-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  text-align: left;
}

/* Cards */
.compare-card {
  border-radius: 18px;
  padding: 22px 22px 26px;
}

.compare-card.red {
  background: rgba(238, 81, 81, 0.06);
}

.compare-card.green {
  background: rgba(66, 158, 33, 0.06);
}

.compare-card h3 {
  font-family: "Bw Gradual DEMO Bold";
  font-size: 22px;
  margin-top: 20px;
  margin-bottom: 30px;
}

.compare-card.red h3 {
  color: rgba(200, 47, 47, 1);
}

.compare-card.green h3 {
  color: rgba(66, 158, 33, 1);
}

/* Lists */
.compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;

  font-family: "General Sans Regular";
  font-size: 11.5px;
  line-height: 1.5;
  color: rgba(20,20,20,0.85);
}

/* Icon circle */
.compare-list .icon {
  min-width: 16px;
  height: 16px;
  border-radius: 50%;

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

.red-list .icon {
  border: 1px solid rgba(200,47,47,1);
}

.green-list .icon {
  border: 1px solid rgba(66,158,33,1);
}

.compare-list .icon img {
  width: 6px;
  height: 6px;
  align-items: center;
  justify-content: center;
}

/* Bottom note */
.benefits-note {
  max-width: 1000px;
  margin: 20px auto 0;
  font-family: "General Sans Medium";
  font-size: 11px;
  line-height: 1.7;
  text-align: left;
  color: rgba(116,113,114,1);
}















/* =========================
   KNOW OUR FOUNDER
========================= */
.founder-section {
  max-width: 1100px;
  margin: 0 auto 0px;
  margin-top: -50px;
  padding: 40px;
  text-align: center;
}

/* pill reuse */
.founder-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 8px 20px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);

  border: 0.5px solid rgba(0, 0, 0, 0.06);

  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);

  overflow: hidden;
}

.founder-pill > * {
  position: relative;
  z-index: 5;
}


.founder-pill span {
  font-family: "General Sans Medium";
  font-size: 14px;
  color: rgba(20, 20, 20, 1);
}

.founder-pill img {
  width: 14px;
  height: 14px;
}


/* =========================
   CLEAR LIQUID BLOBS
========================= */

.founder-pill::before {
  content: "";
  position: absolute;

  width: 30px;
  height: 16px;

  background: transparent;
  border-radius: 50%;

  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.18),
    0 2px 6px rgba(0, 0, 0, 0.12);

  filter: blur(1.5px);

  top: -10px;
  left: 12px;

  z-index: 1;
}


.founder-pill span::before {
  content: "";
  position: absolute;

  width: 30px;
  height: 12px;

  background: transparent;
  border-radius: 50%;

  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.10),
    0 1px 4px rgba(0, 0, 0, 0.10);

  filter: blur(1.5px);

  top: 13px;
  left: -50px;

  z-index: 1;
}

.founder-pill::after {
  content: "";
  position: absolute;

  width: 30px;
  height: 20px;

  background: transparent;
  border-radius: 50%;

  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.10),
    0 -2px 6px rgba(0, 0, 0, 0.10);

  filter: blur(1.5px);

  bottom: 50px;
  right: -10px;

  z-index: 2;
}

.founder-pill span::after {
  content: "";
  position: absolute;

  width: 30px;
  height: 14px;

  background: transparent;
  border-radius: 50%;

  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.10),
    0 2px 5px rgba(0, 0, 0, 0.10);

  filter: blur(1.5px);

  bottom: -5px;
  right: -50px;

  z-index: 0;
}

/* heading */
.founder-heading {
  font-family: "Bw Gradual DEMO Medium";
  font-size: 40px;
  line-height: 1.25;
  color: rgba(20, 20, 20, 1);
  font-weight: 100;
  margin-bottom: 140px;
}

.founder-heading .italic {
  font-family: "Bw Gradual DEMO Bold Italic";
}

/* grid */
.founder-grid {
  display: grid;
  position: relative;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  text-align: left;
}

/* =========================
   LEFT IMAGE
========================= */
.founder-image-wrap {
  position: relative;
  z-index: 5;
}

.founder-image-wrap img {
  width: 100%;
  height: 600px;
  border-radius: 14px;
  display: block;
}

/* half outside circle */
.founder-logo-circle {
  position: absolute;
  right: -65px;
  bottom: 40px;

  width: 120px;
  height: 120px;
  border-radius: 50%;

  background: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-family: "General Sans Medium";
  font-size: 20px;
  color: rgba(20, 20, 20, 1);

  z-index: 10;

  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.18);
}

.founder-logo-circle img {
  width: 110px;
  height: 110px;
  object-fit: contain;
}

/* =========================
   RIGHT CONTENT
========================= */
.founder-content {
  position: relative;
  background: rgba(247, 247, 247, 1);
  padding: 45px 30px 70px;
  border-radius: 14px;
  left: -40px;
  bottom: 100px;
  z-index: 2;
}

/* title */
.founder-content h3 {
  font-family: "General Sans Medium";
  font-size: 40px;
  color: rgba(20, 20, 20, 1);
  margin-bottom: 40px;
  font-weight: 100;
}

/* text */
.founder-content p {
  font-family: "General Sans Medium";
  font-size: 13px;
  line-height: 1.8;
  color: rgba(116, 113, 114, 1);
  margin-bottom: 20px;
  font-weight: 100;
}

/* button spacing */
.founder-btn {
  margin-top: 20px;
  margin-bottom: 20px;
}


/* =========================
   BASE BUTTON
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;

  height: 45px;
  padding: 6px 10px 6px 6px;

  border-radius: 999px;
  border: 0.5px solid rgba(0, 0, 0, 0.812);
  cursor: pointer;

  font-family: "General Sans Medium", sans-serif;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s ease;
}

/* =========================
   ICON CIRCLE
========================= */
.btn-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

.btn-icon img {
  width: 13px;
  height: 13px;
}


/* =========================
   SECONDARY (GLASS WHITE)
========================= */
.btn-secondary {
  color: rgba(20, 20, 20, 1);

  /* Glass white */
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(0, 0, 0, 0.213);

  /* BIG soft floating shadow (like image) */
  box-shadow:
    0 15px 30px rgba(0, 0, 0, 0.133),
    0 5px 3px rgba(0, 0, 0, 0.018),
    inset 0 1px 0 rgba(255, 255, 255, 0.299);

  transition: all 0.3s ease;
}


.btn-secondary .btn-icon {
  background: linear-gradient(
    180deg,
    rgba(1, 39, 58, 1),
    rgba(1, 27, 41, 1)
  );

  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}


/* Hover */
.btn-secondary:hover {
  background: linear-gradient(
    180deg,
    rgba(1, 39, 58, 1),
    rgba(1, 27, 41, 1)
  );

  color: #ffffff;
  transform: translateY(-2px);
}

.btn-secondary:hover .btn-icon {
  background: rgba(80, 164, 207, 1);
}



/* =========================
   SIGNATURE
========================= */
.founder-signature {
  position: absolute;
  right: 30px;
  bottom: -150px;

  font-family: "Amsterdam Handwriting Regulat";
  font-size: 56px;
  font-weight: 100;
  color: rgba(20, 20, 20, 1);

  transform: rotate(-12deg);
  pointer-events: none;
  z-index: 3;
}







/* =========================
   OUR PROMISE SECTION
========================= */

.promise-section {
  max-width: 1250px;
  margin: 60px auto;
  padding: 0 20px;
}

/* Big rounded container */
.promise-wrapper {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 540px;
  background: #eee;
}

/* Background image */
.promise-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* White content card */
.promise-card {
  position: absolute;
  right: 130px;
  top: 50%;
  transform: translateY(-50%);
  

  background: rgba(255, 255, 255, 1);
  border-radius: 18px;
  padding: 28px 26px;

  width: 330px;
  height: 400px;

  box-shadow:
    0 20px 50px rgba(0,0,0,0.15),
    inset 0 1px 0 rgba(255,255,255,0.8);
}

/* Title */
.promise-card h3 {
  font-family: "Bw Gradual DEMO Bold";
  font-size: 18px;
  font-weight: 100;
  color: rgba(20,20,20,1);
  margin-bottom: 14px;
}

/* Text */
.promise-card p {
  font-family: "General Sans Medium";
  font-size: 10.5px;
  font-weight: 100;
  line-height: 1.7;
  color: rgba(116,113,114,1);
  margin-bottom: 14px;
}








/* =========================
   BUILD BRAND CTA SECTION
========================= */
.cta-section {
  max-width: 900px;
  margin: 40px auto 100px;
  padding: 0 20px;
  text-align: center;
}

/* Heading */
.cta-heading {
  font-family: "Bw Gradual DEMO Medium";
  font-size: 40px;
  line-height: 1.25;
  color: rgba(20, 20, 20, 1);
  font-weight: 100;
  margin-bottom: 16px;
}

.cta-heading .italic {
  font-family: "Bw Gradual DEMO Bold Italic";
  font-weight: 100;
}

/* Description */
.cta-desc {
  max-width: 750px;
  margin: 0 auto 28px;

  font-family: "General Sans Regular";
  font-size: 12px;
  line-height: 1.6;
  color: rgba(116, 113, 114, 1)
}

/* Button spacing */
.cta-btn {
  margin-top: 10px;

  /* floating shadow like image */
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.161),
    0 6px 8px rgba(0, 0, 0, 0.058),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Hover lift */
.cta-btn:hover {
  transform: translateY(-2px);
}







/* =========================
   FOOTER
========================= */
.site-footer {
  width: 100%;
  background: rgba(20, 20, 20, 1);
  padding: 70px 20px 40px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* CONTAINER */
.footer-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr;
  gap: 70px;
  color: #fff;
}

.footer-container .footer-col:nth-child(2) {
  justify-self: center;
}


/* LEFT */
.footer-logo {
  width: 50px;
  margin-bottom: 25px;
}

.footer-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-item img {
  width: auto;
  height: auto;
  margin-top: 4px;
}

.footer-item span {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
}

/* CENTER */
.footer-links-col h4 {
  margin-bottom: 18px;
}

.footer-links-col a {
  display: block;
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
  text-decoration: none;
}

.footer-links-col a:hover {
  color: #fff;
}

/* RIGHT */
.footer-about-col p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
  margin-top: 18px;
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social img {
  width: 30px;
  opacity: 0.8;
  padding: 6px;
  border-radius: 6px;
  background: rgba(54, 54, 54, 0.75);
  transition: opacity 0.3s ease;
}

.footer-social img:hover {
  opacity: 1;
}



/* DIVIDER */
.footer-divider {
  max-width: 1000px;
  margin: 40px auto 20px;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

/* BOTTOM BAR */
.footer-bottom {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "General Sans Regular";
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom-links {
  display: flex;
  gap: 18px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: #ffffff;
}


/* =========================
   WAVING BRAND TEXT
========================= */

.footer-brand {
  margin-top: 60px;
  text-align: center;
  font-family: "Fanlste";
  font-size: 250px;
  line-height: 1;
  color: rgba(255, 255, 255, 1);
  pointer-events: none;
  white-space: nowrap;
}

/* wave container */
.wave-text span {
  display: inline-block;
  animation: waveMove 6s ease-in-out infinite;
}

/* stagger animation */
.wave-text span:nth-child(1) { animation-delay: 0s; }
.wave-text span:nth-child(2) { animation-delay: 0.2s; }
.wave-text span:nth-child(3) { animation-delay: 0.4s; }
.wave-text span:nth-child(4) { animation-delay: 0.6s; }
.wave-text span:nth-child(5) { animation-delay: 0.8s; }
.wave-text span:nth-child(6) { animation-delay: 1s; }
.wave-text span:nth-child(7) { animation-delay: 1.2s; }
.wave-text span:nth-child(8) { animation-delay: 1.4s; }
.wave-text span:nth-child(9) { animation-delay: 1.6s; }

/* =========================
   KEYFRAMES
========================= */
@keyframes waveMove {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-14px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(12px);
  }
  100% {
    transform: translateY(0);
  }
}














































/* =========================
   RESPONSIVE
========================= */




/* =========================
   (min-width: 1440px)
========================= */

@media (min-width: 1440px) {

.hero { margin-bottom: 22.5px; padding-top: 103.5px;}
.header { padding: 18px 22.5px 9px;}
.header-container { max-width: 1080px; height: 76.5px;}
.logo { font-size: 29.25px;}
.nav { gap: 31.5px;}
.nav a { font-size: 15.75px;}

.hero-content { max-width: 1237.5px; padding: 45px 22.5px 67.5px; }
.hero-subtitle { font-size: 42.75px; margin-bottom: 9px; }
.hero-title { font-size: 42.75px; margin-bottom: 15.75px; }
.hero-desc { max-width: 562.5px; margin: 0 auto 40.5px; font-size: 14.625px; }
.hero-images.asymmetric { gap: 27px; max-width: 1125px; margin: 0 auto; }
.hero-img-card { height: 450px; }
.hero-img-card img { height: 450px; }

.our-story-section { max-width: 1237.5px; padding: 11.25px 0 0; }
.story-glass-pill { gap: 7.875px; padding: 9px 16.875px; }
.story-glass-pill span { font-size: 14.625px; }
.story-glass-pill img { width: 15.75px; height: 15.75px; }
.story-glass-pill::before { width: 33.75px; height: 18px; top: -11.25px; left: 13.5px; }
.story-glass-pill span::before { width: 33.75px; height: 13.5px; top: 14.625px; left: -56.25px; }
.story-glass-pill::after { width: 33.75px; height: 22.5px; bottom: 56.25px; right: -11.25px; }
.story-glass-pill span::after { width: 33.75px; height: 15.75px; bottom: -5.625px; right: -56.25px; }
.story-glass-pill img { width: 15.75px; }

.story-title { margin-top: 20.25px; font-size: 48.375px; }
.story-desc { max-width: 922.5px; margin: 18px auto 112.5px; font-size: 12.9375px; }
.story-visual-wrap { max-width: 1237.5px; margin-top: 180px; margin-bottom: 11.25px; }
.story-center-img img { height: 731.25px; }
.story-visual-grid { gap: 29.25px; }
.card-tl { top: -135px; left: 225px; }
.card-tr { top: -78.75px; right: -157.5px; }
.card-bl { bottom: 112.5px; left: 67.5px; }
.card-br { bottom: 67.5px; right: -191.25px; }



.story-cards { gap: 24.75px; }
.story-card { padding: 24.75px 24.75px 29.25px; min-height: 292.5px; max-width: 393.75px; }
.story-card h4 { font-size: 24.75px; margin: 11.25px 0 16.875px; }
.story-card p { font-size: 12.375px; max-width: 337.5px; margin-bottom: 11.25px; }
.card-icon { width: 56.25px; margin-top: 22.5px; margin-bottom: 22.5px; }
.mini-points strong { font-size: 16.875px; margin-top: 11.25px; }
.mini-points p { margin-top: 2.25px; font-size: 12.375px; }

.philosophy-section { margin: -33.75px auto; max-width: 1350px; }
.philosophy-inner { padding: 45px 56.25px; }
.philosophy-title .med { font-size: 42.75px; }
.philosophy-title .bold-italic { font-size: 42.75px; }
.philosophy-sub { max-width: 337.5px; margin-top: 11.25px; font-size: 13.5px; }
.philosophy-content { gap: 45px; margin: 45px auto 0; }
.philo-img img { width: 540px; height: 303.75px; }
.philo-text h4 { margin-bottom: 11.25px; font-size: 31.5px; }
.philo-text p { font-size: 16.875px; max-width: 540px; margin-bottom: 15.75px; }

.about-features { max-width: 1125px; margin: 90px auto 0; padding: 0 22.5px; }
.features-grid { gap: 20.25px; }
.feature-card { padding: 24.75px 24.75px 27px; }
.feature-icon { width: 61.875px; height: 61.875px; margin-bottom: 13.5px; }
.feature-icon img { width: 33.75px; height: 33.75px; }
.feature-card h4 { font-size: 15.75px; margin-bottom: 6.75px; }
.feature-card p { font-size: 13.5px; }

.benefits-section { max-width: 1125px; margin: 67.5px auto; padding: 0 22.5px; }
.benefits-pill { margin: 0 auto 15.75px; }
.benefits-title { font-size: 45px; }
.benefits-desc { max-width: 787.5px; margin: 15.75px auto 45px; font-size: 12.9375px; }
.benefits-compare { gap: 22.5px; }




.compare-card { padding: 24.75px 24.75px 29.25px; }
.compare-card h3 { font-size: 24.75px; margin-top: 22.5px; margin-bottom: 33.75px; }
.compare-list li { gap: 11.25px; margin-bottom: 11.25px; font-size: 12.9375px; }
.compare-list .icon { min-width: 18px; height: 18px; }
.compare-list .icon img { width: 6.75px; height: 6.75px; }
.benefits-note { max-width: 1125px; margin: 22.5px auto 0; font-size: 12.375px; }

.founder-section { max-width: 1237.5px; margin-top: -56.25px; padding: 45px; }
.founder-pill { gap: 11.25px; padding: 9px 22.5px; }
.founder-pill span { font-size: 15.75px; }
.founder-pill img { width: 15.75px; height: 15.75px; }
.founder-pill::before { width: 33.75px; height: 18px; top: -11.25px; left: 13.5px; }
.founder-pill span::before { width: 33.75px; height: 13.5px; top: 14.625px; left: -56.25px; }
.founder-pill::after { width: 33.75px; height: 22.5px; bottom: 56.25px; right: -11.25px; }
.founder-pill span::after { width: 33.75px; height: 15.75px; bottom: -5.625px; right: -56.25px; }

.founder-heading { font-size: 45px; margin-bottom: 157.5px; }
.founder-grid { gap: 67.5px; }
.founder-image-wrap img { height: 675px; }
.founder-logo-circle { right: -73.125px; bottom: 45px; width: 135px; height: 135px; font-size: 22.5px; }
.founder-logo-circle img { width: 123.75px; height: 123.75px;}
.founder-content { padding: 50.625px 33.75px 78.75px; left: -45px; bottom: 112.5px; }
.founder-content h3 { font-size: 45px; margin-bottom: 45px; }
.founder-content p { font-size: 14.625px; margin-bottom: 22.5px; }
.founder-btn { margin-top: 22.5px; margin-bottom: 22.5px; }

.btn { gap: 5.625px; height: 50.625px; padding: 6.75px 11.25px 6.75px 6.75px; font-size: 16.875px; }
.btn-icon { width: 33.75px; height: 33.75px; }
.btn-icon img { width: 14.625px; height: 14.625px; }
.founder-signature { right: 33.75px; bottom: -168.75px; font-size: 63px; }



.promise-section { max-width: 1406.25px; margin: 67.5px auto; padding: 0 22.5px; }
.promise-wrapper { min-height: 607.5px; }
.promise-card { right: 146.25px; padding: 31.5px 29.25px; width: 371.25px; height: 450px; }
.promise-card h3 { font-size: 20.25px; margin-bottom: 15.75px; }
.promise-card p { font-size: 11.8125px; margin-bottom: 15.75px; }

.cta-section { max-width: 1012.5px; margin: 45px auto 112.5px; padding: 0 22.5px; }
.cta-heading { font-size: 45px; margin-bottom: 18px; }
.cta-desc { max-width: 843.75px; margin: 0 auto 31.5px; font-size: 13.5px; }
.cta-btn { margin-top: 11.25px; }

  .site-footer { padding: 78.75px 22.5px 45px;}
  .footer-container { max-width: 1125px; gap: 78.75px;}
  .footer-logo { width: 56.25px; margin-bottom: 28.125px;}
  .footer-item { gap: 13.5px; margin-bottom: 15.75px;}
  .footer-item img { margin-top: 4.5px;}
  .footer-item span { font-size: 14.625px;}
  .footer-links-col h4 { margin-bottom: 20.25px;}
  .footer-links-col a { font-size: 18px; margin-bottom: 15.75px;}
  .footer-about-col p { font-size: 16.875px; margin-bottom: 27px; margin-top: 20.25px;}
  .footer-social { gap: 18px;}
  .footer-social img { width: 33.75px; padding: 6.75px;}
  .footer-divider { max-width: 1125px; margin: 45px auto 22.5px; height: 1.125px;}
  .footer-bottom { max-width: 1125px; font-size: 13.5px;}
  .footer-bottom-links { gap: 20.25px;}
  .footer-brand { margin-top: 67.5px; font-size: 281.25px;}
  
}




/* =========================
   (min-width: 1600px)
========================= */

@media (min-width: 1600px) {

  .hero { margin-bottom: 25px; padding-top: 115px; }
  .header { padding: 20px 25px 10px; }
  .header-container { max-width: 1200px; height: 85px; }
  .logo { font-size: 32.5px; }
  .nav { gap: 35px; }
  .nav a { font-size: 17.5px; }
  
  .hero-content { max-width: 1375px; padding: 50px 25px 75px; }
  .hero-subtitle { font-size: 47.5px; margin-bottom: 10px; }
  .hero-title { font-size: 47.5px; margin-bottom: 17.5px; }
  .hero-desc { max-width: 625px; margin: 0 auto 45px; font-size: 16.25px; }
  .hero-images.asymmetric { gap: 30px; max-width: 1250px; margin: 0 auto; }
  .hero-img-card { height: 500px; }
  .hero-img-card img { height: 500px; }
  
  .our-story-section { max-width: 1375px; padding: 12.5px 0 0; }
  .story-glass-pill { gap: 8.75px; padding: 10px 18.75px; }
  .story-glass-pill span { font-size: 16.25px; }
  .story-glass-pill img { width: 17.5px; height: 17.5px; }
  .story-glass-pill::before { width: 37.5px; height: 20px; top: -12.5px; left: 15px; }
  .story-glass-pill span::before { width: 37.5px; height: 15px; top: 16.25px; left: -62.5px; }
  .story-glass-pill::after { width: 37.5px; height: 25px; bottom: 62.5px; right: -12.5px; }
  .story-glass-pill span::after { width: 37.5px; height: 17.5px; bottom: -6.25px; right: -62.5px; }
  .story-glass-pill img { width: 17.5px; }
  
  .story-title { margin-top: 22.5px; font-size: 53.75px; }
  .story-desc { max-width: 1025px; margin: 20px auto 125px; font-size: 14.375px; }
  .story-visual-wrap { max-width: 1375px; margin-top: 200px; margin-bottom: 12.5px; }
  .story-center-img img { height: 812.5px; }
  .story-visual-grid { gap: 32.5px; }
  .card-tl { top: -150px; left: 250px; }
  .card-tr { top: -87.5px; right: -175px; }
  .card-bl { bottom: 125px; left: 75px; }
  .card-br { bottom: 75px; right: -212.5px; }
  


  .story-cards { gap: 27.5px; }
  .story-card { padding: 27.5px 27.5px 32.5px; min-height: 325px; max-width: 437.5px; }
  .story-card h4 { font-size: 27.5px; margin: 12.5px 0 18.75px; }
  .story-card p { font-size: 13.75px; max-width: 375px; margin-bottom: 12.5px; }
  .card-icon { width: 62.5px; margin-top: 25px; margin-bottom: 25px; }
  .mini-points strong { font-size: 18.75px; margin-top: 12.5px; }
  .mini-points p { margin-top: 2.5px; font-size: 13.75px; }
  
  .philosophy-section { margin: -37.5px auto; max-width: 1500px; }
  .philosophy-inner { padding: 50px 62.5px; }
  .philosophy-title .med { font-size: 47.5px; }
  .philosophy-title .bold-italic { font-size: 47.5px; }
  .philosophy-sub { max-width: 375px; margin-top: 12.5px; font-size: 15px; }
  .philosophy-content { gap: 50px; margin: 50px auto 0; }
  .philo-img img { width: 600px; height: 337.5px; }
  .philo-text h4 { margin-bottom: 12.5px; font-size: 35px; }
  .philo-text p { font-size: 18.75px; max-width: 600px; margin-bottom: 17.5px; }
  
  .about-features { max-width: 1250px; margin: 100px auto 0; padding: 0 25px; }
  .features-grid { gap: 22.5px; }
  .feature-card { padding: 27.5px 27.5px 30px; }
  .feature-icon { width: 68.75px; height: 68.75px; margin-bottom: 15px; }
  .feature-icon img { width: 37.5px; height: 37.5px; }
  .feature-card h4 { font-size: 17.5px; margin-bottom: 7.5px; }
  .feature-card p { font-size: 15px; }
  
  .benefits-section { max-width: 1250px; margin: 75px auto; padding: 0 25px; }
  .benefits-pill { margin: 0 auto 17.5px; }
  .benefits-title { font-size: 50px; }
  .benefits-desc { max-width: 875px; margin: 17.5px auto 50px; font-size: 14.375px; }
  .benefits-compare { gap: 25px; }
  


  .compare-card { padding: 27.5px 27.5px 32.5px; }
  .compare-card h3 { font-size: 27.5px; margin-top: 25px; margin-bottom: 37.5px; }
  .compare-list li { gap: 12.5px; margin-bottom: 12.5px; font-size: 14.375px; }
  .compare-list .icon { min-width: 20px; height: 20px; }
  .compare-list .icon img { width: 7.5px; height: 7.5px; }
  .benefits-note { max-width: 1250px; margin: 25px auto 0; font-size: 13.75px; }
  
  .founder-section { max-width: 1375px; margin-top: -62.5px; padding: 50px; }
  .founder-pill { gap: 12.5px; padding: 10px 25px; }
  .founder-pill span { font-size: 17.5px; }
  .founder-pill img { width: 17.5px; height: 17.5px; }
  .founder-pill::before { width: 37.5px; height: 20px; top: -12.5px; left: 15px; }
  .founder-pill span::before { width: 37.5px; height: 15px; top: 16.25px; left: -62.5px; }
  .founder-pill::after { width: 37.5px; height: 25px; bottom: 62.5px; right: -12.5px; }
  .founder-pill span::after { width: 37.5px; height: 17.5px; bottom: -6.25px; right: -62.5px; }
  
  .founder-heading { font-size: 50px; margin-bottom: 175px; }
  .founder-grid { gap: 75px; }
  .founder-image-wrap img { height: 750px; }
  .founder-logo-circle { right: -81.25px; bottom: 50px; width: 150px; height: 150px; font-size: 25px; }
  .founder-logo-circle img { width: 137.5px; height: 137.5px;}
  .founder-content { padding: 56.25px 37.5px 87.5px; left: -50px; bottom: 125px; }
  .founder-content h3 { font-size: 50px; margin-bottom: 50px; }
  .founder-content p { font-size: 16.25px; margin-bottom: 25px; }
  .founder-btn { margin-top: 25px; margin-bottom: 25px; }
  
  .btn { gap: 6.25px; height: 56.25px; padding: 7.5px 12.5px 7.5px 7.5px; font-size: 18.75px; }
  .btn-icon { width: 37.5px; height: 37.5px; }
  .btn-icon img { width: 16.25px; height: 16.25px; }
  .founder-signature { right: 37.5px; bottom: -187.5px; font-size: 70px; }

  

  .promise-section { max-width: 1562.5px; margin: 75px auto; padding: 0 25px; }
  .promise-wrapper { min-height: 675px; }
  .promise-card { right: 162.5px; padding: 35px 32.5px; width: 412.5px; height: 500px; }
  .promise-card h3 { font-size: 22.5px; margin-bottom: 17.5px; }
  .promise-card p { font-size: 13.125px; margin-bottom: 17.5px; }
  
  .cta-section { max-width: 1125px; margin: 50px auto 125px; padding: 0 25px; }
  .cta-heading { font-size: 50px; margin-bottom: 20px; }
  .cta-desc { max-width: 937.5px; margin: 0 auto 35px; font-size: 15px; }
  .cta-btn { margin-top: 12.5px; }
  

  .site-footer { padding: 87.5px 25px 50px; }
  .footer-container { max-width: 1250px; gap: 87.5px;}
  .footer-logo { width: 62.5px; margin-bottom: 31.25px;}
  .footer-item { gap: 15px; margin-bottom: 17.5px;}
  .footer-item img { margin-top: 5px;}
  .footer-item span { font-size: 16.25px;}
  .footer-links-col h4 { margin-bottom: 22.5px;}
  .footer-links-col a { font-size: 20px; margin-bottom: 17.5px;}
  .footer-about-col p { font-size: 18.75px; margin-bottom: 30px; margin-top: 22.5px;}
  .footer-social { gap: 20px;}
  .footer-social img { width: 37.5px; padding: 7.5px;}
  .footer-divider { max-width: 1250px; margin: 50px auto 25px; height: 1.25px; }
  .footer-bottom { max-width: 1250px; font-size: 15px; }
  .footer-bottom-links { gap: 22.5px; }
  .footer-brand { margin-top: 75px; font-size: 312.5px; }

}





/* =========================
   (min-width: 1920px)
========================= */

@media (min-width: 1920px) {

  .hero { margin-bottom: 30px; padding-top: 138px; }
  .header { padding: 24px 30px 12px; }
  .header-container { max-width: 1440px; height: 102px; }
  .logo { font-size: 39px; }
  .nav { gap: 42px; }
  .nav a { font-size: 21px; }
  
  .hero-content { max-width: 1650px; padding: 60px 30px 90px; }
  .hero-subtitle { font-size: 57px; margin-bottom: 12px; }
  .hero-title { font-size: 57px; margin-bottom: 21px; }
  .hero-desc { max-width: 750px; margin: 0 auto 54px; font-size: 19.5px; }
  .hero-images.asymmetric { gap: 36px; max-width: 1500px; margin: 0 auto; }
  .hero-img-card { height: 600px; }
  .hero-img-card img { height: 600px; }
  
  .our-story-section { max-width: 1650px; padding: 15px 0 0; }
  .story-glass-pill { gap: 10.5px; padding: 12px 22.5px; }
  .story-glass-pill span { font-size: 19.5px; }
  .story-glass-pill img { width: 21px; height: 21px; }
  .story-glass-pill::before { width: 45px; height: 24px; top: -15px; left: 18px; }
  .story-glass-pill span::before { width: 45px; height: 18px; top: 19.5px; left: -75px; }
  .story-glass-pill::after { width: 45px; height: 30px; bottom: 75px; right: -15px; }
  .story-glass-pill span::after { width: 45px; height: 21px; bottom: -7.5px; right: -75px; }
  
  .story-title { margin-top: 27px; font-size: 64.5px; }
  .story-desc { max-width: 1230px; margin: 24px auto 150px; font-size: 17.25px; }
  .story-visual-wrap { max-width: 1650px; margin-top: 240px; margin-bottom: 15px; }
  .story-center-img img { height: 975px; }
  .story-visual-grid { gap: 39px; }
  .card-tl { top: -180px; left: 300px; }
  .card-tr { top: -105px; right: -210px; }
  .card-bl { bottom: 150px; left: 90px; }
  .card-br { bottom: 90px; right: -255px; }

  


  .story-cards { gap: 33px; }
  .story-card { padding: 33px 33px 39px; min-height: 390px; max-width: 525px; }
  .story-card h4 { font-size: 33px; margin: 15px 0 22.5px; }
  .story-card p { font-size: 16.5px; max-width: 450px; margin-bottom: 15px; }
  .card-icon { width: 75px; margin-top: 30px; margin-bottom: 30px; }
  .mini-points strong { font-size: 22.5px; margin-top: 15px; }
  .mini-points p { margin-top: 3px; font-size: 16.5px; }
  
  .philosophy-section { margin: -45px auto; max-width: 1800px; }
  .philosophy-inner { padding: 60px 75px; }
  .philosophy-title .med { font-size: 57px; }
  .philosophy-title .bold-italic { font-size: 57px; }
  .philosophy-sub { max-width: 450px; margin-top: 15px; font-size: 18px; }
  .philosophy-content { gap: 60px; margin: 60px auto 0; }
  .philo-img img { width: 720px; height: 405px; }
  .philo-text h4 { margin-bottom: 15px; font-size: 42px; }
  .philo-text p { font-size: 22.5px; max-width: 720px; margin-bottom: 21px; }
  
  .about-features { max-width: 1500px; margin: 120px auto 0; padding: 0 30px; }
  .features-grid { gap: 27px; }
  .feature-card { padding: 33px 33px 36px; }
  .feature-icon { width: 82.5px; height: 82.5px; margin-bottom: 18px; }
  .feature-icon img { width: 45px; height: 45px; }
  .feature-card h4 { font-size: 21px; margin-bottom: 9px; }
  .feature-card p { font-size: 18px; }
  
  .benefits-section { max-width: 1500px; margin: 90px auto; padding: 0 30px; }
  .benefits-pill { margin: 0 auto 21px; }
  .benefits-title { font-size: 60px; }
  .benefits-desc { max-width: 1050px; margin: 21px auto 60px; font-size: 17.25px; }
  .benefits-compare { gap: 30px; }
  


  .compare-card { padding: 33px 33px 39px; }
  .compare-card h3 { font-size: 33px; margin-top: 30px; margin-bottom: 45px; }
  .compare-list li { gap: 15px; margin-bottom: 15px; font-size: 17.25px; }
  .compare-list .icon { min-width: 24px; height: 24px; }
  .compare-list .icon img { width: 9px; height: 9px; }
  .benefits-note { max-width: 1500px; margin: 30px auto 0; font-size: 16.5px; }
  
  .founder-section { max-width: 1650px; margin-top: -75px; padding: 60px; }
  .founder-pill { gap: 15px; padding: 12px 30px; }
  .founder-pill span { font-size: 21px; }
  .founder-pill img { width: 21px; height: 21px; }
  .founder-pill::before { width: 45px; height: 24px; top: -15px; left: 18px; }
  .founder-pill span::before { width: 45px; height: 18px; top: 19.5px; left: -75px; }
  .founder-pill::after { width: 45px; height: 30px; bottom: 75px; right: -15px; }
  .founder-pill span::after { width: 45px; height: 21px; bottom: -7.5px; right: -75px; }
  
  .founder-heading { font-size: 60px; margin-bottom: 210px; }
  .founder-grid { gap: 90px; }
  .founder-image-wrap img { height: 900px; }
  .founder-logo-circle { right: -97.5px; bottom: 60px; width: 180px; height: 180px; font-size: 30px; }
  .founder-logo-circle img { width: 165px; height: 165px;}
  .founder-content { padding: 67.5px 45px 105px; left: -60px; bottom: 150px; }
  .founder-content h3 { font-size: 60px; margin-bottom: 60px; }
  .founder-content p { font-size: 19.5px; margin-bottom: 30px; }
  .founder-btn { margin-top: 30px; margin-bottom: 30px; }
  
  .btn { gap: 7.5px; height: 67.5px; padding: 9px 15px 9px 9px; font-size: 22.5px; }
  .btn-icon { width: 45px; height: 45px; }
  .btn-icon img { width: 19.5px; height: 19.5px; }
  .founder-signature { right: 45px; bottom: -225px; font-size: 84px; }
  


  .promise-section { max-width: 1875px; margin: 90px auto; padding: 0 30px; }
  .promise-wrapper { min-height: 810px; }
  .promise-card { right: 195px; padding: 42px 39px; width: 495px; height: 600px; }
  .promise-card h3 { font-size: 27px; margin-bottom: 21px; }
  .promise-card p { font-size: 15.75px; margin-bottom: 21px; }
  
  .cta-section { max-width: 1350px; margin: 60px auto 150px; padding: 0 30px; }
  .cta-heading { font-size: 60px; margin-bottom: 24px; }
  .cta-desc { max-width: 1125px; margin: 0 auto 42px; font-size: 18px; }
  .cta-btn { margin-top: 15px; }
  
  .site-footer { padding: 105px 30px 60px; }
  .footer-container { max-width: 1500px; gap: 105px;}
  .footer-logo { width: 75px; margin-bottom: 37.5px;}
  .footer-item { gap: 18px; margin-bottom: 21px;}
  .footer-item img { margin-top: 6px;}
  .footer-item span { font-size: 19.5px;}
  .footer-links-col h4 { margin-bottom: 27px;}
  .footer-links-col a { font-size: 24px; margin-bottom: 21px;}
  .footer-about-col p { font-size: 22.5px; margin-bottom: 36px; margin-top: 27px;}
  .footer-social { gap: 24px;}
  .footer-social img { width: 45px; padding: 9px;}
  .footer-divider { max-width: 1500px; margin: 60px auto 30px; height: 1.5px; }
  .footer-bottom { max-width: 1500px; font-size: 18px; }
  .footer-bottom-links { gap: 27px; }
  .footer-brand { margin-top: 90px; font-size: 375px; }
  

}






/* =========================
   (min-width: 2560px)
========================= */

@media (min-width: 2560px) {

  .hero { margin-bottom: 40px; padding-top: 184px; }
  .header { padding: 32px 40px 16px; }
  .header-container { max-width: 1920px; height: 136px; }
  .logo { font-size: 52px; }
  .nav { gap: 56px; }
  .nav a { font-size: 28px; }
  
  .hero-content { max-width: 2200px; padding: 80px 40px 120px; }
  .hero-subtitle { font-size: 76px; margin-bottom: 16px; }
  .hero-title { font-size: 76px; margin-bottom: 28px; }
  .hero-desc { max-width: 1000px; margin: 0 auto 72px; font-size: 26px; }
  .hero-images.asymmetric { gap: 48px; max-width: 2000px; margin: 0 auto; }
  .hero-img-card { height: 800px; }
  .hero-img-card img { height: 800px; }
  
  .our-story-section { max-width: 2200px; padding: 20px 0 0; }
  .story-glass-pill { gap: 14px; padding: 16px 30px; }
  .story-glass-pill span { font-size: 26px; }
  .story-glass-pill img { width: 28px; height: 28px; }
  .story-glass-pill::before { width: 60px; height: 32px; top: -20px; left: 24px; }
  .story-glass-pill span::before { width: 60px; height: 24px; top: 26px; left: -100px; }
  .story-glass-pill::after { width: 60px; height: 40px; bottom: 100px; right: -20px; }
  .story-glass-pill span::after { width: 60px; height: 28px; bottom: -10px; right: -100px; }
  
  .story-title { margin-top: 36px; font-size: 86px; }
  .story-desc { max-width: 1640px; margin: 32px auto 200px; font-size: 23px; }
  .story-visual-wrap { max-width: 2200px; margin-top: 320px; margin-bottom: 20px; }
  .story-center-img img { height: 1300px; }
  .story-visual-grid { gap: 52px; }
  .card-tl { top: -240px; left: 400px; }
  .card-tr { top: -140px; right: -280px; }
  .card-bl { bottom: 200px; left: 120px; }
  .card-br { bottom: 120px; right: -340px; }
  


  .story-cards { gap: 44px; }
  .story-card { padding: 44px 44px 52px; min-height: 520px; max-width: 700px; }
  .story-card h4 { font-size: 44px; margin: 20px 0 30px; }
  .story-card p { font-size: 22px; max-width: 600px; margin-bottom: 20px; }
  .card-icon { width: 100px; margin-top: 40px; margin-bottom: 40px; }
  .mini-points strong { font-size: 30px; margin-top: 20px; }
  .mini-points p { margin-top: 4px; font-size: 22px; }
  
  .philosophy-section { margin: -60px auto; max-width: 2400px; }
  .philosophy-inner { padding: 80px 100px; }
  .philosophy-title .med { font-size: 76px; }
  .philosophy-title .bold-italic { font-size: 76px; }
  .philosophy-sub { max-width: 600px; margin-top: 20px; font-size: 24px; }
  .philosophy-content { gap: 80px; margin: 80px auto 0; }
  .philo-img img { width: 960px; height: 540px; }
  .philo-text h4 { margin-bottom: 20px; font-size: 56px; }
  .philo-text p { font-size: 30px; max-width: 960px; margin-bottom: 28px; }
  
  .about-features { max-width: 2000px; margin: 160px auto 0; padding: 0 40px; }
  .features-grid { gap: 36px; }
  .feature-card { padding: 44px 44px 48px; }
  .feature-icon { width: 110px; height: 110px; margin-bottom: 24px; }
  .feature-icon img { width: 60px; height: 60px; }
  .feature-card h4 { font-size: 28px; margin-bottom: 12px; }
  .feature-card p { font-size: 24px; }
  
  .benefits-section { max-width: 2000px; margin: 120px auto; padding: 0 40px; }
  .benefits-pill { margin: 0 auto 28px; }
  .benefits-title { font-size: 80px; }
  .benefits-desc { max-width: 1400px; margin: 28px auto 80px; font-size: 23px; }
  .benefits-compare { gap: 40px; }

  
  .compare-card { padding: 44px 44px 52px; }
  .compare-card h3 { font-size: 44px; margin-top: 40px; margin-bottom: 60px; }
  .compare-list li { gap: 20px; margin-bottom: 20px; font-size: 23px; }
  .compare-list .icon { min-width: 32px; height: 32px; }
  .compare-list .icon img { width: 12px; height: 12px; }
  .benefits-note { max-width: 2000px; margin: 40px auto 0; font-size: 22px; }
  
  .founder-section { max-width: 2200px; margin-top: -100px; padding: 80px; }
  .founder-pill { gap: 20px; padding: 16px 40px; }
  .founder-pill span { font-size: 28px; }
  .founder-pill img { width: 28px; height: 28px; }
  .founder-pill::before { width: 60px; height: 32px; top: -20px; left: 24px; }
  .founder-pill span::before { width: 60px; height: 24px; top: 26px; left: -100px; }
  .founder-pill::after { width: 60px; height: 40px; bottom: 100px; right: -20px; }
  .founder-pill span::after { width: 60px; height: 28px; bottom: -10px; right: -100px; }
  
  .founder-heading { font-size: 80px; margin-bottom: 280px; }
  .founder-grid { gap: 120px; }
  .founder-image-wrap img { height: 1200px; }
  .founder-logo-circle { right: -130px; bottom: 80px; width: 240px; height: 240px; font-size: 40px; }
  .founder-logo-circle img { width: 220px; height: 220px;}
  .founder-content { padding: 90px 60px 140px; left: -80px; bottom: 200px; }
  .founder-content h3 { font-size: 80px; margin-bottom: 80px; }
  .founder-content p { font-size: 26px; margin-bottom: 40px; }
  .founder-btn { margin-top: 40px; margin-bottom: 40px; }
  
  .btn { gap: 10px; height: 90px; padding: 12px 20px 12px 12px; font-size: 30px; }
  .btn-icon { width: 60px; height: 60px; }
  .btn-icon img { width: 26px; height: 26px; }
  .founder-signature { right: 60px; bottom: -300px; font-size: 112px; }
   


  .promise-section { max-width: 2500px; margin: 120px auto; padding: 0 40px; }
  .promise-wrapper { min-height: 1080px; }
  .promise-card { right: 260px; padding: 56px 52px; width: 660px; height: 800px; }
  .promise-card h3 { font-size: 36px; margin-bottom: 28px; }
  .promise-card p { font-size: 21px; margin-bottom: 28px; }
  
  .cta-section { max-width: 1800px; margin: 80px auto 200px; padding: 0 40px; }
  .cta-heading { font-size: 80px; margin-bottom: 32px; }
  .cta-desc { max-width: 1500px; margin: 0 auto 56px; font-size: 24px; }
  .cta-btn { margin-top: 20px; }
  
  .site-footer { padding: 140px 40px 80px; }
  .footer-container { max-width: 2000px; gap: 140px;}
  .footer-logo { width: 100px; margin-bottom: 50px;}
  .footer-item { gap: 24px; margin-bottom: 28px;}
  .footer-item img { margin-top: 8px;}
  .footer-item span { font-size: 26px;}
  .footer-links-col h4 { margin-bottom: 36px;}
  .footer-links-col a { font-size: 32px; margin-bottom: 28px;}
  .footer-about-col p { font-size: 30px; margin-bottom: 48px; margin-top: 36px;}
  .footer-social { gap: 32px;}
  .footer-social img { width: 60px; padding: 12px;}
  .footer-divider { max-width: 2000px; margin: 80px auto 40px; height: 2px; }
  .footer-bottom { max-width: 2000px; font-size: 24px; }
  .footer-bottom-links { gap: 36px; }
  .footer-brand { margin-top: 120px; font-size: 500px; }
  
}




























/* =========================
   MOBILE VIEW
========================= */
@media (max-width:480px){

  body{ overflow-x:hidden;}

  .hero{ padding-top:90px; align-items:center;}

  .header{ position:fixed; top:0; left:0; width:100%; z-index:9999; display:flex; justify-content:center; padding:12px 0;}

  .header-container{ width:92%; max-width:420px; height:56px; display:flex; align-items:center; justify-content:space-between; margin:0 auto;background: rgba(255, 255, 255, 0.65);backdrop-filter: blur(8px);-webkit-backdrop-filter: blur(12px);border-radius: 999px;border: 0.5px solid rgba(0, 0, 0, 0.05);box-shadow:0 24px 60px rgba(0, 0, 0, 0.055),inset 0 1px 0 rgba(255, 255, 255, 0.32);}

  .logo{ font-size:20px;}

  .menu-toggle{ display:block; font-size:22px; color: #000; background:none; border:none; cursor:pointer;}

  .nav{ display:none; position:absolute; top:70px; left:50%; transform:translateX(-50%); width:92%; max-width:420px; background:#fff; border-radius:16px; padding:18px; flex-direction:column; gap:16px; box-shadow:0 20px 40px rgba(0,0,0,0.08);}

  .nav.show{ display:flex;}

  .nav a{ font-size:15px; text-align:center;}

  .hero-content{padding:30px 14px 40px;}

  .hero-subtitle{font-size:22px;margin-bottom:6px;}
  
  .hero-title{font-size:24px;line-height:1.3;margin-bottom:12px;}
  
  .hero-desc{font-size:13px;line-height:1.6;margin-bottom:24px;max-width:100%;}
  
  .hero-images.asymmetric{grid-template-columns:1fr;gap:14px;}
  
  .hero-img-card{height:260px;border-radius:14px;}
  
  .hero-img-card img{height:260px;}

  .our-story-section{padding:10px 14px 0;}

  .story-glass-pill{padding:6px 12px;gap:6px;}
  
  .story-glass-pill span{font-size:12px;}
  
  .story-glass-pill img{width:12px;height:12px;}
  
  .story-title{font-size:26px;line-height:1.3;margin-top:14px;}
  
  .story-desc{font-size:12px;line-height:1.6;margin:14px auto 30px;max-width:100%;}
  
  .story-visual-wrap{margin-top:20px;}
  
  .story-center-img{position:relative;inset:auto;display:flex;justify-content:center;margin-bottom:0px;}
  
  .story-center-img img{height:300px;width:auto;}
  
  .story-visual-grid{grid-template-columns:1fr;gap:14px;justify-items:center;}
  
  .card-tl,.card-tr,.card-bl,.card-br{top:auto;bottom:auto;left:auto;right:auto;}
  
  .story-card{max-width:320px;width:100%;padding:16px;border-radius:14px;min-height:auto;text-align:left;}
  
  .story-card h4{font-size:18px;margin:8px 0 10px;}
  
  .story-card p{font-size:12px;line-height:1.6;max-width:100%;}
  
  .card-icon{width:34px;margin:8px 0;}
  
  .mini-points strong{font-size:14px;margin-top:8px;}
  
  .mini-points p{font-size:12px;}

  .philosophy-section{margin:-10px 14px;border-radius:18px;}

  .philosophy-inner{padding:26px 18px;}
  
  .philosophy-title .med{font-size:24px;}

  .philosophy-title .bold-italic{font-size:24px;}
  
  .philosophy-sub{font-size:12px;margin-top:8px;max-width:260px;}
  
  .philosophy-content{grid-template-columns:1fr;gap:20px;margin-top:26px;text-align:center;}
  
  .philo-img img{width:100%;height:auto;border-radius:14px;}
  
  .philo-text h4{font-size:20px;margin-bottom:8px;}
  
  .philo-text p{font-size:13px;line-height:1.6;max-width:100%;margin-bottom:12px;}  
  
  .about-features{margin:50px auto 0;padding:0 14px;}

  .features-grid{grid-template-columns:1fr;gap:14px;}
  
  .feature-card{padding:18px;border-radius:14px;}
  
  .feature-icon{width:48px;height:48px;margin-bottom:10px;}
  
  .feature-icon img{width:24px;height:24px;}
  
  .feature-card h4{font-size:15px;margin-bottom:6px;}
  
  .feature-card p{font-size:13px;line-height:1.6;}

  .benefits-section{margin:40px auto;padding:0 14px;}

  .benefits-pill{margin-bottom:12px;}
  
  .benefits-title{font-size:26px;line-height:1.3;}
  
  .benefits-desc{font-size:12px;line-height:1.6;margin:12px auto 24px;max-width:100%;}
  
  .benefits-compare{grid-template-columns:1fr;gap:16px;}
  
  .compare-card{padding:18px;border-radius:14px;}
  
  .compare-card h3{font-size:18px;margin-top:10px;margin-bottom:18px;}
  
  .compare-list li{font-size:12px;line-height:1.6;gap:8px;margin-bottom:10px;}
  
  .compare-list .icon{min-width:14px;height:14px;}
  
  .compare-list .icon img{width:5px;height:5px;}
  
  .benefits-note{font-size:12px;line-height:1.6;margin-top:18px;text-align:justify;}

  .founder-section{max-width:100%;padding:20px 14px;margin:0 auto 40px;}

  .founder-pill{width:auto;height:auto;margin-bottom:12px;}
  
  .founder-heading{font-size:24px;line-height:1.3;margin-bottom:28px;}
  
  .founder-grid{grid-template-columns:1fr;gap:22px;text-align:center;}
  
  .founder-image-wrap{width:100%;position:relative;}
  
  .founder-image-wrap img{width:100%;height:auto;border-radius:12px;}
  
  .founder-logo-circle{right:50%;bottom:-40px;transform:translateX(50%);width:80px;height:80px;}
  
  .founder-logo-circle img{width:70px;height:70px;}
  
  .founder-content{left:0;bottom:0;padding:55px 18px 40px;border-radius:12px;text-align:left;}
  
  .founder-content h3{font-size:26px;margin-bottom:18px;text-align:center;}
  
  .founder-content p{font-size:13px;line-height:1.7;margin-bottom:14px;text-align:justify;}
  
  .founder-signature{position:relative;right:auto;bottom:auto;margin-top:18px;font-size:36px;transform:rotate(-8deg);text-align:right;}  

  .promise-section{margin:40px auto;padding:0 14px;}

  .promise-wrapper{min-height:520px;border-radius:18px;}
  
  .promise-bg{position:absolute;inset:0;width:100%;height:100%;object-fit:contain;object-position: top;}
  
  .promise-card{position:relative;right:auto;top:auto;transform:none;width:100%;height:auto;margin:200px auto 10px;padding:20px;border-radius:14px;}
  
  .promise-card h3{font-size:16px;margin-bottom:10px;}
  
  .promise-card p{font-size:12px;line-height:1.6;margin-bottom:12px;}
  
  .cta-section{margin:40px auto 70px;padding:0 14px;}

  .cta-heading{font-size:26px;line-height:1.3;margin-bottom:14px;}
  
  .cta-desc{font-size:13px;line-height:1.6;margin-bottom:22px;max-width:100%;}
  
  .cta-btn{margin-top:8px;}

  .site-footer{padding:40px 14px 24px;}
  
  .footer-container{grid-template-columns:1fr;gap:30px;text-align:center;}
  
  .footer-container .footer-col:nth-child(2){justify-self:center;}
  
  .footer-logo{width:42px;margin:0 auto 18px;}
  
  .footer-item{justify-content:center;text-align:center;}
  
  .footer-item span{font-size:12px;line-height:1.5;}
  
  .footer-links-col a{font-size:14px;margin-bottom:10px;}
  
  .footer-about-col p{font-size:13px;margin:10px 0 18px;}
  
  .footer-social{justify-content:center;gap:12px;}
  
  .footer-social img{width:26px;padding:5px;}
  
  .footer-divider{margin:24px auto 16px;}
  
  .footer-bottom{flex-direction:column;gap:10px;font-size:11px;text-align:center;}
  
  .footer-bottom-links{gap:12px;flex-wrap:wrap;justify-content:center;}
  
  .footer-brand{margin-top:30px;font-size:80px;}
  
  .wave-text span{animation-duration:5s;}
}