:root {
  --text:#111;
  --muted:#6b7280;
  --card:#ffffff;
  --bg:#f6f7f8;
  --line:#e5e7eb;
  --radius:18px;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --shadow-soft: 0 6px 18px rgba(0,0,0,.06);
  --max: 1100px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.4;
}

/* ---------- NAV ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.04);
}

.topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -0.03em;
}

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

.nav a {
  text-decoration: none;
  color: #111;
  font-size: 14px;
  opacity: 0.85;
}

.nav a:hover {
  opacity: 1;
}

/* ---------- HERO ---------- */
.hero {
  padding: 64px 0 40px;
  background:
    radial-gradient(900px 520px at 70% 30%, rgba(255,236,179,.55), transparent 60%),
    radial-gradient(1100px 640px at 35% 40%, rgba(0,140,150,.55), transparent 60%),
    linear-gradient(180deg, rgba(0,80,95,.92), rgba(0,120,140,.75));
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px;
  text-align: center;
  color: #fff;
}

.hero h1 {
  font-size: 54px;
  font-weight: 800;
  letter-spacing: .04em;
  margin: 40px 0 10px;
}

.hero p {
  font-size: 13px;
  opacity: .9;
}

.hero-image-wrap {
  max-width: var(--max);
  margin: 36px auto 0;
  padding: 0 22px;
}

.hero-image {
  width: 100%;
  height: 260px;
  border-radius: 22px;
  border: 6px solid rgba(255,255,255,.7);
  box-shadow: var(--shadow);
  background: #ddd center / cover no-repeat;
  background-image: url("hero.jpg");
}

/* ---------- TOPIC CARD ---------- */
.topic {
  max-width: var(--max);
  margin: -36px auto 0;
  padding: 0 22px;
}

.topic-card {
  background: var(--card);
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 16px 18px;
  display: flex;
  gap: 14px;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: var(--shadow-soft);
}

.topic-icon {
  width: 66px;
  height: 66px;
  border-radius: 14px;
  background: #eef2ff center / cover no-repeat;
  background-image: url("topic-icon.svg");
}

.topic-title {
  font-weight: 700;
  margin: 0;
}

.topic-sub {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--muted);
}

/* ---------- GRID ---------- */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 54px 22px 0;
}

.tri-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 32px;
}

.mini-card {
  background: #f3f4f6;
  border-radius: 18px;
  padding: 22px 18px;
  text-align: center;
}

.mini-card h3 {
  margin: 0;
}

.mini-card p {
  font-size: 13px;
  color: var(--muted);
}

.mini-media {
  margin: 18px auto 0;
  width: 85%;
  height: 125px;
  border-radius: 16px;
  background: #d1d5db center / cover no-repeat;
  border: 6px solid rgba(255,255,255,.7);
}

.mini-media.who { background-image: url("who.jpg"); }
.mini-media.what { background-image: url("what.svg"); background-size: contain; }
.mini-media.where { background-image: url("where.jpg"); }

/* ---------- TEXT BLOCKS ---------- */
.block {
  padding: 62px 0 10px;
}

.h-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.h-accent {
  width: 4px;
  height: 44px;
  background: #e5e7eb;
  border-radius: 999px;
}

h2 {
  margin: 0;
  font-size: 44px;
}

.body {
  max-width: 860px;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.8;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .tri-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 42px;
  }
}

@media (max-width: 520px) {
  .brand {
    font-size: 34px;
  }
  h2 {
    font-size: 34px;
  }
}

:root{
  --text:#111;
  --muted:#6b7280;
  --line:#e5e7eb;
  --bg:#ffffff;
  --card:#ffffff;
  --radius:18px;
  --shadow-soft: 0 10px 28px rgba(0,0,0,.06);
  --max: 980px;

  --yes:#16a34a;
  --no:#ef4444;
  --head:#dbeafe; /* light blue header row like screenshot */
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.5;
}

/* top header */
.u-top{
  padding: 26px 16px 8px;
}

