@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;700&display=swap");

:root {
  --rsf-dark: #07121d;
  --rsf-ink: #07121d;
  --rsf-muted: #566f87;
  --rsf-blue-white: #def5f9;
  --rsf-white: #ffffff;
  --rsf-gradient: linear-gradient(99deg, #4ae5d4 0%, #1097ff 100%);
  --rsf-max: 1280px;
  --rsf-font: "Space Grotesk", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--rsf-white);
  color: var(--rsf-ink);
  font-family: var(--rsf-font);
  text-rendering: geometricPrecision;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.rsf-gradient-text {
  background: var(--rsf-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.rsf-cta {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  min-height: 55px;
  padding: 9px 14px;
  border: 0;
  border-radius: 999px;
  background: var(--rsf-gradient);
  color: var(--rsf-white);
  cursor: pointer;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  text-transform: uppercase;
  white-space: nowrap;
}

.rsf-cta strong {
  font-weight: 700;
}

.rsf-cta__icon {
  position: relative;
  display: block;
  width: 37.912px;
  height: 37.912px;
  flex: 0 0 37.912px;
}

.rsf-cta__icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 26.808px;
  height: 26.808px;
  background: url("./assets/circle-arrow.svg") center / contain no-repeat;
  transform: translate(-50%, -50%) rotate(45deg);
}

.rsf-secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 51px;
  padding: 10px 29px;
  border-radius: 999px;
  background: rgba(222, 245, 249, 0.05);
  color: var(--rsf-blue-white);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
}

.rsf-section {
  position: relative;
  overflow: hidden;
}

.rsf-shell {
  width: min(var(--rsf-max), calc(100% - 48px));
  margin: 0 auto;
}

.rsf-eyebrow {
  margin: 0 0 14px;
  color: var(--rsf-muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.rsf-title {
  margin: 0;
  color: var(--rsf-dark);
  font-size: clamp(40px, 5.2vw, 72px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: uppercase;
}

.rsf-copy {
  margin: 0;
  color: var(--rsf-dark);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}

.rsf-card {
  border-radius: 24px;
  background: rgba(222, 245, 249, 0.08);
  border: 1px solid rgba(86, 111, 135, 0.18);
}

@media (max-width: 480px) {
  .rsf-shell {
    width: min(360px, calc(100% - 32px));
  }

  .rsf-cta, .rsf-secondary-cta {
    font-size: 16px;
  }

  .rsf-title {
    font-size: 34px;
    line-height: 1.08;
  }

  .rsf-copy {
    font-size: 15px;
  }
}
