/* =========================================================
   SELFCO MARKET
   V0.0.3
   ========================================================= */

   :root {
    --black: #111111;
    --white: #ffffff;
    --gold: #c9a227;
    --warm-white: #f7f7f5;
    --gray: #666666;
    --border: #e4e4df;
  }
  
  
  /* =========================================================
     RESET
     ========================================================= */
  
  * {
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    margin: 0;
    color: var(--black);
    background: var(--white);
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  h1,
  h2,
  h3,
  p {
    margin-top: 0;
  }
  
  h1,
  h2 {
    line-height: .98;
    letter-spacing: -.06em;
  }
  
  .container {
    width: min(1160px, calc(100% - 64px));
    margin: 0 auto;
  }
  
  .narrow {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .section {
    padding: 85px 0;
  }
  
  .eyebrow {
    margin-bottom: 18px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .18em;
  }
  
  
  /* =========================================================
     BUTTONS
     ========================================================= */
  
  .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  
    padding: 14px 21px;
  
    border-radius: 999px;
  
    font-size: 13px;
    font-weight: 700;
  
    transition:
      transform .2s ease,
      opacity .2s ease;
  }
  
  .button:hover {
    transform: translateY(-2px);
    opacity: .9;
  }
  
  .button-dark {
    color: var(--white);
    background: var(--black);
  }
  
  .button-light {
    color: var(--black);
    background: var(--white);
  }
  
  
  /* =========================================================
     HEADER
     ========================================================= */
  
  .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
  
    height: 82px;
  
    background: rgba(255,255,255,.96);
  
    border-bottom: 1px solid var(--border);
  
    backdrop-filter: blur(12px);
  }
  
  .header-inner {
    height: 100%;
  
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  
  /* Brand */
  
  .brand {
    display: flex;
    align-items: baseline;
    gap: 9px;
  }
  
  .brand-name {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -.08em;
  }
  
  .brand-market {
    color: var(--gold);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: .08em;
  }
  
  
  /* Navigation */
  
  .main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
  
    font-size: 13px;
    font-weight: 600;
  }
  
  .nav-button {
    padding: 10px 17px;
  
    border: 1px solid var(--black);
    border-radius: 999px;
  
    transition:
      background .2s ease,
      color .2s ease;
  }
  
  .nav-button:hover {
    color: var(--white);
    background: var(--black);
  }
  
  
  /* =========================================================
     HERO
     ========================================================= */
  
  .hero {
    background: var(--warm-white);
  }
  
  .hero-grid {
    min-height: calc(100vh - 82px);
  
    display: grid;
    grid-template-columns: 1.05fr .95fr;
  
    align-items: center;
  
    gap: 60px;
  
    padding: 55px 0;
  }
  
  .hero-content {
    padding-top: 10px;
  }
  
  .hero h1 {
    max-width: 760px;
  
    margin-bottom: 22px;
  
    font-size: clamp(58px, 7vw, 88px);
  }
  
  .hero h1 span {
    display: block;
    color: var(--gold);
  }
  
  .hero-subtitle {
    margin-bottom: 8px;
  
    font-size: 23px;
    font-weight: 600;
  
    letter-spacing: -.03em;
  }
  
  .hero-description {
    max-width: 520px;
  
    margin-bottom: 27px;
  
    color: var(--gray);
  
    font-size: 14px;
    line-height: 1.75;
  }
  
  .hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .text-link {
    font-size: 13px;
    font-weight: 700;
  }
  
  .text-link span {
    margin-left: 5px;
    color: var(--gold);
    font-size: 18px;
  }
  
  
  /* =========================================================
     KIOSK
     ========================================================= */
  
  .hero-visual {
    display: flex;
    justify-content: center;
  }
  
  .kiosk {
    width: min(330px, 75vw);
  
    padding: 16px;
  
    background: var(--black);
  
    border-radius: 25px;
  
    box-shadow:
      0 28px 60px rgba(0,0,0,.13);
  }
  
  .kiosk-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
  
    padding: 3px 7px 14px;
  
    color: var(--white);
  }
  
  .kiosk-top strong {
    font-size: 15px;
    letter-spacing: -.05em;
  }
  
  .kiosk-top span {
    margin-left: 4px;
  
    color: var(--gold);
  
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .06em;
  }
  
  .status-light {
    width: 6px;
    height: 6px;
  
    border-radius: 50%;
  
    background: var(--gold);
  }
  
  .kiosk-screen {
    height: 335px;
  
    padding: 25px 22px;
  
    background: var(--white);
  
    border-radius: 15px;
  }
  
  .screen-label {
    margin-bottom: 0;
  
    color: var(--gold);
  
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .14em;
  }
  
  .kiosk-screen h2 {
    max-width: 220px;
  
    margin-top: 45px;
  
    font-size: 26px;
  }
  
  .scan-card {
    margin-top: 25px;
  
    padding: 17px;
  
    border: 1px solid var(--border);
    border-radius: 11px;
  }
  
  .scan-line {
    width: 48px;
    height: 4px;
  
    margin-bottom: 13px;
  
    background: var(--gold);
  }
  
  .scan-card strong,
  .scan-card span {
    display: block;
  }
  
  .scan-card strong {
    font-size: 12px;
  }
  
  .scan-card span {
    margin-top: 5px;
  
    color: var(--gray);
  
    font-size: 9px;
  }
  
  .barcode-scanner {
    width: 86%;
    height: 40px;
  
    margin: 17px auto 0;
  
    border: 1px solid #333;
    border-radius: 7px;
  
    overflow: hidden;
  }
  
  .barcode-lines {
    width: 100%;
    height: 100%;
  
    background:
      repeating-linear-gradient(
        90deg,
        #111 0 4px,
        #333 4px 6px,
        #111 6px 12px
      );
  }
  
  
  /* =========================================================
     HOW IT WORKS
     ========================================================= */
  
  .how-it-works {
    background: var(--warm-white);
  }
  
  .section-heading {
    text-align: center;
  }
  
  .section-heading h2 {
    margin-bottom: 0;
  
    font-size: clamp(48px, 6vw, 76px);
  }
  
  .section-heading h2 span {
    display: block;
    color: var(--gold);
  }
  
  
  /* FLOW */
  
  .flow {
    display: grid;
  
    grid-template-columns:
      1fr 70px
      1fr 70px
      1fr 70px
      1fr;
  
    align-items: center;
  
    margin-top: 60px;
  }
  
  .flow-step {
    position: relative;
  
    min-height: 270px;
  
    padding: 32px;
  
    background: var(--white);
  
    border: 1px solid var(--border);
    border-radius: 16px;
  }
  
  .step-number {
    color: var(--gold);
  
    font-size: 10px;
    font-weight: 800;
  
    letter-spacing: .15em;
  }
  
  
  /* Connector */
  
  .flow-connector {
    height: 2px;
  
    background: var(--gold);
  
    position: relative;
  }
  
  .flow-connector::after {
    content: "";
  
    position: absolute;
  
    right: -1px;
    top: -4px;
  
    width: 8px;
    height: 8px;
  
    border-top: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
  
    transform: rotate(45deg);
  }
  
  
  /* Flow icons */
  
  .flow-icon {
    height: 75px;
  
    margin: 32px 0 20px;
  
    position: relative;
  
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  
  
  /* Scanner */
  
  .scanner-icon {
    width: 70px;
  }
  
  .scanner-window {
    width: 60px;
    height: 35px;
  
    border: 3px solid var(--black);
    border-radius: 6px;
  }
  
  .barcode {
    position: absolute;
  
    left: 12px;
    top: 10px;
  
    height: 25px;
  
    display: flex;
    gap: 3px;
  }
  
  .barcode i {
    display: block;
  
    width: 2px;
  
    background: var(--gold);
  }
  
  .barcode i:nth-child(2) {
    width: 4px;
  }
  
  .barcode i:nth-child(4) {
    width: 3px;
  }
  
  
  /* Cart */
  
  .cart-icon {
    width: 75px;
  }
  
  .cart-basket {
    width: 58px;
    height: 32px;
  
    border: 3px solid var(--black);
  
    border-top: 0;
  
    transform: skew(-8deg);
  }
  
  .cart-line {
    width: 42px;
    height: 2px;
  
    margin: 7px auto 0;
  
    background: var(--gold);
  }
  
  .cart-wheel {
    position: absolute;
  
    bottom: 2px;
  
    width: 7px;
    height: 7px;
  
    border-radius: 50%;
  
    background: var(--black);
  }
  
  .wheel-one {
    left: 10px;
  }
  
  .wheel-two {
    left: 55px;
  }
  
  
  /* Phone / QR */
  
  .phone {
    width: 42px;
    height: 60px;
  
    display: flex;
    align-items: center;
    justify-content: center;
  
    border: 3px solid var(--black);
    border-radius: 7px;
  }
  
  .qr {
    width: 25px;
    height: 25px;
  
    display: grid;
  
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
  
    padding: 2px;
  
    background: var(--black);
  }
  
  .qr i {
    background: var(--white);
  }
  
  .qr i:nth-child(2),
  .qr i:nth-child(4) {
    background: var(--gold);
  }
  
  
  /* Done */
  
  .done-icon {
    width: 62px;
    height: 62px;
  
    justify-content: center;
  
    color: var(--black);
  
    border: 3px solid var(--gold);
  
    border-radius: 50%;
  
    font-size: 30px;
    font-weight: 600;
  }
  
  .flow-step h3 {
    margin-bottom: 8px;
  
    font-size: 22px;
  
    letter-spacing: -.04em;
  }
  
  .flow-step p {
    max-width: 190px;
  
    margin-bottom: 0;
  
    color: var(--gray);
  
    font-size: 13px;
  
    line-height: 1.6;
  }
  
  
  /* =========================================================
     STATEMENT
     ========================================================= */
  
  .statement {
    background: var(--white);
  
    text-align: center;
  }
  
  .statement h2 {
    margin-bottom: 25px;
  
    font-size: clamp(45px, 5.5vw, 70px);
  }
  
  .statement h2 span {
    display: block;
    color: var(--gold);
  }
  
  .statement > .narrow > p:last-child {
    margin-bottom: 0;
  
    color: var(--gray);
  
    font-size: 14px;
    line-height: 1.75;
  }
  
  
  /* =========================================================
     BENEFITS
     ========================================================= */
  
  .benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  
    color: var(--white);
  
    background: var(--black);
  }
  
  .benefit {
    padding: 50px 55px;
  
    border-right: 1px solid #303030;
  }
  
  .benefit:last-child {
    border-right: 0;
  }
  
  .benefit-number {
    color: var(--gold);
  
    font-size: 10px;
    font-weight: 800;
  
    letter-spacing: .15em;
  }
  
  .benefit h3 {
    margin: 35px 0 9px;
  
    font-size: 29px;
  
    letter-spacing: -.05em;
  }
  
  .benefit p {
    max-width: 280px;
  
    margin-bottom: 0;
  
    color: #aaa;
  
    font-size: 13px;
    line-height: 1.7;
  }
  
  
  /* =========================================================
     BUILDINGS
     ========================================================= */
  
  .section-dark {
    color: var(--white);
  
    background: var(--black);
  }
  
  .buildings-grid {
    display: grid;
  
    grid-template-columns: 1.2fr .8fr;
  
    align-items: center;
  
    gap: 80px;
  
    padding: 100px 0;
  }
  
  .buildings h2 {
    max-width: 650px;
  
    margin-bottom: 25px;
  
    font-size: clamp(45px, 5.5vw, 70px);
  }
  
  .buildings h2 span {
    display: block;
    color: var(--gold);
  }
  
  .section-description {
    max-width: 530px;
  
    margin-bottom: 28px;
  
    color: #aaa;
  
    font-size: 14px;
    line-height: 1.75;
  }
  
  .responsibilities {
    max-width: 530px;
  
    margin: 0 0 30px;
    padding: 0;
  
    list-style: none;
  }
  
  .responsibilities li {
    padding: 12px 0;
  
    border-top: 1px solid #333;
  
    font-size: 12px;
  }
  
  .responsibilities li span {
    margin-right: 10px;
  
    color: var(--gold);
  }
  
  .buildings-card {
    min-height: 330px;
  
    padding: 35px;
  
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  
    border: 1px solid #333;
    border-radius: 18px;
  }
  
  .gold-line {
    width: 45px;
    height: 3px;
  
    background: var(--gold);
  }
  
  .buildings-card p {
    margin: 0;
  
    color: var(--gold);
  
    font-size: 9px;
    font-weight: 800;
  
    letter-spacing: .16em;
  }
  
  .buildings-card strong {
    font-size: clamp(30px, 3vw, 42px);
  
    line-height: 1;
  
    letter-spacing: -.05em;
  }
  
  .buildings-card > span {
    color: #999;
  
    font-size: 11px;
  }
  
  
  /* =========================================================
     PILOT
     ========================================================= */
  
  .pilot {
    background: var(--white);
  
    text-align: center;
  }
  
  .pilot h2 {
    margin-bottom: 25px;
  
    font-size: clamp(45px, 5.5vw, 70px);
  }
  
  .pilot h2 span {
    display: block;
    color: var(--gold);
  }
  
  .pilot > .narrow > p {
    color: var(--gray);
  
    font-size: 14px;
    line-height: 1.75;
  }
  
  .pilot-note {
    max-width: 570px;
  
    margin: 35px auto 0;
  
    padding: 20px 24px;
  
    display: flex;
    flex-direction: column;
    gap: 5px;
  
    background: var(--warm-white);
  
    border-radius: 13px;
  }
  
  .pilot-note strong {
    font-size: 12px;
  }
  
  .pilot-note span {
    color: var(--gray);
  
    font-size: 11px;
  }
  
  
  /* =========================================================
     CONTACT
     ========================================================= */
  
  .contact {
    color: var(--black);
  
    background: var(--gold);
  }
  
  .contact-inner {
    min-height: 370px;
  
    padding: 75px 0;
  
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  
    gap: 40px;
  }
  
  .contact .eyebrow {
    color: var(--black);
  }
  
  .contact h2 {
    margin-bottom: 18px;
  
    font-size: clamp(45px, 5.5vw, 70px);
  }
  
  .contact h2 span {
    display: block;
    color: var(--white);
  }
  
  .contact p:last-child {
    margin-bottom: 0;
  
    font-size: 14px;
  }
  
  .contact-button {
    padding: 17px 22px;
  
    color: var(--white);
  
    background: var(--black);
  
    border-radius: 999px;
  
    font-size: 12px;
    font-weight: 700;
  
    white-space: nowrap;
  }
  
  .contact-button span {
    margin-left: 7px;
  
    color: var(--gold);
  }
  
  
  /* =========================================================
     FOOTER
     ========================================================= */
  
  .site-footer {
    color: var(--white);
  
    background: var(--black);
  }
  
  .footer-inner {
    min-height: 90px;
  
    display: flex;
    align-items: center;
    justify-content: space-between;
  
    gap: 20px;
  }
  
  .footer-brand {
    display: flex;
    align-items: baseline;
    gap: 5px;
  }
  
  .footer-brand strong {
    font-size: 19px;
    letter-spacing: -.05em;
  }
  
  .footer-brand span {
    color: var(--gold);
  
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
  }
  
  .footer-inner p {
    margin: 0;
  
    color: #888;
  
    font-size: 10px;
  }
  
  
  /* =========================================================
     RESPONSIVE
     ========================================================= */
  
  @media (max-width: 950px) {
  
    .container {
      width: min(100% - 48px, 720px);
    }
  
    .hero-grid {
      grid-template-columns: 1fr;
  
      gap: 50px;
  
      padding: 65px 0;
    }
  
    .hero-visual {
      justify-content: flex-start;
    }
  
    .benefits {
      grid-template-columns: 1fr;
    }
  
    .benefit {
      padding: 40px 45px;
  
      border-right: 0;
      border-bottom: 1px solid #303030;
    }
  
    .benefit:last-child {
      border-bottom: 0;
    }
  
    .flow {
      grid-template-columns: 1fr 35px 1fr;
      gap: 0;
    }
  
    .flow-step {
      min-height: 240px;
    }
  
    .flow-connector:nth-of-type(4) {
      display: none;
    }
  
    .buildings-grid {
      grid-template-columns: 1fr;
  
      gap: 50px;
  
      padding: 85px 0;
    }
  
    .contact-inner {
      align-items: flex-start;
      flex-direction: column;
    }
  }
  
  
  @media (max-width: 650px) {
  
    .container {
      width: calc(100% - 32px);
    }
  
    .site-header {
      height: 70px;
    }
  
    .brand {
      gap: 7px;
    }
  
    .brand-name {
      font-size: 25px;
    }
  
    .brand-market {
      font-size: 14px;
      letter-spacing: .06em;
    }
  
    .main-nav a:not(.nav-button) {
      display: none;
    }
  
    .hero-grid {
      padding: 55px 0;
    }
  
    .hero h1 {
      font-size: clamp(48px, 14vw, 65px);
    }
  
    .hero-subtitle {
      font-size: 20px;
    }
  
    .hero-actions {
      align-items: flex-start;
      flex-direction: column;
    }
  
    .section {
      padding: 70px 0;
    }
  
    .statement h2,
    .section-heading h2,
    .buildings h2,
    .pilot h2,
    .contact h2 {
      font-size: clamp(42px, 12vw, 57px);
    }
  
    .benefit {
      padding: 40px 25px;
    }
  
    .flow {
      display: block;
  
      margin-top: 40px;
    }
  
    .flow-step {
      min-height: 220px;
  
      margin-bottom: 14px;
    }
  
    .flow-connector {
      width: 2px;
      height: 25px;
  
      margin: -14px auto 0;
  
      background: var(--gold);
    }
  
    .flow-connector::after {
      top: auto;
      right: -4px;
      bottom: -1px;
  
      transform: rotate(135deg);
    }
  
    .buildings-card {
      min-height: 290px;
    }
  
    .contact-inner {
      min-height: auto;
  
      padding: 65px 0;
    }
  
    .footer-inner {
      padding: 28px 0;
  
      align-items: flex-start;
      flex-direction: column;
    }
  }