.u-top-inner{
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.u-back{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4b5563;
  text-decoration: none;
  font-size: 13px;
}

.u-back:hover{ color:#111; }

.u-back-arrow{
  font-size: 16px;
  line-height: 1;
}

.u-title-wrap{
  text-align: center;
}

.u-title{
  margin: 0;
  font-size: 44px;
  letter-spacing: -0.03em;
}

.u-subtitle{
  margin: 6px 0 0;
  font-size: 12px;
  color: var(--muted);
}

.u-top-spacer{ height: 1px; }

/* main */
.u-main{
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 16px 60px;
}

.u-section{
  padding: 26px 0 0;
}

.u-h2{
  margin: 18px 0 18px;
  font-size: 30px;
  letter-spacing: -0.02em;
}

.u-h3{
  margin: 0 0 10px;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.u-copy{
  margin-top: 18px;
  max-width: 820px;
}

.u-copy p{
  margin: 0 0 12px;
  color:#4b5563;
  font-size: 13px;
  line-height: 1.85;
}

/* competitive analysis table */
.u-table-wrap{
  width: 100%;
  overflow-x: auto;
  padding: 8px 2px;
}

.u-table{
  width: 100%;
  border-collapse: collapse;
  min-width: 840px;
  background: #fff;
}

.u-table thead th{
  background: var(--head);
  font-size: 11px;
  padding: 10px 10px;
  text-align: center;
  font-weight: 700;
  border: 1px solid rgba(0,0,0,.06);
}

.u-table tbody td{
  border: 1px solid rgba(0,0,0,.06);
  padding: 9px 10px;
  font-size: 12px;
}

.u-rowlabel{
  font-weight: 600;
  color:#111;
  width: 220px;
  white-space: normal;
}

.u-center{
  text-align:center;
  vertical-align: middle;
}

.u-mark{
  font-weight: 900;
  font-size: 14px;
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
}

.u-yes{ color: var(--yes); }
.u-no{ color: var(--no); }

/* interview cards */
.u-card-row{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 10px 0 18px;
  max-width: 700px;
}

.u-mini-card{
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  padding: 16px 16px 14px;
  box-shadow: var(--shadow-soft);
  background: #fff;
}

.u-mini-card h4{
  margin: 8px 0 8px;
  font-size: 14px;
}

.u-mini-card p{
  margin: 0;
  color:#4b5563;
  font-size: 12px;
  line-height: 1.7;
}

.u-card-icon{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #f3f4f6;
  border: 1px solid rgba(0,0,0,.06);
}

.u-icon{
  width: 18px;
  height: 18px;
  color:#111;
}

/* insights */
.u-insights{
  display: grid;
  gap: 18px;
  max-width: 840px;
}

.u-insight-title{
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: -0.01em;
}

.u-insight-body{
  margin: 0 0 10px;
  color:#4b5563;
  font-size: 12.5px;
  line-height: 1.85;
}

.u-quote{
  margin: 12px 0 12px;
  padding: 14px 16px;
  border-left: 3px solid rgba(0,0,0,.12);
  background: #fafafa;
  border-radius: 10px;
}

.u-quote p{
  margin: 0;
  font-weight: 800;
  color:#111;
  font-size: 14px;
  line-height: 1.55;
}

.u-insight-foot{
  margin: 0;
  color:#6b7280;
  font-size: 12.5px;
  line-height: 1.85;
}

/* responsive */
@media (max-width: 820px){
  .u-title{ font-size: 36px; }
  .u-h2{ font-size: 26px; }
  .u-card-row{ grid-template-columns: 1fr; }
}

/*team page*/
:root{
  --text:#111;
  --muted:#6b7280;
  --line:#e5e7eb;
  --max: 1100px;
  --shadow: 0 10px 28px rgba(0,0,0,.08);
  --shadow-soft: 0 8px 22px rgba(0,0,0,.06);
  --radius: 18px;
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:#fff;
  line-height:1.4;
}

/* top nav (matches your home style) */
.topbar{
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.04);
}

.topbar-inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
}

.brand{
  font-weight:800;
  font-size:42px;
  letter-spacing:-.03em;
  color:#111;
  text-decoration:none;
}

.nav{
  display:flex;
  gap: 28px;
  font-size: 14px;
}

.nav a{
  color:#111;
  text-decoration:none;
  opacity:.85;
  font-weight:500;
  padding: 8px 6px;
  border-radius: 10px;
}

.nav a:hover{ opacity:1; }

.nav a.is-active{
  opacity:1;
  background:#f3f4f6;
}

/* page layout */
.page{
  max-width: var(--max);
  margin: 0 auto;
  padding: 36px 22px 0;
}

.hero h1{
  margin: 18px 0 24px;
  font-size: 54px;
  letter-spacing: -0.04em;
}

/* team grid */
.team{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px 56px;
  padding: 10px 0 22px;
}

.member{
  display:flex;
  flex-direction:column;
  gap: 14px;
}

.photo{
  border-radius: 16px;
  overflow:hidden;
  background:#eee;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 1 / 1;   /* makes it square */
}

.photo img{
  width:100%;
  height: 100%;
  object-fit: cover;
  display:block;
}

.meta{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap: 18px;
  padding: 0 2px;
}

.name{
  margin:0;
  font-weight:700;
  font-size: 16px;
}

.detail{
  margin:0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.6;
  text-align:right;
  max-width: 320px;
}

.divider{
  border: none;
  height: 1px;
  background: rgba(0,0,0,.08);
  margin: 24px 0 0;
}

/* footer */
.footer{
  padding: 30px 0 60px;
}

.footer-inner{
  display:grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items:start;
}

.footer-title{
  margin: 0 0 8px;
  font-weight:800;
  font-size: 16px;
}

.footer-link{
  display:block;
  color: var(--muted);
  text-decoration:none;
  font-size: 12.5px;
  margin: 8px 0;
}

.footer-link:hover{
  color:#111;
}

.social{
  display:flex;
  gap: 10px;
  margin-top: 12px;
}

.social-btn{
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display:grid;
  place-items:center;
  border: 1px solid rgba(0,0,0,.08);
  color:#111;
  background:#fff;
  text-decoration:none;
}

.social-btn svg{
  width: 15px;
  height: 15px;
}

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

.col-title{
  margin: 0 0 10px;
  font-size: 12px;
  color:#111;
  font-weight: 700;
}
/* footer */
.foot{
  padding: 30px 0 60px;
}

.foot-muted{
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}
/* responsive */
@media (max-width: 980px){
  .brand{ font-size: 36px; }
  .hero h1{ font-size: 44px; }
  .team{ grid-template-columns: 1fr; gap: 30px; }
  .meta{ flex-direction: column; align-items:flex-start; }
  .detail{ text-align:left; max-width: none; }
  .footer-inner{ grid-template-columns: 1fr; }
}

@media (max-width: 520px){
  .nav{ gap: 14px; }
  .hero h1{ font-size: 36px; }
  .photo img{ height: 220px; }
}
.hero-image-wrap,
.hero-image,
.mini-media {
  display: none;
}

.topic-icon {
  width: 84px;
  height: 84px;
  border-radius: 20px;
  background: #dfe4ee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  flex-shrink: 0;
}

.mini-emoji {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 24px;
  background: #dfe4ee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}