@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --deep: #00383b;
  --deepest: #002f32;
  --teal: #00777b;
  --cyan: #00c3c9;
  --orange: #f53616;
  --yellow: #ffb600;
  --paper: #f5f6f8;
  --ink: #00383b;
  --white: #f8f9fa;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.site-header {
  height: 108px;
  background: var(--deepest);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(28px, 7vw, 100px);
  border-bottom: 2px solid var(--cyan);
  position: relative;
  z-index: 4;
}

.brand img {
  display: block;
  width: 190px;
  max-height: 76px;
  object-fit: contain;
  margin-right: 25px;
   border-radius: 12px;
}

.desktop-nav {
  display: flex;
  gap: 34px;
  margin-left: auto;
  margin-right: 40px;
}

.desktop-nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.icon-button,
.menu-trigger {
  border: 0;
  background: none;
  color: white;
  cursor: pointer;
}


.notification {
  position: relative;
  background: #0099a0;
  border-radius: 50%;
  width: 62px;
  height: 62px;
  font-size: 30px;
}

.bell {
  fill: #FFFFFF;
  width: 24px;
  height: 24px;
}


.no-underline {
  text-decoration: none;
}

.badge {
  position: absolute;
  right: -5px;
  top: -5px;
  background: var(--orange);
  border-radius: 50%;
  width: 35px;
  height: 35px;
  font-size: 18px;
  display: grid;
  place-items: center;
  border: 2px solid var(--deepest);
}

.menu-trigger {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
}

.menu-lines {
  font-size: 54px;
  line-height: .75;
  transform: scaleX(1.25);
  font-family: Arial;
}

.hero {
  min-height: 670px;
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  color: white;
  background:
    linear-gradient(180deg, rgba(0, 44, 52, .48), rgba(0, 44, 52, .95)),
    url('https://res.cloudinary.com/dg3f5oyel/image/upload/v1790354963/suncoast_photo1_pwjoj0.png')
    center 38% / cover no-repeat;
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 56, 59, .68), rgba(0, 56, 59, .28), rgba(0, 56, 59, .68));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  padding: 75px 28px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: .09em;
  color: var(--orange);
  font-weight: 700;
}

.eyebrow.light {
  color: #fff;
}

.hero h1 {
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.12;
  margin: 20px 0 26px;
  color: white;
}

.hero-copy {
  font-size: clamp(18px, 2.1vw, 25px);
  line-height: 1.55;
  margin: 0 auto 38px;
  max-width: 760px;
}

.pill-button,
.dark-pill {
  min-height: 76px;
  padding: 16px 38px;
  border-radius: 50px;
  background: #fff;
  color: var(--deep);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  text-decoration: none;
  font-size: 23px;
  font-weight: 600;
  max-width: 500px;
  margin: 0 auto;
}

.pill-button span,
.text-link span {
  font-size: 36px;
  line-height: 1;
}

.member-link {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  margin-top: 32px;
  text-decoration: none;
  font-size: 21px;
  font-weight: 600;
}

.member-link span {
  color: var(--yellow);
  font-size: 38px;
}

.section {
  padding: 88px max(24px, 7vw);
}

.welcome {
  background: #fff;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.15;
  margin: 0 0 24px;
}

.section-heading p {
  font-size: 21px;
  margin: 0 0 52px;
}

.mobile-break {
  display: none;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 860px;
  margin: 0 auto 56px;
}

.quick-links a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 19px;
  line-height: 1.45;
}

.round-icon {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e5e8eb;
  color: var(--orange);
  font-size: 42px;
  font-weight: 700;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 1050px;
  margin: auto;
  text-align: left;
}

.product-card {
  background: var(--paper);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px #00383b12;
}

.card-photo,
.card-art {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: grid;
  place-items: center;
}

.card-art {
  background: var(--yellow);
  font-size: 140px;
  color: var(--orange);
}

.card-body {
  padding: 25px 28px 30px;
  border-top: 6px solid var(--orange);
}

.card-body h3 {
  font-size: 29px;
  margin: 0 0 18px;
}

.card-body p,
.card-body strong {
  font-size: 19px;
  line-height: 1.6;
}

.card-body strong {
  display: block;
  margin: 25px 0;
}

.text-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 28px;
}

