:root {
  --ink: #050505;
  --muted: #6f747c;
  --line: #e6e6e6;
  --panel: #ffffff;
  --wash: #ffffff;
  --green: #128c7e;
  --green-dark: #0b6f63;
  --lime: #effbf1;
  --amber: #f7f7f7;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--wash);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1280px, calc(100% - 72px));
  margin: 0 auto;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.brand,
.header-actions,
.hero-actions,
.trust-row {
  display: flex;
  align-items: center;
}

.brand {
  gap: 9px;
  font-weight: 800;
}

.brand-mark {
  position: relative;
  display: inline-block;
  width: 31px;
  height: 28px;
  flex: 0 0 31px;
}

.brand-mark span {
  position: absolute;
  left: 0;
  display: block;
  width: 31px;
  height: 9px;
  border: 1px solid #050505;
  border-radius: 2px;
  background: #ffffff;
  transform: skewY(-18deg);
}

.brand-mark span:nth-child(1) {
  top: 0;
}

.brand-mark span:nth-child(2) {
  top: 9px;
  background: #222222;
}

.brand-mark span:nth-child(3) {
  top: 18px;
  background: #050505;
}

.brand-text {
  color: #111111;
  font-size: 1rem;
  line-height: 0.88;
  letter-spacing: 0;
}

.avatar {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: white;
  
  font-weight: 800;
}

.header-actions {
  flex-wrap: wrap;
  gap: 22px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.78fr);
  gap: 54px;
  align-items: center;
  width: 100%;
  padding-left: max(36px, calc((100% - 1280px) / 2));
  padding-right: max(36px, calc((100% - 1280px) / 2));
  min-height: calc(100vh - 84px);
  margin: 0 auto;
  padding-top: 58px;
  padding-bottom: 78px;
  background-image:linear-gradient(#f7f7f7 1px, transparent 1px), linear-gradient(90deg, #f7f7f7 1px, #bd191900 0px);
  background-size: 28px 28px;
  background-position: center top;
}

.hero-copy {
  max-width: 680px;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  max-width: 760px;
  font-size: clamp(2.35rem, 5.8vw, 4.55rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.13rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 800;
}

.button-primary {
  color: white;
  background: #050505;
  box-shadow: none;
}

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

.trust-row {
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-panel {
  position: relative;
}

.hero-panel::before {
  display: none;
}

.phone-frame {
  max-width: 420px;
  margin-left: auto;
  padding: 18px;
  border: 10px solid #17261f;
  border-radius: 34px;
  background: #f7f7f7;
  box-shadow: var(--shadow);
}

.phone-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 12px 18px;
  border-bottom: 1px solid var(--line);
}

.phone-header p,
.message p {
  margin-bottom: 0;
  color: var(--muted);
}

.phone-header p {
  font-size: 0.84rem;
}

.chat-list {
  display: grid;
  gap: 13px;
  padding: 18px 4px 4px;
}

.message {
  padding: 16px;
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 24px rgba(33, 66, 49, 0.08);
}

.message-accent {
  background: #f7f7f7;
}

.message-tag {
  display: inline-block;
  margin-bottom: 9px;
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.message h2 {
  margin-bottom: 6px;
  font-size: 1.02rem;
}

.section,
.job-proof-section,
.course-section,
.join-section {
  width: min(1280px, calc(100% - 72px));
  margin: 0 auto;
}

.section,
.job-proof-section,
.course-section {
  padding: 28px 0 78px;
}

.section-heading {
  max-width: 620px;
  margin-bottom: 28px;
}

.section h2,
.course-section h2 {
  margin-bottom: 0;
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  line-height: 1.15;
  letter-spacing: 0;
}

.join-section h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-copy {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  border-radius: 8px;
  color: #050505;
  background: var(--amber);
  font-weight: 800;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.job-proof-section {
  padding-top: 72px;
}

.job-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.job-proof-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.job-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.posted-time {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
}

.job-proof-card h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.job-proof-card p {
  margin-bottom: 24px;
  color: var(--muted);
}

.job-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.job-skills span {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: #fbfbfb;
  font-size: 0.86rem;
}

.job-list-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f7f7;
}

.job-list-cta p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.course-section {
  padding-top: 6px;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.course-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.course-tag {
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 6px 12px;
  border: 1px solid #ef4444;
  border-radius: 999px;
  color: #dc2626;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.course-tag-blue {
  border-color: #3861ff;
  color: #2450ff;
}

.course-tag-orange {
  border-color: #6d5dfc;
  color: #5145cd;
}

.course-tag-green {
  border-color: #168a45;
  color: #087b38;
}

.course-card h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.course-card p {
  margin-bottom: 26px;
  color: var(--muted);
}

.course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  margin-bottom: 22px;
}

.course-meta span {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: #fbfdfb;
  font-size: 0.86rem;
}

.course-card a {
  color: var(--green-dark);
  font-weight: 700;
}

.join-section {
  position: relative;
  display: grid;
  justify-items: center;
  align-items: center;
  gap: 22px;
  overflow: hidden;
  margin-bottom: 48px;
  padding: 70px 28px;
  border: 1px solid #edf0f6;
  border-radius: 8px;
  text-align: center;
  color: #050505;
  background:
    radial-gradient(circle at 26% 0%, rgba(88, 130, 255, 0.18), transparent 32%),
    radial-gradient(circle at 72% 12%, rgba(16, 185, 129, 0.13), transparent 30%),
    #fbf8ff;
}

.join-content {
  max-width: 620px;
}

.cta-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 16px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #3854d8;
  background: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.join-section h2 {
  max-width: 620px;
  margin: 0 auto 16px;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.join-content p:last-child {
  margin: 0 auto;
  color: var(--muted);
  font-size: 1rem;
}

.join-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1280px, calc(100% - 72px));
  margin: 72px auto 0;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: auto;
    padding-top: 38px;
  }

  .phone-frame {
    margin-left: 0;
  }

  .feature-grid,
  .job-proof-grid,
  .course-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .job-proof-card,
  .course-card {
    min-height: auto;
  }

  .job-list-cta {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    width: min(100% - 28px, 1280px);
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .hero,
  .section,
  .job-proof-section,
  .course-section,
  .join-section {
    width: min(100% - 28px, 1280px);
  }

  .hero {
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }

  h1 {
    font-size: clamp(2.15rem, 12vw, 3.35rem);
    line-height: 1.08;
  }

  .button {
    width: 100%;
  }

  .phone-frame {
    border-width: 7px;
    border-radius: 28px;
  }

  .join-section {
    padding: 42px 18px;
  }

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

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    width: min(100% - 28px, 1280px);
    margin-top: 42px;
  }
}

.brand img {
    width: 120px !important;
}