.text-link span {
  color: var(--teal);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  max-width: 860px;
  margin: 50px auto 0;
}

.carousel-dots button {
  width: 30px;
  height: 30px;
  border: 1.5px solid var(--deep);
  border-radius: 50%;
  background: white;
  cursor: pointer;
}

.carousel-dots button.active {
  background: var(--deep);
}

.becm {
  background: var(--yellow);
  text-align: center;
  min-height: 530px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.heart {
  font-size: 125px;
  color: var(--orange);
  line-height: 1;
}

.becm-word {
  font-size: clamp(66px, 10vw, 104px);
  margin: 48px 0 25px;
}

.becm p {
  font-size: 27px;
  margin: 0;
}

.progress {
  height: 12px;
  width: min(520px, 70vw);
  background: #f2d94e;
  margin-top: 56px;
  border-radius: 9px;
}

.progress span {
  display: block;
  background: var(--cyan);
  height: 100%;
  width: 58%;
  border-radius: 9px;
}

.bank-heart {
  padding: 0;
  background: linear-gradient(180deg, #ffb600 0 55%, #ffca30 100%);
  text-align: center;
}

.bank-copy {
  max-width: 820px;
  margin: auto;
  padding: 100px 28px;
}

.bank-copy h2,
.community-copy h2 {
  font-size: clamp(44px, 7vw, 72px);
  line-height: 1.15;
  margin: 0 auto 34px;
}

.bank-copy p,
.community-copy p {
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.65;
  margin: 0 auto 48px;
}

.dark-pill {
  background: var(--deep);
  color: #fff;
  max-width: 530px;
}

.dark-pill span {
  font-size: 36px;
}

.community-copy {
  padding: 55px max(28px, 8vw) 100px;
  max-width: 1050px;
  margin: auto;
}

.community-copy h2 {
  font-size: clamp(40px, 6vw, 64px);
}

.business {
  padding: 0;
  background: #f4f5f6;
}

.business-intro {
  text-align: left;
  max-width: 1040px;
  margin: auto;
  padding: 72px 40px 0;
  min-height: 430px;
  position: relative;
  overflow: hidden;
}

.business-intro h2 {
  font-size: 48px;
  line-height: 1.25;
  margin: 22px 0;
}

.business-intro p {
  font-size: 21px;
  line-height: 1.5;
  max-width: 760px;
  margin: 0;
}

.sun-arc {
  width: 460px;
  height: 250px;
  border: 24px solid #ffd500;
  border-bottom: 0;
  border-radius: 250px 250px 0 0;
  margin: 110px auto -60px;
}

.atm-search {
  background: #00777b;
  padding: 86px 7vw;
}

.search-panel {
  max-width: 900px;
  margin: auto;
  background: #f7f8fa;
  border-top: 10px solid var(--orange);
  border-radius: 14px;
  padding: 70px 32px 55px;
  text-align: center;
}

.search-panel h2 {
  font-size: clamp(38px, 5vw, 64px);
  margin: 0 0 22px;
}

.search-panel > p {
  font-size: 22px;
  line-height: 1.5;
  margin: 0 0 42px;
}

.search-form {
  display: flex;
  align-items: center;
  border: 1px solid #bec5c7;
  background: white;
  border-radius: 45px;
  max-width: 680px;
  margin: auto;
  padding: 6px 12px 6px 28px;
}

.search-form input {
  border: 0;
  outline: 0;
  flex: 1;
  min-width: 0;
  font-size: 20px;
  padding: 14px 0;
  background: transparent;
}

.search-form button {
  border: 0;
  color: #00999f;
  background: none;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
}

.search-feedback {
  min-height: 20px !important;
  margin: 8px 0 0 !important;
  font-size: 14px !important;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--deepest);
  color: #f5f7f8;
  padding: 64px max(28px, 7vw) 0;
}

.footer-top {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  font-size: 18px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.footer-top strong {
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a,
.legal a {
  color: inherit;
}

.socials {
  display: flex;
  gap: 28px;
}

.socials a {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: #f5f7f8;
  color: var(--deep);
  display: grid;
  place-items: center;
  text-decoration: none;
  font-weight: 800;
}

.legal {
  max-width: 1100px;
  margin: 100px auto 160px;
  font-size: 16px;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}

.legal p {
  margin: 0 0 20px;
}

.footer-rings {
  position: absolute;
  width: 1000px;
  height: 1000px;
  border: 3px solid var(--yellow);
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  bottom: -855px;
}

.footer-rings:before,
.footer-rings:after {
  content: "";
  position: absolute;
  border: 3px solid var(--yellow);
  border-radius: 50%;
  inset: 50px;
}

.footer-rings:after {
  inset: 160px;
}

.mobile-dock {
  display: none;
}

.menu-panel {
  position: fixed;
  z-index: 10;
  right: 0;
  top: 0;
  height: 100dvh;
  width: min(490px, 100%);
  overflow: auto;
  background: var(--deepest);
  color: #f5f7f8;
  padding: 70px 34px 48px;
  transform: translateX(105%);
  transition: transform .3s ease;
}

.menu-panel.is-open {
  transform: translateX(0);
}

.menu-brand img {
  width: min(300px, 80%);
  margin-bottom: 48px;
}

.menu-accordions details {
  border-bottom: 1px solid #ffffff20;
}

.menu-accordions summary {
  list-style: none;
  cursor: pointer;
  font-size: 22px;
  font-weight: 700;
  padding: 18px 0;
}

.menu-accordions summary:after {
  content: '⌄';
  float: right;
  color: var(--yellow);
  font-size: 26px;
}

.menu-accordions details a {
  display: block;
  text-decoration: none;
  padding: 9px 0 12px;
  font-size: 17px;
}

.menu-utility {
  display: grid;
  gap: 22px;
  margin-top: 42px;
}

.menu-utility a {
  text-decoration: none;
  font-size: 18px;
}

.close-menu {
  position: absolute;
  right: 22px;
  top: 14px;
  border: 0;
  background: none;
  color: #fff;
  font-size: 38px;
  cursor: pointer;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  background: #001e20aa;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}

.menu-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 760px) {
  .site-header {
    height: 108px;
    padding: 0 7%;
  }

  .brand img {
    width: 150px;
    max-height: 62px;
  }

  .desktop-nav {
    display: none;
  }

  .header-actions {
    gap: 20px;
  }

  .notification {
    width: 40px;
    height: 40px;
  }



  .badge{
    width: 25px;
    height: 25px;
    font-size: 12px;
  }

  .menu-trigger {
    font-size: 14px;
  }

  .menu-lines {
    font-size: 40px;
  }

  .hero {
    min-height: calc(100svh - 108px);
    background-position: center;
    background-image:
      linear-gradient(180deg, rgba(0, 44, 52, .6), rgba(0, 44, 52, .94)),
      url('https://res.cloudinary.com/dg3f5oyel/image/upload/v1790354963/suncoast_photo1_pwjoj0.png');
  }

  .hero-content {
    padding: 58px 8% 90px;
  }

  .hero h1 {
    font-size: clamp(36px, 8vw, 58px);
    margin: 0 0 28px;
  }

  .hero-copy {
    font-size: clamp(17px, 4.2vw, 23px);
    line-height: 1.55;
    text-align: left;
  }

  .pill-button {
    width: 100%;
    min-height: 74px;
    font-size: 20px;
    gap: 20px;
  }

  .section {
    padding: 66px 8%;
  }

  .section-heading h2 {
    font-size: clamp(34px, 8vw, 46px);
  }

  .mobile-break {
    display: block;
  }

  .section-heading p {
    font-size: 19px;
    line-height: 1.5;
    margin: 0 auto 44px;
    max-width: 420px;
  }

  .quick-links {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 40px;
  }

  .quick-links a {
    font-size: 14px;
  }

  .round-icon {
    width: 66px;
    height: 66px;
    font-size: 34px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .product-secondary {
    display: none;
  }

  .card-photo,
  .card-art {
    height: 270px;
  }

  .card-body {
    padding: 24px 24px 28px;
  }

  .card-body h3 {
    font-size: 26px;
  }

  .card-body p,
  .card-body strong {
    font-size: 18px;
  }

  .text-link {
    font-size: 17px;
  }

  .carousel-dots {
    gap: 22px;
    max-width: 360px;
    margin-top: 42px;
  }

  .carousel-dots button {
    width: 28px;
    height: 28px;
  }

  .becm {
    min-height: 490px;
    padding: 70px 20px;
  }

  .heart {
    font-size: 105px;
  }

  .becm-word {
    font-size: 78px;
    margin: 48px 0 24px;
  }

  .becm p {
    font-size: 22px;
  }

  .bank-copy {
    padding: 78px 8% 88px;
  }

  .bank-copy h2 {
    font-size: 50px;
  }

  .bank-copy p {
    font-size: 19px;
    line-height: 1.6;
  }

  .dark-pill {
    font-size: 19px;
    min-height: 70px;
    padding: 14px 22px;
    gap: 18px;
  }

  .community-copy {
    padding: 36px 8% 66px;
  }

  .community-copy h2 {
    font-size: 40px;
  }

  .community-copy p {
    font-size: 19px;
  }

  .business-intro {
    padding: 42px 9% 0;
    min-height: 415px;
  }

  .business-intro h2 {
    font-size: 37px;
  }

  .business-intro p {
    font-size: 18px;
  }

  .sun-arc {
    width: 330px;
    height: 190px;
    border-width: 20px;
    margin-top: 116px;
  }

  .atm-search {
    padding: 55px 7%;
  }

  .search-panel {
    padding: 52px 22px 38px;
  }

  .search-panel h2 {
    font-size: 42px;
  }

  .search-panel > p {
    font-size: 18px;
  }

  .site-footer {
    padding: 55px 7% 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 25px;
    font-size: 16px;
  }

  .socials {
    gap: 20px;
  }

  .legal {
    margin: 90px auto 150px;
    font-size: 15px;
    line-height: 1.52;
  }

  .mobile-dock {
    height: 100px;
    position: fixed;
    z-index: 5;
    bottom: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 1.55fr repeat(3, 1fr);
    background: var(--deepest);
    border-top: 4px solid var(--cyan);
    color: #f6f7f7;
  }

  .mobile-dock a {
    color: inherit;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    text-align: center;
  }

  .mobile-dock a > span {
    color: #00a9b0;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
  }

  .mobile-dock small {
    font-size: 13px;
    line-height: 1.25;
    font-weight: 600;
  }

  .mobile-dock .express {
    background: #00777b;
    border-radius: 0 70px 70px 0;
    flex-direction: row;
    gap: 12px;
    padding: 0 12px;
    color: white;
    justify-content: flex-start;
  }

  .express span {
    color: var(--yellow);
    font-size: 35px;
  }

  .express em {
    font-size: 15px;
    line-height: 1.3;
  }

  .express b {
    font-size: 22px;
    margin-left: auto;
  }

  .docks-login span {
    font-size: 31px;
  }

  .menu-panel {
    padding: 60px 30px 120px;
  }
}

@media (max-width: 380px) {
  .brand img {
    width: 150px;
    border-radius: 10px;
    margin :0%
  }

  .header-actions {
    display: flex;
  align-items: center;
  gap: 2px;
  width: 30%;
  height:fit-content;
  }

  .header-actions {
    gap: 10px;
  }

  
.notification {
  position: relative;
  background: #0099a0;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 30px;
}

.badge {
  position: absolute;
  right: -5px;
  top: -5px;
  background: var(--orange);
  border-radius: 50%;
  width: 25px;
  height: 25px;
  font-size: 10px;
  display: grid;
  place-items: center;
  border: 2px solid var(--deepest);
}


.bell {
  color: white;
  font-size: 22px;
  line-height: 1;
}


.menu-lines{
  font-size: 30px;
  line-height: .75;
  transform: scaleX(1.25);
  font-family: Arial;
}

  .menu-trigger {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  font-size: 10px;
  font-weight: 100;
}

  .quick-links {
    gap: 2px;
  }

  .quick-links a {
    font-size: 12px;
  }

  .round-icon {
    width: 58px;
    height: 58px;
  }

  .mobile-dock small {
    font-size: 11px;
  }

  .mobile-dock .express {
    gap: 7px;
    padding: 0 8px;
  }

  .express em {
    font-size: 13px;
  }

  .card-photo {
    height: 230px;
  }
}


.spinner {
  width: 18px;
  height: 18px;
  border: 3px solid #ffffff66;
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}